forked from under0tech/autopilot_bee_sim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
executable file
·37 lines (29 loc) · 1 KB
/
main.py
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
import os
import threading
import messages
import router
import telemetry
import terminator
# INIT
bee_commands = router.command_queue
stop_command = threading.Event()
# BEE
os.system('clear')
messages.display(messages.main_autopilot_started)
executor_thread = threading.Thread(target=router.command_executor,
args=[stop_command])
telemetry_thread = threading.Thread(target=telemetry.telemetry_requestor,
args=[stop_command])
eliminator_thread = threading.Thread(target=terminator.elimination_process,
args=[stop_command])
executor_thread.start()
telemetry_thread.start()
eliminator_thread.start()
router.put_command(router.Command(0,'INIT',{}))
input('Press enter to stop process...\n')
messages.display(messages.main_stopping_threads)
stop_command.set()
executor_thread.join()
telemetry_thread.join()
eliminator_thread.join()
messages.display(messages.main_autopilot_finished)