forked from PR2/pr2_common
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
232 additions
and
217 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 |
---|---|---|
@@ -1,10 +1,16 @@ | ||
<launch> | ||
<arg name="kinect" default="true"/> | ||
<!-- send pr2 urdf to param server --> | ||
<group if="$(arg kinect)"> | ||
<param name="robot_description" command="$(find xacro)/xacro.py '$(find pr2_description)/robots/pr2.urdf.xacro'" /> | ||
<arg name="kinect1" default="false"/> | ||
<arg name="kinect2" default="false"/> | ||
<!-- send pr2 urdf to param server --> | ||
<group if="$(arg kinect2)"> | ||
<param name="robot_description" command="$(find xacro)/xacro.py '$(find pr2_description)/robots/pr2.urdf.xacro' kinect2:=true" /> | ||
</group> | ||
<group unless="$(arg kinect2)"> | ||
<group if="$(arg kinect1)"> | ||
<param name="robot_description" command="$(find xacro)/xacro.py '$(find pr2_description)/robots/pr2.urdf.xacro' kinect2:=false" /> | ||
</group> | ||
<group unless="$(arg kinect)"> | ||
<group unless="$(arg kinect1)"> | ||
<param name="robot_description" command="$(find xacro)/xacro.py '$(find pr2_description)/robots/pr2_no_kinect.urdf.xacro'" /> | ||
</group> | ||
</group> | ||
</launch> |
Oops, something went wrong.