mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Add custom command methods to output device and controller
This commit is contained in:
parent
8c7f8fa1fa
commit
80b589344f
3 changed files with 14 additions and 4 deletions
|
|
@ -90,6 +90,10 @@ class PrinterOutputModel(QObject):
|
|||
def homeBed(self):
|
||||
self._controller.homeBed(self)
|
||||
|
||||
@pyqtSlot(str)
|
||||
def sendCustomCommand(self, command):
|
||||
self._controller.sendCustomCommand(self, command)
|
||||
|
||||
@pyqtProperty("QVariantList", constant = True)
|
||||
def extruders(self):
|
||||
return self._extruders
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue