Page 1 of 1

Ending script to lower bed and move it forward

Posted: Mon Oct 17, 2016 1:28 pm
by steve220
Rev. E new user here. I'm looking for some code at the end of a print to lower the bed and move it forward.

Re: Ending script to lower bed and move it forward

Posted: Mon Oct 17, 2016 2:19 pm
by Jules
Single or Dual?

This is the one I use for the left nozzle of a dual...(if you have a single it is not necessary to specify the tool number.)
And you're wanting to move along the Y axis so you can add a Y200 (or whatever you need) into the G1 Z200 command to move it forward as well as down.

T0
M104 S0 ; turn off extruder temperature
M140 S0 ; turn off bed
G91 ; relative mode
G1 Z10 E-10 ; lower bed 10mm & retract 10 mm
G90 ; absolute mode
G1 X100 ; center X axis
G1 Z200 ; drop Z axis to just above spring
M84 ; stop idle hold
M106 S0 ; stop bed fan

Re: Ending script to lower bed and move it forward

Posted: Tue Oct 18, 2016 12:41 pm
by steve220
Single. Thanks so much!