Browse Source

Add stubs to PrinterOutputController

fieldOfView 7 years ago
parent
commit
b68a30662a
1 changed files with 6 additions and 0 deletions
  1. 6 0
      cura/PrinterOutput/PrinterOutputController.py

+ 6 - 0
cura/PrinterOutput/PrinterOutputController.py

@@ -34,6 +34,12 @@ class PrinterOutputController:
     def preheatBed(self, printer: "PrinterOutputModel", temperature, duration):
         Logger.log("w", "Preheat bed not implemented in controller")
 
+    def cancelPreheatHotend(self, extruder: "ExtruderOutputModel"):
+        Logger.log("w", "Cancel preheat hotend not implemented in controller")
+
+    def preheatHotend(self, extruder: "ExtruderOutputModel", temperature, duration):
+        Logger.log("w", "Preheat hotend not implemented in controller")
+
     def setHeadPosition(self, printer: "PrinterOutputModel", x, y, z, speed):
         Logger.log("w", "Set head position not implemented in controller")