123456789101112131415161718192021222324 |
- <launch>
- <param name="/use_sim_time" value="false" />
- <!-- Load the URDF/Xacro model of our robot -->
- <arg name="urdf_file" default="$(find xacro)/xacro.py '$(find rbx1_description)/urdf/pi_robot.xacro'" />
- <param name="robot_description" command="$(arg urdf_file)" />
-
- <node name="arbotix" pkg="arbotix_python" type="arbotix_driver" output="screen" clear_params="true">
- <rosparam file="$(find rbx1_bringup)/config/fake_pi_arbotix.yaml" command="load" />
- <param name="sim" value="true"/>
- </node>
- <node name="move_fake_pi_arm_start" pkg="rbx1_bringup" type="move_fake_pi_arm_start.py" output="screen" />
-
- <node name="robot_state_publisher" pkg="robot_state_publisher" type="state_publisher">
- <param name="publish_frequency" type="double" value="20.0" />
- </node>
- <!-- Run a static transform between /base_link and /base_footprint needed for SLAM -->
- <node pkg="tf" type="static_transform_publisher" name="base_footprint_broadcaster" args="0 0 0 0 0 0 /base_link /base_footprint 100" />
-
- </launch>
|