Skip to content

Commit

Permalink
STEAPP-889: fixed a bug, the 3d module did not move to the Z0 coordin…
Browse files Browse the repository at this point in the history
…ates during the calibration of bed_screw
  • Loading branch information
SokolovJek committed Jan 29, 2024
1 parent 823ef90 commit 1a961e0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion klippy/extras/bed_screws.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ def reset(self):
self.accepted_screws = 0
def move(self, coord, speed):
try:
self.printer.lookup_object('toolhead').manual_move(coord, speed)
# self.printer.lookup_object('toolhead').manual_move(coord, speed)
self.printer.lookup_object('gcode_move').manual_move(coord, speed)
except self.printer.command_error as e:
self.unregister_commands()
self.reset()
Expand Down

0 comments on commit 1a961e0

Please sign in to comment.