Skip to content

Commit 9e77d18

Browse files
committed
Fix autocalib moss (#486)
1 parent 9dd4414 commit 9e77d18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lerobot/common/robot_devices/robots/feetech_calibration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def move_until_block(arm, motor_name, positive_direction=True, while_move_hook=N
6464
# print(f"{present_voltage=}")
6565
# print(f"{present_temperature=}")
6666

67-
if present_speed == 0 and present_current > 50:
67+
if present_speed == 0 and present_current > 40:
6868
count += 1
6969
if count > 100 or present_current > 300:
7070
return present_pos

0 commit comments

Comments
 (0)