bluetooth_drone/drone.py
Daniel Pollithy 12742fca9a d3.js
2017-08-30 17:52:40 +02:00

18 lines
271 B
Python

from multiprocessing import Process
import client
import drone_poller
def run():
p = Process(target=drone_poller.run)
p.start()
client.run()
if __name__ == '__main__':
try:
run()
except KeyboardInterrupt:
print('[x] quitting...')