-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add action for new gripper controller
Signed-off-by: Paul Gesel <[email protected]>
- Loading branch information
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Antipodal grippers refer to an end effector where two opposing fingers grasp an object from opposite sides. | ||
sensor_msgs/JointState command # The velocity and effort fields are optional and not used if empty. | ||
--- | ||
sensor_msgs/JointState state # The current gripper state. | ||
# position refers to the gap size (in meters). | ||
# Optional: velocity refers to the Cartesian velocity of the finger right finger. | ||
# effort refers to the current effort exerted (in Newtons) | ||
bool stalled # True iff the gripper is exerting max effort and not moving | ||
bool reached_goal # True iff the gripper position has reached the commanded setpoint | ||
--- | ||
sensor_msgs/JointState state # The current gripper state. | ||
# position refers to the gap size (in meters). | ||
# Optional: velocity refers to the Cartesian velocity of the finger right finger. | ||
# effort refers to the current effort exerted (in Newtons) | ||
bool stalled # True iff the gripper is exerting max effort and not moving | ||
bool reached_goal # True iff the gripper position has reached the commanded setpoint |