-
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
15 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,14 @@ | ||
# 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 of each joint (radians or meters) | ||
# optional: velocity of each joint (radians or meters / second) | ||
# optional: effort of each joint (Newtons or Newton-meters) | ||
--- | ||
sensor_msgs/JointState state # The current gripper state. | ||
# position of each joint (radians or meters) | ||
# optional: velocity of each joint (radians or meters / second) | ||
# optional: effort of each joint (Newtons or Newton-meters) | ||
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 |