mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
Fixed typo in command for setting nozzle temp
CURA-1339
This commit is contained in:
parent
6909ed8765
commit
8c971d217d
1 changed files with 2 additions and 1 deletions
|
@ -101,7 +101,8 @@ class USBPrinterOutputDevice(PrinterOutputDevice):
|
|||
self._sendCommand("M140 S%s" % temperature)
|
||||
|
||||
def _setTargetHotendTemperature(self, index, temperature):
|
||||
self._sendCommand("M140 T%s S%s" % (index, temperature))
|
||||
Logger.log("d", "Setting hotend %s temperature to %s", index, temperature)
|
||||
self._sendCommand("M104 T%s S%s" % (index, temperature))
|
||||
|
||||
def _setHeadPosition(self, x, y , z, speed):
|
||||
self._sendCommand("G0 X%s Y%s Z%s F%s" % (x, y, z, speed))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue