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:
authorArjen Hiemstra <ahiemstra@heimr.nl>2015-07-10 17:02:01 +0300
committerArjen Hiemstra <ahiemstra@heimr.nl>2015-07-10 17:02:01 +0300
commit6859481fd48deb87a3fcb3d3bc77d8a9031f1aa0 (patch)
treeba8ba58f5e2d33c457173a84a935b340033e181e /plugins/USBPrinting/PrinterConnection.py
parent3e27c8b791f9da9fc877e773d3d69477d175cfa0 (diff)
Send M104 to set the temperature to 0
This makes it possible to continue communication after cancelling a print. Contributes to #82
Diffstat (limited to 'plugins/USBPrinting/PrinterConnection.py')
-rw-r--r--plugins/USBPrinting/PrinterConnection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/USBPrinting/PrinterConnection.py b/plugins/USBPrinting/PrinterConnection.py
index 7ef6c759ac..9d3c3334ef 100644
--- a/plugins/USBPrinting/PrinterConnection.py
+++ b/plugins/USBPrinting/PrinterConnection.py
@@ -468,7 +468,7 @@ class PrinterConnection(SignalEmitter):
# Turn of temperatures
self._sendCommand("M140 S0")
- self._sendCommand("M109 S0")
+ self._sendCommand("M104 S0")
self._is_printing = False
## Check if the process did not encounter an error yet.