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-13 14:52:33 +0300
committerArjen Hiemstra <ahiemstra@heimr.nl>2015-07-13 14:52:33 +0300
commit89b175bc5caa8a0a2b6c2337516263a6a45ed045 (patch)
tree31821703326e86bba464a27c8e2759e800014940 /plugins/USBPrinting/PrinterConnection.py
parent6b48072140998543cec210e5c96cdfcfcb0b73aa (diff)
parentfb7b7ca7b8817c94408fa0a66127aebdd791a6fe (diff)
Merge branch '15.06'
* 15.06: Do not cause "dictionary changed size during iteration" errors when changing view Adds an idle-state for the layerview slider Adds an idle-state for the safebutton Sets the platform activity on true when a model is loaded Sets the platform activity on true when a model is loaded Create functions that get & set platform activity Send M104 to set the temperature to 0 Do not store files that fail to load in recent files
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 5c0030959c..b26a7bf4f4 100644
--- a/plugins/USBPrinting/PrinterConnection.py
+++ b/plugins/USBPrinting/PrinterConnection.py
@@ -469,7 +469,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.