-
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.
revise tf broadcast to tf2_ros and add functions to pose_tools as a c…
…onsequence, added launch files
- Loading branch information
Andrew Lui
committed
May 19, 2024
1 parent
0a65e52
commit 726c279
Showing
7 changed files
with
649 additions
and
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,17 @@ | ||
<launch> | ||
<arg name="namespace" default="task_trees" doc="The namespace for the project" /> | ||
<arg name="use_gui" default="false" /> | ||
<arg name="use_rviz" default="true" /> | ||
<arg name="use_rviz" default="false" /> | ||
<arg name="default" default="true" /> | ||
<arg name="sim_robot" default="true" /> | ||
|
||
<group if="$(arg default)"> | ||
<node pkg="robotarchi" type="robot_server_agent.py" name="robot_server_agent" output="screen"> | ||
</node> | ||
</group> | ||
|
||
<group if="$(arg sim_robot)"> | ||
<include file="$(find ur10_scene_config)/launch/demo.launch"> | ||
<arg name="use_gui" default="$(arg use_gui)" /> | ||
<arg name="use_rviz" default="$(arg use_rviz)" /> | ||
</include> | ||
</group> | ||
|
||
<arg name="rvizconfig" default="$(find arm_commander)/launch/default.rviz" /> | ||
<node if="$(arg use_rviz)" name="rviz" pkg="rviz" type="rviz" args="-d $(arg rvizconfig)" required="true" /> | ||
</launch> |
Oops, something went wrong.