mirror of
https://github.com/westonrobot/scout_ros.git
synced 2026-01-12 11:20:02 +08:00
28 lines
592 B
XML
28 lines
592 B
XML
<!-- -->
|
|
<launch>
|
|
<arg
|
|
name="model" />
|
|
<arg
|
|
name="gui"
|
|
default="False" />
|
|
<param
|
|
name="robot_description"
|
|
textfile="$(find scout_robot)/urdf/scout.urdf" />
|
|
<param
|
|
name="use_gui"
|
|
value="$(arg gui)" />
|
|
<node
|
|
name="joint_state_publisher"
|
|
pkg="joint_state_publisher"
|
|
type="joint_state_publisher" />
|
|
<node
|
|
name="robot_state_publisher"
|
|
pkg="robot_state_publisher"
|
|
type="state_publisher" />
|
|
<node
|
|
name="rviz"
|
|
pkg="rviz"
|
|
type="rviz"
|
|
args="-d $(find scout_robot)/rviz/urdf.rviz" />
|
|
</launch>
|