Reset the robot to the initial state and opens the gripper.
(self)
| 169 | |
| 170 | @_block |
| 171 | def reset(self): |
| 172 | """Reset the robot to the initial state and opens the gripper.""" |
| 173 | self.open_gripper() |
| 174 | self.group.set_joint_value_target(self.reset_pose) |
| 175 | self._go(self.group) |
| 176 | self.group.stop() |
| 177 | self.group.clear_pose_targets() |
| 178 | self.reset_scene() |
| 179 | |
| 180 | @_block |
| 181 | def move_to_pose(self, position: List[float], orientation: List[float] = None): |
no test coverage detected