From: James Walker Date: Sun, 11 Aug 2013 13:00:01 +0000 (+1000) Subject: Restart print close to original Z height, for special case where pausing below 15mm... X-Git-Tag: 13.10~100^2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=2328b2bc97bf7adda99ef6c79be206936c548f67;p=cura.git Restart print close to original Z height, for special case where pausing below 15mm, to avoid lowering head slowly onto print --- diff --git a/Cura/plugins/pauseAtZ.py b/Cura/plugins/pauseAtZ.py index 89b7ac2c..d0f733e8 100644 --- a/Cura/plugins/pauseAtZ.py +++ b/Cura/plugins/pauseAtZ.py @@ -61,6 +61,8 @@ with open(filename, "w") as f: f.write("G1 E%f F6000\n" % (retractAmount)) f.write("G1 E-%f F6000\n" % (retractAmount)) #Move the head back + if z < 15: + f.write("G1 Z%f F300\n" % (z+1)) f.write("G1 X%f Y%f F9000\n" % (x, y)) f.write("G1 E%f F6000\n" % (retractAmount)) f.write("G1 F9000\n")