I have a QIDI X-ONE using CURA 2.5. Does anyone have end gcode to lower the bed at the end of the job and kill the temperatures and or fans? I’ve noticed that at the end of print jobs, extruder temps will stay around 50c and Bed temp stays around 40c until the machine is turned off.

Would be great if the bed was lowered, temperatures zeroed (so that fans will stop).

Look for an ending script in the slicer that came with the X-one. It is a version of Cura. Otherwise you may need to google for an ending script for Cura. I don’t use Cura but may be able to post some generic code later.

M104 S0 ; turn off extruder
M140 S0 ; turn off bed
G28 X0 ; home X axis
G28 Y0 ; home Y axis
M84 ; disable motors
M107 ; turn off fan

Z is more complicated.
You could add “G1 Z#” where “#” is the max z height of your printer, and that’s where it would go after every print.
Another option is to do relative movement which would look like:
G91 ; switch to relative
G1 Z20 ; raise 20mm

G90 ; switch back to absolute

If you use the relative movement you want to make sure your z-max is set correctly so that it doesn’t try to raise beyond the max after a tall print.

-Jesse

1 Like

Be careful, you want Z to move the bed down not up or you will smash your print into the extruder.

Yeah, I’m used to machines where the extruder moves for Z not the bed so adjust accordingly.

Thanks.

1 Like