-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrandom_sense.launch
49 lines (39 loc) · 1.56 KB
/
random_sense.launch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<launch>
<!-- Run the architecture's component and test it based on random-based stimulus. -->
<rosparam param="state/initial_pose"> [ 0.0, 0.0] </rosparam>
<rosparam param="config/user_pose"> [ 5.0, 5.0] </rosparam>
<rosparam param="config/environment_size"> [10.0, 10.0] </rosparam>
<rosparam param="config/speech_commands"> ["Hello", "Bye"] </rosparam>
<rosparam param="test/random_plan_points"> [2, 8] </rosparam>
<rosparam param="test/random_plan_time"> [0.2, 0.8] </rosparam>
<rosparam param="test/random_motion_time"> [0.1, 1.0] </rosparam>
<rosparam param="test/random_sense/active"> True </rosparam>
<rosparam param="test/random_sense/gesture_time"> [2.0, 10.0] </rosparam>
<rosparam param="test/random_sense/speech_time"> [2.0, 30.0] </rosparam>
<rosparam param="test/random_sense/battery_time"> [15.0, 40.0] </rosparam>
<node pkg = "arch_skeleton"
type = "gesture.py"
name = "gesture"
output = "screen"
> </node>
<node pkg = "arch_skeleton"
type = "speech.py"
name = "speech"
output = "screen"
> </node>
<node pkg = "arch_skeleton"
type = "robot_states.py"
name = "robot_states"
output = "screen"
> </node>
<node pkg = "arch_skeleton"
type = "planner.py"
name = "planner"
output = "screen"
> </node>
<node pkg = "arch_skeleton"
type = "controller.py"
name = "controller"
output = "screen"
> </node>
</launch>