forked from OSLL/template-ros-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from JASS-2021/subscribe_to_fsm_state_topic_and…
…_control_case add fms subscriber and timer
- Loading branch information
Showing
2 changed files
with
102 additions
and
44 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
packages/dt-core/packages/apriltag/launch/apriltag_postprocessing_node.launch
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,16 @@ | ||
<launch> | ||
<arg name="pkg_name" value="apriltag"/> | ||
<arg name="node_name" default="apriltag_postprocessing_node"/> | ||
<arg name="veh" doc="Name of vehicle. ex: megaman"/> | ||
<arg name="config" default="baseline" doc="Specify a config."/> | ||
<arg name="param_file_name" default="default" doc="Specify a param file. ex:megaman."/> | ||
|
||
<group ns="$(arg veh)"> | ||
<node name="$(arg node_name)" pkg="$(arg pkg_name)" type="$(arg node_name).py" output="screen"> | ||
<remap from="apriltag_postprocessing_node/fsm_state" to="fsm_node/mode"/> | ||
<rosparam command="load" | ||
file="$(find apriltag)/config/$(arg node_name)/$(arg param_file_name).yaml"/> | ||
<param name="tags_file" value="$(find apriltag)/config/apriltagsDB.yaml" /> | ||
</node> | ||
</group> | ||
</launch> |
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