Home only the head instead of homing both the head and the bed at the same time

This commit is contained in:
fieldOfView 2018-03-30 14:09:25 +02:00
parent 08d4200f92
commit 059761b781

View file

@ -58,9 +58,7 @@ class GenericOutputController(PrinterOutputController):
self._output_device.sendCommand("G90")
def homeHead(self, printer):
self._output_device.sendCommand("G28 X")
self._output_device.sendCommand("G28 Y")
self._output_device.sendCommand("G28 Z")
self._output_device.sendCommand("G28 XY")
def homeBed(self, printer):
self._output_device.sendCommand("G28 Z")