Skip to content

Commit 23c11ad

Browse files
committed
Manually tweak controller & velocity limits
Addresses qcr/benchbot#44.
1 parent 71eabf3 commit 23c11ad

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

src/robot_callbacks.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,12 @@
1616

1717
_MOVE_TIMEOUT = 30
1818

19-
_MOVE_POSE_K_RHO = 1
20-
_MOVE_POSE_K_ALPHA = 4
21-
_MOVE_POSE_K_BETA = -1.5
22-
23-
_MOVE_LINEAR_LIMITS = [-0.6, 2.0]
24-
_MOVE_ANGULAR_LIMIT = 0.5
19+
_MOVE_POSE_K_RHO = 2
20+
_MOVE_POSE_K_ALPHA = 10
21+
_MOVE_POSE_K_BETA = -4
2522

23+
_MOVE_LINEAR_LIMITS = [-0.6, 1.5]
24+
_MOVE_ANGULAR_LIMIT = 1.0
2625

2726

2827
def __safe_dict_get(d, key, default):

0 commit comments

Comments
 (0)