-
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 velocity to gripper command (#99)
- Loading branch information
Showing
2 changed files
with
19 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,18 @@ | ||
# Parallel grippers refer to an end effector where two opposing fingers grasp an object from opposite sides. | ||
sensor_msgs/JointState command | ||
# name: the name(s) of the joint this command is requesting | ||
# position: desired position of each gripper joint (radians or meters) | ||
# velocity: (optional, not used if empty) max velocity of the joint allowed while moving (radians or meters / second) | ||
# effort: (optional, not used if empty) max effort of the joint allowed while moving (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 if the gripper is exerting max effort and not moving | ||
bool reached_goal # True if the gripper position has reached the commanded setpoint | ||
--- | ||
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) |