12345678910111213141516171819202122232425 |
- <!--
- Velocity smoother
- -->
- <launch>
- <arg name="nodelet_manager"/>
- <arg name="navigation_topic"/>
- <node pkg="nodelet" type="nodelet" name="follower_velocity_smoother"
- args="load yocs_velocity_smoother/VelocitySmootherNodelet $(arg nodelet_manager)">
- <rosparam file="$(find carebot_follower)/param/smoother.yaml" command="load"/>
- <remap from="follower_velocity_smoother/smooth_cmd_vel" to="$(arg navigation_topic)"/>
- <!-- Robot velocity feedbacks; use the default base configuration -->
- <remap from="follower_velocity_smoother/odometry" to="/odom"/>
- <remap from="follower_velocity_smoother/robot_cmd_vel" to="/mobile_base/commands/velocity"/>
- <!-- connecting between follower/cmd_vel in mobile_base_nodelet and smoother/raw_cmd_vel in camera_nodelet -->
- <!-- <remap from="follower_velocity_smoother/raw_cmd_vel" to="/mobile_base_nodelet_camera_nodelet/raw_cmd_vel"/> -->
- <!-- Configure velocity smoother to allow more aggressive motion -->
- <param name="accel_lim_v" value="0.1"/>
- <param name="accel_lim_w" value="0.5"/>
- <param name="decel_factor" value="0.5"/>
- </node>
- </launch>
|