Skip to content

Commit

Permalink
added e to G28
Browse files Browse the repository at this point in the history
  • Loading branch information
nick3621 committed Dec 11, 2024
1 parent 145bcb5 commit 8833aba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions klippy/extras/homing.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,11 +425,11 @@ def probing_move(self, mcu_probe, pos, speed):
def cmd_G28(self, gcmd):
# Move to origin
axes = []
for pos, axis in enumerate("XYZUV"):
for pos, axis in enumerate("XYZEUV"):
if gcmd.get(axis, None) is not None:
axes.append(pos)
if not axes:
axes = [0, 1, 2, 3, 4]
axes = [0, 1, 2, 3, 4, 5]
homing_state = Homing(self.printer)
homing_state.set_axes(axes)
kin = self.printer.lookup_object("toolhead").get_kinematics()
Expand Down

0 comments on commit 8833aba

Please sign in to comment.