-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[actions] Use launch file args in the action client launchers
Related to #241
- Loading branch information
1 parent
dd58405
commit 75cb803
Showing
7 changed files
with
50 additions
and
27 deletions.
There are no files selected for viewing
12 changes: 8 additions & 4 deletions
12
...ng/mdr_actions/mdr_manipulation_actions/mdr_pickup_action/ros/launch/pickup_client.launch
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 |
---|---|---|
@@ -1,14 +1,18 @@ | ||
<?xml version="1.0"?> | ||
<launch> | ||
<arg name="action_name" default="pickup" /> | ||
<arg name="server_name" default="/pickup_server" /> | ||
<arg name="action_timeout" default="120" /> | ||
<arg name="grasping_pose_frame" default="base_link" /> | ||
<arg name="action_dispatch_topic" default="/kcl_rosplan/action_dispatch"/> | ||
<arg name="action_feedback_topic" default="/kcl_rosplan/action_feedback"/> | ||
|
||
<node pkg="mdr_pickup_action" type="pickup_client" name="pickup_client" output="screen"> | ||
<param name="action_name" type="str" value="pickup" /> | ||
<param name="server_name" type="str" value="/pickup_server" /> | ||
<param name="action_timeout" type="double" value="120" /> | ||
<param name="action_name" type="str" value="$(arg action_name)" /> | ||
<param name="server_name" type="str" value="$(arg server_name)" /> | ||
<param name="action_timeout" type="double" value="$(arg action_timeout)" /> | ||
<param name="grasping_pose_frame" type="str" value="$(arg grasping_pose_frame)" /> | ||
<remap from="action_dispatch_topic" to="$(arg action_dispatch_topic)" /> | ||
<remap from="action_feedback_topic" to="$(arg action_feedback_topic)" /> | ||
<param name="grasping_pose_frame" type="str" value="base_link" /> | ||
</node> | ||
</launch> |
12 changes: 8 additions & 4 deletions
12
...ning/mdr_actions/mdr_manipulation_actions/mdr_place_action/ros/launch/place_client.launch
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 |
---|---|---|
@@ -1,14 +1,18 @@ | ||
<?xml version="1.0"?> | ||
<launch> | ||
<arg name="action_name" default="place" /> | ||
<arg name="server_name" default="/place_server" /> | ||
<arg name="action_timeout" default="120" /> | ||
<arg name="placing_pose_frame" default="base_link" /> | ||
<arg name="action_dispatch_topic" default="/kcl_rosplan/action_dispatch"/> | ||
<arg name="action_feedback_topic" default="/kcl_rosplan/action_feedback"/> | ||
|
||
<node pkg="mdr_place_action" type="place_client" name="place_client" output="screen"> | ||
<param name="action_name" type="str" value="place" /> | ||
<param name="server_name" type="str" value="/place_server" /> | ||
<param name="action_timeout" type="double" value="120" /> | ||
<param name="action_name" type="str" value="$(arg action_name)" /> | ||
<param name="server_name" type="str" value="$(arg server_name)" /> | ||
<param name="action_timeout" type="double" value="$(arg action_timeout)" /> | ||
<param name="placing_pose_frame" type="str" value="$(arg placing_pose_frame)" /> | ||
<remap from="action_dispatch_topic" to="$(arg action_dispatch_topic)" /> | ||
<remap from="action_feedback_topic" to="$(arg action_feedback_topic)" /> | ||
<param name="placing_pose_frame" type="str" value="base_link" /> | ||
</node> | ||
</launch> |
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
9 changes: 6 additions & 3 deletions
9
...dr_actions/mdr_navigation_actions/mdr_move_base_action/ros/launch/move_base_client.launch
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
9 changes: 6 additions & 3 deletions
9
...ctions/mdr_perception_actions/mdr_find_object_action/ros/launch/find_object_client.launch
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
9 changes: 6 additions & 3 deletions
9
...g/mdr_actions/mdr_perception_actions/mdr_find_people/ros/launch/find_people_client.launch
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
14 changes: 8 additions & 6 deletions
14
.../mdr_perception_actions/mdr_perceive_plane_action/ros/launch/perceive_plane_client.launch
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