interactive_markers.launch 945 B

123456789101112131415
  1. <launch>
  2. <!-- turtlebot_teleop_key already has its own built in velocity smoother -->
  3. <node pkg="turtlebot_interactive_markers" type="turtlebot_marker_server" name="turtlebot_marker_server">
  4. <!-- remap from="cmd_vel" to="interactive_marker_velocity_smoother/raw_cmd_vel"/ -->
  5. </node>
  6. <!-- velocity smoother for the interactive marker server output -->
  7. <node pkg="nodelet" type="nodelet" name="interactive_marker_velocity_smoother"
  8. args="load yocs_velocity_smoother/VelocitySmootherNodelet /mobile_base_nodelet_manager">
  9. <rosparam file="$(find turtlebot_bringup)/param/defaults/smoother.yaml" command="load"/>
  10. <remap from="interactive_marker_velocity_smoother/odometry" to="/odom"/>
  11. <remap from="interactive_marker_velocity_smoother/robot_cmd_vel" to="/mobile_base/commands/velocity"/>
  12. <remap from="interactive_marker_velocity_smoother/smooth_cmd_vel" to="/cmd_vel_mux/input/teleop"/>
  13. </node>
  14. </launch>