mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-25 07:39:25 +08:00
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
|
|
|
|
MYPY = False
|
|
if MYPY:
|
|
from cura.PrinterOutput.PrintJobOutputModel import PrintJobOutputModel
|
|
from cura.PrinterOutput.ExtruderOuputModel import ExtruderOuputModel
|
|
from cura.PrinterOutput.PrinterOutputModel import PrinterOutputModel
|
|
|
|
|
|
class PrinterOutputController:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def setTargetHotendTemperature(self, printer: "PrinterOutputModel", extruder: "ExtruderOuputModel", temperature: int):
|
|
# TODO: implement
|
|
pass
|
|
|
|
def setTargetBedTemperature(self, printer: "PrinterOutputModel", temperature: int):
|
|
pass
|
|
|
|
def setJobState(self, job: "PrintJobOutputModel", state: str):
|
|
pass
|
|
|
|
def cancelPreheatBed(self, printer: "PrinterOutputModel"):
|
|
pass
|
|
|
|
def preheatBed(self, printer: "PrinterOutputModel", temperature, duration):
|
|
pass
|
|
|
|
def setHeadPosition(self, printer: "PrinterOutputModel", x, y, z, speed):
|
|
pass
|
|
|
|
def moveHead(self, printer: "PrinterOutputModel", x, y, z, speed):
|
|
pass
|
|
|
|
def homeBed(self, printer):
|
|
pass
|
|
|
|
def homeHead(self, printer):
|
|
pass |