Skip to content
Snippets Groups Projects
Commit 6532949c authored by Charles Javerliat's avatar Charles Javerliat
Browse files

Add ROS params to launch file

parent e88e47ef
No related branches found
No related tags found
1 merge request!1Add speed profile
......@@ -4,11 +4,17 @@
<arg name="baud" default="115200"/>
<node name="mccd" pkg="rosserial_python" type="serial_node.py" output="screen">
<rosparam param="left_motor_gains">[3.285, 64.40766, 0.0]</rosparam>
<rosparam param="right_motor_gains">[3.240, 66.48427, 0.0]</rosparam>
<param name="port" type="string" value="$(arg port)"/>
<param name="baud" type="int" value="$(arg baud)"/>
<param name="sampling_period" type="int">20</param> <!-- ms -->
<param name="speed_profile/linear_speed_acceleration_max" type="float">0.8</param> <!-- m.s^-2 -->
<param name="speed_profile/linear_speed_deceleration_max" type="float">0.8</param> <!-- m.s^-2 -->
<param name="speed_profile/angular_speed_acceleration_max" type="float">3.14</param> <!-- rad.s^-2 -->
<param name="speed_profile/angular_speed_deceleration_max" type="float">3.14</param> <!-- rad.s^-2 -->
<rosparam param="left_motor_gains">[3.285, 64.40766, 0.0]</rosparam>
<rosparam param="right_motor_gains">[3.240, 66.48427, 0.0]</rosparam>
</node>
</launch>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment