-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add AddTool Srv * Consolidate DetachTool/RemoveTool srvs * Remove no longer needed fields in AttachTool srv
- Loading branch information
Showing
5 changed files
with
41 additions
and
20 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
22 changes: 22 additions & 0 deletions
22
moveit_studio_msgs/moveit_studio_agent_msgs/srv/AddTool.srv
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,22 @@ | ||
# Service to add tools in the planning scene. | ||
# The tool is given as a URDF string, and is attached to a specific frame in the planning scene with a relative pose. | ||
# Once the tool is added, its collision shapes will be updated in the planning scene according to the tool joint values, | ||
# if those are published in /joint_states. | ||
|
||
# The name of the tool to add to the planning scene. | ||
# It must not be in the planning scene already, otherwise an error will be returned. | ||
string tool_name | ||
|
||
# The tool URDF. | ||
string tool_urdf | ||
|
||
# The pose at which the tool will be added. | ||
# Use a pose stamped so we can define the frame relative to which the tool will be added. | ||
geometry_msgs/PoseStamped tool_pose | ||
|
||
--- | ||
# If the operation was successful. | ||
bool success | ||
|
||
# If the operation was not successful, a message describing the error. | ||
string message |
9 changes: 2 additions & 7 deletions
9
moveit_studio_msgs/moveit_studio_agent_msgs/srv/AttachTool.srv
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
15 changes: 15 additions & 0 deletions
15
moveit_studio_msgs/moveit_studio_agent_msgs/srv/DetachOrRemoveTool.srv
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,15 @@ | ||
# Service to detach tools from the robot or remove them from the scene. | ||
|
||
# The name of the tool to detach or remove. | ||
# If using this srv with the 'detach_tool' service, the tool must have been | ||
# attached to the robot previously. | ||
# If using this srv with the 'remove_tool_from_scene', the tool must have been | ||
# added to the scene previously. | ||
string tool_name | ||
|
||
--- | ||
# If the operation was successful. | ||
bool success | ||
|
||
# If the operation was not successful, a message describing the error. | ||
string message |
12 changes: 0 additions & 12 deletions
12
moveit_studio_msgs/moveit_studio_agent_msgs/srv/DetachTool.srv
This file was deleted.
Oops, something went wrong.