forked from PiStuffing/Quadcopter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqc.py
24 lines (20 loc) · 1.34 KB
/
qc.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
#!/usr/bin/env python
###############################################################################################
###############################################################################################
## ##
## Hove's Raspberry Pi Python Quadcopter Flight Controller. Open Source @ GitHub ##
## PiStuffing/Quadcopter under GPL for non-commercial application. Any code derived from ##
## this should retain this copyright comment. ##
## ##
## Copyright 2014 - 2018 Andy Baker (Hove) - andy@pistuffing.co.uk ##
## ##
###############################################################################################
###############################################################################################
from Quadcopter import Quadcopter
import os
os.nice(-10)
if __name__ == '__main__':
#-------------------------------------------------------------------------------------
# Off we go!
#-------------------------------------------------------------------------------------
Quadcopter().go()