Advertisement
Herowaree

launches

Mar 26th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.26 KB | None | 0 0
  1. <launch>
  2. <!-- Turtlebot -->
  3. <arg name="base" default="$(env TURTLEBOT_BASE)" doc="mobile base type [create, roomba]"/>
  4. <arg name="battery" default="$(env TURTLEBOT_BATTERY)" doc="kernel provided locatio for battery info, use /proc/acpi/battery/BAT0 in 2.6 or earlier kernels." />
  5. <arg name="stacks" default="$(env TURTLEBOT_STACKS)" doc="stack type displayed in visualisation/simulation [circles, hexagons]"/>
  6. <arg name="3d_sensor" default="$(env TURTLEBOT_3D_SENSOR)" doc="3d sensor types [kinect, asux_xtion_pro]"/>
  7. <arg name="simulation" default="$(env TURTLEBOT_SIMULATION)" doc="set flags to indicate this turtle is run in simulation mode."/>
  8. <arg name="serialport" default="$(env TURTLEBOT_SERIAL_PORT)" doc="used by create to configure the port it is connected on [/dev/ttyUSB0, /dev/ttyS0]"/>
  9. <arg name="robot_name" default="$(env TURTLEBOT_NAME)" doc="used as a unique identifier and occasionally to preconfigure root namespaces, gateway/zeroconf ids etc."/>
  10. <arg name="robot_type" default="$(env TURTLEBOT_TYPE)" doc="just in case you are considering a 'variant' and want to make use of this."/>
  11.  
  12. <param name="/use_sim_time" value="$(arg simulation)"/>
  13.  
  14. <include file="$(find turtlebot_bringup)/launch/includes/robot.launch.xml">
  15. <arg name="base" value="$(arg base)" />
  16. <arg name="stacks" value="$(arg stacks)" />
  17. <arg name="3d_sensor" value="$(arg 3d_sensor)" />
  18. </include>
  19.  
  20. <include file="$(find turtlebot_bringup)/launch/includes/mobile_base.launch.xml">
  21. <arg name="base" value="$(arg base)" />
  22. <arg name="serialport" value="$(arg serialport)" />
  23. </include>
  24.  
  25. <include file="$(find turtlebot_bringup)/launch/3dsensor.launch">
  26. <arg name="depth_registration" value="false" />
  27. <arg name="rgb_processing" value="false" />
  28. <arg name="ir_processing" value="false" />
  29. <arg name="depth_processing" value="false" />
  30. <arg name="depth_registered_processing" value="false" />
  31. <arg name="disparity_processing" value="false" />
  32. <arg name="disparity_registered_processing" value="false" />
  33. </include>
  34.  
  35. </launch>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement