-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add nodes to adjust the volume of the speaking
- Loading branch information
1 parent
a648934
commit 1a85000
Showing
3 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
jsk_pr2_robot/jsk_pr2_startup/jsk_pr2_warning/pr2_speak_volume_lower.l
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,5 @@ | ||
#!/usr/bin/env roseus | ||
|
||
(ros::roseus "speak_volume_lower") | ||
(ros::set-dynamic-reconfigure-param "/audible_warning" "volume" :double 0.2) | ||
(exit) |
5 changes: 5 additions & 0 deletions
5
jsk_pr2_robot/jsk_pr2_startup/jsk_pr2_warning/pr2_speak_volume_reset.l
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,5 @@ | ||
#!/usr/bin/env roseus | ||
|
||
(ros::roseus "speak_volume_reset") | ||
(ros::set-dynamic-reconfigure-param "/audible_warning" "volume" :double 1.0) | ||
(exit) |
5 changes: 5 additions & 0 deletions
5
jsk_pr2_robot/jsk_pr2_startup/jsk_pr2_warning/pr2_speak_volume_zero.l
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,5 @@ | ||
#!/usr/bin/env roseus | ||
|
||
(ros::roseus "speak_volume_zero") | ||
(ros::set-dynamic-reconfigure-param "/audible_warning" "volume" :double 0.0) | ||
(exit) |