-
Notifications
You must be signed in to change notification settings - Fork 4
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 #10 from HLP-R/update_param
change so that we can guarantee params are loaded at the start from o…
- Loading branch information
Showing
6 changed files
with
70 additions
and
62 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,10 @@ | ||
# Controls the speech node configuration. DO NOT CHANGE THE PARAMETER NAMES | ||
# The first commented value is the default per the node | ||
|
||
speech: | ||
publish_topic: 'hlpr_speech_commands' # default 'hlpr_speech_commands' | ||
verbose: true # default True | ||
command_type: 'StampedString' # default StampedString (string vs. stampedstring) | ||
rec_threshold: 300 # default 300 | ||
service_topic: 'get_last_speech_cmd' # default 'get_last_speech_cmd' | ||
|
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,17 @@ | ||
<?xml version="1.0"?> | ||
<launch> | ||
|
||
<!-- Arguments that need to be passed into this launch file --> | ||
<!-- This file is not intended to called on its own at any time --> | ||
<arg name="yaml_list" /> | ||
<arg name="config_file" /> | ||
|
||
<!-- Load parameters for speech --> | ||
<rosparam command="load" file="$(arg config_file)" /> | ||
|
||
<!-- Start the speech_listener node recording action server --> | ||
<node name="speech_listener" pkg="hlpr_speech_recognition" type="speech_listener" respawn="false" output="screen" > | ||
<rosparam param="yaml_list" subst_value="True"> [$(arg yaml_list)]</rosparam> | ||
</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
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
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
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