From a77d72430175f919d574ba26263941e316505a29 Mon Sep 17 00:00:00 2001 From: daid Date: Wed, 3 Sep 2014 09:13:17 +0200 Subject: [PATCH] Disable E stepper power when using the pause at height feature. --- plugins/pauseAtZ.py | 2 ++ 1 file changed, 2 insertions(+) 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. -- 2.30.2