Z lift on pause press on LCD
If i am using printer as plotter and i hit pause it will draw a line (will not move head up before it moves in horizonat plane).It will draw same line on resume.There is option :
And if i add there command to lift the head it will lift it but after it moves to origin.What i should do to make it to do that before it moves?
Comments
You see we
- store position
- retract extruder
- move to park position
- Then execute your gcode from configuration
When continuing we
- run your end command
- go to memorized position
- continue printing
All assuming you are using sd print.
So it will move to the side and if you have a rise command it will raise after park position is reached which I assume is your 0,0. You can instruct also to rise z with park position.
If you need to rise first to prevent drawing on paper you can modify
moveToParkPosition
to rise first and then move to park position. Or set XY park position to IGNORE_COORDINATE which has value 999999 then you do not have the move from going to park position.
parkx and parky to 999999 and park raise z to 1. No changes needed in that case.
I talk about dev version (aka 1.0.4 at the moment)
It defines park position
and also has them in eeprom as
If you send compile error I might help getting it to compile or even fix it if it is caused by a bug.
Also we still have out of filament sensors. If you uploaded config files which you modified manually you will of course loose the manual changes. You always need to change it with config tool. Config tool uses the settings in the comment at the end to create new configs.