-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile
21 lines (19 loc) · 969 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# run experiments along with the correct videos
glass_wall:
ros2 launch audio_bringup live_analysis.launch.py
normal_wall:
ros2 launch audio_bringup live_analysis.launch.py
# shortcuts for long service calls
abort:
ros2 service call /change_state_manual audio_interfaces/srv/StateMachine "state: 7"
stop: abort
avoid:
ros2 service call /change_state_manual audio_interfaces/srv/StateMachine "state: 5"
stop_buzzer:
ros2 service call /send_command_manual audio_interfaces/srv/CrazyflieCommands "{command_name: buzzer_idx, command_value: 0.0}"
land:
ros2 service call /send_command_manual audio_interfaces/srv/CrazyflieCommands "{command_name: land_velocity, command_value: 0.2}"
move:
ros2 service call /send_command_manual audio_interfaces/srv/CrazyflieCommands "{command_name: move_forward, command_value: 0.03}"
hover:
ros2 service call /send_command_manual audio_interfaces/srv/CrazyflieCommands "{command_name: hover_height, command_value: 0.4}"