From: daid Date: Wed, 3 Sep 2014 07:13:17 +0000 (+0200) Subject: Disable E stepper power when using the pause at height feature. X-Git-Tag: 14.09~6 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=a77d72430175f919d574ba26263941e316505a29;p=cura.git Disable E stepper power when using the pause at height feature. --- diff --git a/plugins/pauseAtZ.py b/plugins/pauseAtZ.py index d0f733e8..53a450c6 100644 --- a/plugins/pauseAtZ.py +++ b/plugins/pauseAtZ.py @@ -55,6 +55,8 @@ with open(filename, "w") as f: f.write("G1 X%f Y%f F9000\n" % (parkX, parkY)) if z < 15: f.write("G1 Z15 F300\n") + #Disable the E steppers + f.write("M84 E0\n") #Wait till the user continues printing f.write("M0\n") #Push the filament back, and retract again, the properly primes the nozzle when changing filament.