print settings
-
The End gcode, I have in there.
G1 Z10 :lift nozzle
G28 : home
M104 S0
M84
the problem I have with this it is ignoring the lift nozzle, it is pushing the nozzle into the finish print, what am I doing wrong.
-
G1 Z10
tells the printer to move to 10 mm above the bed. If your print is more than 10 mm tall, the nozzle will move down and crash into the print.You want the nozzle to move 10 mm higher than wherever it is at when the print finishes. In order to do this, you need to switch to relative mode using
G91
, then switch back to absolute mode usingG90
.G91 G1 Z10 :lift nozzle G90 G28 : home M104 S0 M84
You can read more about the different G-Code commands on the RepRap Wiki.
-
Thank , you very much for that, and the wiki link.