mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06: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
|
@ -39,8 +39,11 @@ class PrinterOutputController:
|
|||
def moveHead(self, printer: "PrinterOutputModel", x, y, z, speed):
|
||||
Logger.log("w", "Move head not implemented in controller")
|
||||
|
||||
def homeBed(self, printer):
|
||||
def homeBed(self, printer: "PrinterOutputModel"):
|
||||
Logger.log("w", "Home bed not implemented in controller")
|
||||
|
||||
def homeHead(self, printer):
|
||||
Logger.log("w", "Home head not implemented in controller")
|
||||
def homeHead(self, printer: "PrinterOutputModel"):
|
||||
Logger.log("w", "Home head not implemented in controller")
|
||||
|
||||
def sendCustomCommand(self, printer: "PrinterOutputModel", command: str):
|
||||
Logger.log("w", "Custom command not implemented in controller")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue