Merge pull request #2481 from krisrok/master

refine abort sequence
This commit is contained in:
Jaime van Kessel 2017-09-27 16:18:13 +02:00 committed by GitHub
commit fa66f2c117

View file

@ -119,7 +119,8 @@ class USBPrinterOutputDevice(PrinterOutputDevice):
self._sendCommand("G0 Y%s F%s" % (z, speed))
def _homeHead(self):
self._sendCommand("G28")
self._sendCommand("G28 X")
self._sendCommand("G28 Y")
def _homeBed(self):
self._sendCommand("G28 Z")