wpr_simulation/launch/wpr1_manipulator.launch
2020-06-22 01:54:22 +08:00

18 lines
769 B
XML

<launch>
<!-- We resume the logic in empty_world.launch, changing only the name of the world to be launched -->
<include file="$(find gazebo_ros)/launch/empty_world.launch">
<arg name="world_name" value="$(find wpr_simulation)/worlds/simple.world"/>
<arg name="paused" value="false"/>
<arg name="use_sim_time" value="true"/>
<arg name="gui" value="true"/>
<arg name="recording" value="false"/>
<arg name="debug" value="false"/>
</include>
<!-- Spawn a robot into Gazebo -->
<node name="spawn_urdf" pkg="gazebo_ros" type="spawn_model" args="-file $(find wpr_simulation)/models/wpr1.model -urdf -model wpr1" />
<!-- load the controllers of WPR1 -->
<include file="$(find wpr_simulation)/launch/wpr1_controllers.launch"/>
</launch>