Add way to set head position

CL-541
This commit is contained in:
Jaime van Kessel 2017-11-17 16:48:36 +01:00
parent 3a8eef9768
commit f0a8db3d4e
2 changed files with 69 additions and 1 deletions

View file

@ -18,4 +18,16 @@ class PrinterOutputController:
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