I only looked at the end gcode as that's the critical part. You put the printer into relative mode but I believe that only affects the E axis (extruder). Instead use G92 which sets the current position. Like this:
G92 Z0 E0 <--- without actually moving any axis - now declare the Z and E axes to be at zero.
G1 E-1 F1000 <-- retract 1mm
G1 Z5 <-- move nozzle 5mm farther from print - note this may violate software end stops if your print used the full height
G1 E-10 <-- retract another 9mm
G1 X0 Y0 F6000 <-- move nozzle to corner at 100mm/sec
G28 <-- optional - home all axes - don't do this if it means moving the nozzle to touch the build plate
Recommended Posts
Carlbosson 0
I have now found the answer to the question I just asked. All the code is already there to home all at the end of the print but it dose not seem to doing what it is told?
G Code.pdf
Link to post
Share on other sites