Skip to content

Commit 070d441

Browse files
author
Felix Exner
committed
increase motion tolerance after stop
With the implementation on Humble the robot seems to take a bit more time to actually slow donw
1 parent ab87f8d commit 070d441

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ur_robot_driver/test/robot_driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ def js_cb(msg):
452452
self.assertTrue(
453453
all(
454454
[
455-
abs(a - b) < 0.01
455+
abs(a - b) < 0.2
456456
for a, b in zip(state_after_sleep.position, state_when_aborted.position)
457457
]
458458
)

0 commit comments

Comments
 (0)