Is there a way to make the home command from the dashboard home button (not Gcode G28) automatically home the Z axis then back it off 10mm? Usually, when I do that the heater is on so I must manually back it off so the filament can leak out.
I am using 2.01 - are you saying modify the Repetier code with that, set it to whatever I need and recompile. I've never done that with Repetier. Guess I need to look into that. I thought I had it working with 1 simply by adding something to a config or script, but I have long lost that trick if I did.
2.0.1 is host version. But commands are interpreted by firmware so you need to tweak firmware to do that automatically on G28. In Host all you can do is modify a script button to send G28 G1 Z10
and click that button instead. Or make it directly a preheat button, whatever you need.
Comments
// If you do z min homing, you might want to rise extruder a bit after homing so it does not heat
// touching your bed.
#define Z_UP_AFTER_HOME 0
G28
G1 Z10
and click that button instead. Or make it directly a preheat button, whatever you need.