drive_square.launch 679 B

12345678910111213141516171819
  1. <!--
  2. * @Author: adam_zhuo,corvin_zhang
  3. * @Date: 2021-04-30 11:16:35
  4. * @Description: 启动走正方形节点
  5. * @History: 20210430:初始化文件-adam_zhuo
  6. * 20220810:在启动小车走正方形节点前,先将robot_bringup.launch启动;
  7. -->
  8. <launch>
  9. <!-- load param -->
  10. <arg name="cfg_file" default="$(find robot_demo)/cfg/drive_square.yaml" />
  11. <!-- launch robot_bringup.launch -->
  12. <include file="$(find robot_bringup)/launch/robot_bringup.launch" />
  13. <!-- run drive_square_node -->
  14. <node pkg="robot_demo" type="robot_demo_drive_square_node" name="drive_square_node" output="screen">
  15. <rosparam file="$(arg cfg_file)" command="load" />
  16. </node>
  17. </launch>