Moving to home when print is finished
-
I am on firmware 1.20. When a print is finished the tool just stops and don't move to home. Is there g-code that takes care of moving tool to home when a print is finished?
-
You should edit the ending code in your slicer, I use this
G91 ; relative moves G1 Z50 F5000 ; raise nozzle 50mm G90 ; absolute moves
-
In addition to raising the nozzle you can add G28 XY to home those axis.