Advertisement
bhuvanchandradv

magni_bringup.launch

Apr 1st, 2019
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <launch>
  3. <arg name="robot_name" default="$(eval optenv('ROBOT', '') or optenv('HOSTNAME', ''))"/>
  4.  
  5. <!-- Load the parameters used by the following nodes -->
  6. <rosparam command="load" file="$(find sootballs_common)/param/robots/$(arg robot_name)/motors.yaml" />
  7.  
  8. <!-- Launch the roscontrol controllers needed -->
  9. <node name="controller_spawner" pkg="controller_manager" type="spawner" args="ubiquity_velocity_controller ubiquity_joint_publisher"/>
  10.  
  11. <!-- Launch the motor node with the topic remapped to standard names -->
  12. <node name="motor_node" pkg="ubiquity_motor" type="motor_node" respawn="true">
  13. <remap from="/ubiquity_velocity_controller/cmd_vel" to="/cmd_vel"/>
  14. <remap from="/ubiquity_velocity_controller/odom" to="/raw_odom"/>
  15. </node>
  16.  
  17. <include file="$(find sootballs_sensors_common)/launch/joystick/logicool.launch" />
  18. </launch>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement