Apologies, I could have explained what I'm attempting to do more clearly. I have a fleet of old Ultimaker 2+ printers and currently use the latest version of Cura.
When I start the print, the printer heats the nozzle in the bottom left corner and extrudes a small amount of filament into the air before printing the skirt. I wish to adjust it to extrude a larger amount of filament in the air, perhaps for an additional five seconds, so that it deposits a poop-shaped pile of filament in that corner.
Simplify3D does this, but I'm unsure how to replicate it in Cura.
Recommended Posts
Slashee_the_Cow 490
Are you dealing with multiple extruders (which each have their own startup gcode) or just setting the gcode for the printer?
FWIW: G0 F3000 Y50 is just telling it to move print head to move to either 50mm in the Y axis or move 50mm on the Y axis (depending on whether you're using absolute positioning) at 50mm/s, and the comment makes me think it's there to avoid a prime tower in case one is there.
G1 E15 F300 will just make it spew out 15mm of filament wherever it currently happens to be - which could be very bad if it's at (or near) bed level, it won't actually print any lines to get any crap into the system onto the bed, just pee out filament.
If you're just dealing with the printer gcode, it sounds like you want a nose wipe - where prints a line or two on the very edge of the bed before it starts. The code for that is something like this:
That's just for my printer - it may be different depending on your printer. (Things like whether origin is at centre - mine isn't - and whether you're using absolute positioning - I am)
Edited by Slashee_the_CowLink to post
Share on other sites