mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Added way to stop the heating of bed / hotend in checkup
CURA-1385
This commit is contained in:
parent
67938b5739
commit
a76f6375c7
2 changed files with 35 additions and 4 deletions
|
@ -160,6 +160,16 @@ class UMOCheckupMachineAction(MachineAction):
|
|||
except AttributeError as e: # Connection is probably not a USB connection. Something went pretty wrong if this happens.
|
||||
pass
|
||||
|
||||
@pyqtSlot()
|
||||
def cooldownHotend(self):
|
||||
if self._output_device is not None:
|
||||
self._output_device.setTargetHotendTemperature(0, 0)
|
||||
|
||||
@pyqtSlot()
|
||||
def cooldownBed(self):
|
||||
if self._output_device is not None:
|
||||
self._output_device.setTargetBedTemperature(0)
|
||||
|
||||
@pyqtSlot()
|
||||
def heatupHotend(self):
|
||||
if self._output_device is not None:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue