mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-22 13:49:39 +08:00
47 lines
1.9 KiB
Python
47 lines
1.9 KiB
Python
# Copyright (c) 2017 Ultimaker B.V.
|
|
# Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
from UM.Logger import Logger
|
|
|
|
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, output_device):
|
|
self.can_pause = True
|
|
self.can_abort = True
|
|
self.can_pre_heat_bed = True
|
|
self.can_pre_heat_hotends = True
|
|
self.can_control_manually = True
|
|
self._output_device = output_device
|
|
|
|
def setTargetHotendTemperature(self, printer: "PrinterOutputModel", extruder: "ExtruderOuputModel", temperature: int):
|
|
Logger.log("w", "Set target hotend temperature not implemented in controller")
|
|
|
|
def setTargetBedTemperature(self, printer: "PrinterOutputModel", temperature: int):
|
|
Logger.log("w", "Set target bed temperature not implemented in controller")
|
|
|
|
def setJobState(self, job: "PrintJobOutputModel", state: str):
|
|
Logger.log("w", "Set job state not implemented in controller")
|
|
|
|
def cancelPreheatBed(self, printer: "PrinterOutputModel"):
|
|
Logger.log("w", "Cancel preheat bed not implemented in controller")
|
|
|
|
def preheatBed(self, printer: "PrinterOutputModel", temperature, duration):
|
|
Logger.log("w", "Preheat bed not implemented in controller")
|
|
|
|
def setHeadPosition(self, printer: "PrinterOutputModel", x, y, z, speed):
|
|
Logger.log("w", "Set head position not implemented in controller")
|
|
|
|
def moveHead(self, printer: "PrinterOutputModel", x, y, z, speed):
|
|
Logger.log("w", "Move head not implemented in controller")
|
|
|
|
def homeBed(self, printer):
|
|
Logger.log("w", "Home bed not implemented in controller")
|
|
|
|
def homeHead(self, printer):
|
|
Logger.log("w", "Home head not implemented in controller") |