Issues at the end of printing!
-
Probably it is not wiping out.... it just stays on top of my print distroying it! Dont know what to do about it!
About the retracction, ok, i will put 50mm instead of 2, but the issue is that in the end, it retracts all the way -
@Hélder-Rocha
so define the coordinates in x and y where you want the printhead to move and put it in the end code. -
all right... i´ll do a try
-
In Cura find the setting for relative extrusion. Usually if the end of print retraction is removing all of the filament it's because it's set to absolute extrusion mode and is trying to move the extruder position back to what it was at the very start of the print.
Alternatively, just add an
M83
right before your retraction commands in the end gcode to switch it to relative extruder moves for just that part. -
Hi Phaedrux, so it should be like this?
;TIME_ELAPSED:4699.674645
G1 F2700 E3279.06216
M140 S0
M107
G91 ;Relative positioning
M83
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 positionning
G1 X0 Y300 ;Present print
M106 S0 ;Turn-off fan
M104 S0 ;Turn-off hotend
M140 S0 ;Turn-off bed
M84 X Y E ;Disable all steppers but Z
M82 ;absolute extrusion mode
M104 S0
;End of Gcode -
Yes that should do it.
-
lets try it... tks a lot
-
I have the "M82" in the end of the G-code. Does it di anything there or can i delete it?
-
Its the only place i find absolute mode for the extruder at the G-code!
-
I suspect that if you look at a sliced gcode from cura you'd find an M82 at the beginning as well.
You can remove that M82 from the end gcode.
In Cura the setting for relative extrusion is in the Special moves area. Maybe hidden by default.
-
Yes, i read about that in this forum but i couldnt find that kind of hidden code. I used the m83 and it worked fine. Tks a lot Phaedrux