Skip to content

Commit

Permalink
Merge pull request #241 from stereotech/STEAPP-889
Browse files Browse the repository at this point in the history
STEAPP-889: fixed a bug, the 3d module did not move to the Z0 coordinates during the calibration of bed_screw
  • Loading branch information
frylock34 authored Jan 29, 2024
2 parents 870d905 + 1a961e0 commit cccf65e
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 cccf65e

Please sign in to comment.