12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <launch>
-
- <include file="$(find robot_description)/launch/robot_description.launch" />
-
- <include file="$(find ros_arduino_python)/launch/arduino.launch" />
-
- <include file="$(find serial_imu_hat_6dof)/launch/serial_imu_hat.launch" />
-
- <include file="$(find rasp_camera)/launch/rasp_camera.launch" />
-
- <node pkg="robot_pose_ekf" type="robot_pose_ekf" name="robot_pose_ekf">
- <param name="output_frame" value="odom_combined"/>
- <param name="freq" value="10.0"/>
- <param name="sensor_timeout" value="1.2"/>
- <param name="odom_used" value="true"/>
- <param name="imu_used" value="true"/>
- <param name="vo_used" value="false"/>
- <param name="debug" value="false"/>
- <param name="self_diagnose" value="false"/>
- </node>
-
- <node pkg="robot_bringup" type="odom_ekf.py" name="odom_ekf" output="screen">
- <remap from="input" to="/robot_pose_ekf/odom_combined" />
- <remap from="output" to="/odom_ekf" />
- </node>
- </launch>
|