-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP #10 Created test servo launch file
- Loading branch information
1 parent
1ad2814
commit a502fb5
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<launch> | ||
|
||
<!-- Parameters to define Aruco Board length & separation values --> | ||
<param name="board_x_markers" type="int" value="5"/> | ||
<param name="board_y_markers" type="int" value="7"/> | ||
<param name="board_marker_length" type="double" value=".029"/> | ||
<param name="board_marker_separation" type="double" value=".006"/> | ||
|
||
<!-- parameters for image_publisher node --> | ||
<param name="device_id" value="0"/> | ||
<param name="calibration_file" value="camera_a.yaml"/> | ||
<param name="publish_rate" value="20"/> | ||
<param name="image_width" value="640"/> | ||
<param name="image_height" value="480"/> | ||
|
||
<!-- Run all the nodes required for the ekf test --> | ||
<node name="image_publisher" pkg="robot_sensors" type="image_publisher.py"/> | ||
<node name="aruco" pkg="robot_slam" type="aruco_localization.py"/> | ||
|
||
<!-- Launch the rqt_console to view the log info printed at the end of the test --> | ||
<node name="rqt_console" pkg="rqt_console" type="rqt_console"/> | ||
|
||
</launch> |