forked from maelle-le-bon/Multiwii-raspberry-drone-server
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.py
More file actions
56 lines (45 loc) · 1.03 KB
/
Copy pathmain.py
File metadata and controls
56 lines (45 loc) · 1.03 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
# -*- coding: utf8 -*-
from __future__ import unicode_literals
import logging
import os.path
import uuid
import signal
import sys
import threading
import json
import encodings
import time
import serial
import RPi.GPIO as GPIO
import picamera
import multiwii
import server
class Main():
def start(self, board, camera):
self.hello = "hello"
test = "test"
self.board = board
self.camera = camera
self.webServer = server.server(80, self.board, self.camera)
self.webServer.start(True)
def stop(self):
self.webServer.stop()
self.board.stop()
if __name__ == "__main__":
global board
board = multiwii.drone('/dev/ttyUSB0')
camera = picamera.PiCamera()
camera.vflip = True
camera.hflip = True
start = Main()
MainThread = threading.Thread(target=start.start, args=(board, camera))
MainThread.start()
"""MainThread.join()"""
def signal_handler(signal, frame):
print('You pressed Ctrl+C!')
GPIO.cleanup()
start.stop()
sys.exit(0)
signal.signal(signal.SIGINT, signal_handler)
signal.pause()