Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordaid <daid303@gmail.com>2014-09-03 11:13:17 +0400
committerdaid <daid303@gmail.com>2014-09-03 11:13:17 +0400
commita77d72430175f919d574ba26263941e316505a29 (patch)
tree44a21ad62887b5da75040345903f63d1509adb8c /plugins
parentf222c020a8bb83d4c040be51a640907094d746a0 (diff)
Disable E stepper power when using the pause at height feature.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/pauseAtZ.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/pauseAtZ.py b/plugins/pauseAtZ.py
index d0f733e8d6..53a450c6af 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.