-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunch_file.launch
47 lines (35 loc) · 2.3 KB
/
launch_file.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
<launch>
<!-- Position of the launch file of explore lite (must be define before the execution) -->
<param name="path_exp" type="string" value="/home/simone/catkin_ws/src/Behavioral-Architecture-with-Real-Simulation-AutonomousNav/explore/launch/explore.launch" />
<!-- Home position (must be inside the map) -->
<param name="home_pos_x" type="int" value="-5" />
<param name="home_pos_y" type="int" value="8" />
<!-- Min and max delay for transition between PLAY and NORMAL states -->
<param name="min_transition_play_normal" type="int" value="1" />
<param name="max_transition_play_normal" type="int" value="10" />
<!-- Min and max delay for sending the play command -->
<param name="min_delay_command" type="double" value="1" />
<param name="max_delay_command" type="double" value="10" />
<!-- Frequency of the command loop (play follow by goTo+location) -->
<param name="freq_command" type="int" value="1" />
<!-- Min and max delay for transition between FIND and PLAY states (they represent seconds)-->
<param name="min_transition_find_play" type="int" value="60" />
<param name="max_transition_find_play" type="int" value="120" />
<!-- Min and max delay for transition between NORMAL and SLEEP states -->
<param name="min_transition_normal_sleep" type="int" value="1" />
<param name="max_transition_normal_sleep" type="int" value="10" />
<!-- Min and max delay for sleeping -->
<param name="min_sleep_delay" type="double" value="1" />
<param name="max_sleep_delay" type="double" value="10" />
<!-- Person position (must be inside the map) -->
<param name="person_pos_x" type="double" value="-5" />
<param name="person_pos_y" type="double" value="8" />
<!-- Map dimension -->
<param name="map_x" type="int" value="7" />
<param name="map_y" type="int" value="7" />
<!-- Launch the simulation and the nodes-->
<node name="command" pkg="sensoring" type="command.py" respawn="true"/>
<node name="image_detector" pkg="sensoring" type="ball_detector.py" respawn="true" output="screen"/>
<node name="oracle_server" pkg="knowledge" type="oracle.py" respawn="true" output="screen"/>
<node name="command_manager_state_machine" pkg="manager" type="command_manager.py" respawn="true" output="screen"/>
</launch>