Browse Source

Reduce err thres to prevent immediate goal success

pull/108/head
Chintan Desai 10 months ago
committed by GitHub
parent
commit
67646f60d4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      stretch_core/nodes/command_groups.py

+ 1
- 1
stretch_core/nodes/command_groups.py View File

@ -140,7 +140,7 @@ class WristYawCommandGroup(SimpleCommandGroup):
class GripperCommandGroup(SimpleCommandGroup):
def __init__(self, range_robotis=None, node=None):
self.gripper_conversion = GripperConversion()
SimpleCommandGroup.__init__(self, 'joint_gripper_finger_left', range_robotis, acceptable_joint_error=1.0, node=node)
SimpleCommandGroup.__init__(self, 'joint_gripper_finger_left', range_robotis, acceptable_joint_error=0.015, node=node)
self.gripper_joint_names = ['joint_gripper_finger_left', 'joint_gripper_finger_right', 'gripper_aperture']
self.update_joint_range(range_robotis)

Loading…
Cancel
Save