We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d35c55 commit 2be6ad1Copy full SHA for 2be6ad1
robot_skills/src/robot_skills/arm/arms.py
@@ -155,6 +155,12 @@ def handover_detector(self):
155
self._test_die(hasattr(self._arm, 'handover_detector'), "This arm does not have a handover_detector")
156
return self._arm.handover_detector
157
158
+ @property
159
+ def gripper_position_detector(self):
160
+ self._test_die(hasattr(self._arm, 'gripper_position_detector'),
161
+ "This arm does not have a gripper_position_detector")
162
+ return self._arm.gripper_position_detector
163
+
164
def has_gripper_type(self, gripper_type=None):
165
"""
166
Query whether the arm has the provided specific type of gripper.
0 commit comments