diff --git a/plugins/USBPrinting/USBPrinterOutputDevice.py b/plugins/USBPrinting/USBPrinterOutputDevice.py index 3c724007da..db988b8b6b 100644 --- a/plugins/USBPrinting/USBPrinterOutputDevice.py +++ b/plugins/USBPrinting/USBPrinterOutputDevice.py @@ -112,6 +112,12 @@ class USBPrinterOutputDevice(PrinterOutputDevice): def _setHeadZ(self, z, speed): self._sendCommand("G0 Y%s F%s" % (z, speed)) + def _homeHead(self): + self._sendCommand("G28") + + def _homeBed(self): + self._sendCommand("G28 Z") + @pyqtSlot() def startPrint(self): self.writeStarted.emit(self)