From 2328b2bc97bf7adda99ef6c79be206936c548f67 Mon Sep 17 00:00:00 2001 From: James Walker Date: Sun, 11 Aug 2013 23:00:01 +1000 Subject: [PATCH] Restart print close to original Z height, for special case where pausing below 15mm, to avoid lowering head slowly onto print --- Cura/plugins/pauseAtZ.py | 2 ++ 1 file changed, 2 insertions(+) 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") -- 2.30.2