End Gcod
-
I am using Cura and then web control to slice with my duet3D 2 printer. Use to be a Crane Quad but converted to a single head bowden tube printer. Problem is everytime I make a model. At the end of the print it completely removes the filament from the printer. Backs it all the way out. Thinking maybe a gcode command in the end gecode of Cura. How can I prvent this retraction when finished. 20mm maybe but all the way out. No way! Here is my end Gcode settings.
G91 ;Relative positioning
G1 E-2 F2700 ;Retract a bit
G1 E-2 Z0.2 F2400 ;Retract and raise Z
G1 X5 Y5 F3000 ;Wipe out
G1 Z10 ;Raise Z more
G90 ;Absolute positioningG1 X0 Y{machine_depth} ;Present print
M106 S0 ;Turn-off fan
M104 S0 ;Turn-off hotend
M140 S0 ;Turn-off bedM84 X Y E ;Disable all steppers but Z
Kinda new to this stuff.
-
@magicwood
G91 puts your XYZ axes in relative mode, but leaves your extruder in absolute mode
Use M83 to put the extruder in relative mode.
Or even better, set your slicer to use relative extrusion and ensure you have M83 in your start GCode and make sure the slicer doesn't shove an M82 in there.