gazebo.launch 563 B

1234567891011121314151617181920
  1. <launch>
  2. <include
  3. file="$(find gazebo_ros)/launch/empty_world.launch" />
  4. <node
  5. name="tf_footprint_base"
  6. pkg="tf"
  7. type="static_transform_publisher"
  8. args="0 0 0 0 0 0 base_link base_footprint 40" />
  9. <node
  10. name="spawn_model"
  11. pkg="gazebo_ros"
  12. type="spawn_model"
  13. args="-file $(find carebot_description)/urdf/carebot.urdf -urdf -model carebot"
  14. output="screen" />
  15. <node
  16. name="fake_joint_calibration"
  17. pkg="rostopic"
  18. type="rostopic"
  19. args="pub /calibrated std_msgs/Bool true" />
  20. </launch>