bluetooth_drone/drone.py
Daniel Pollithy 50c32fea27 d3.js
2017-08-30 17:49:54 +02:00

14 lines
194 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__':
run()