-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
75 lines (67 loc) · 1.64 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import sys
import os
from Tkinter import *
import tkMessageBox
import requests
import json
from light import *
from register import *
from webServer import *
from camera import *
from alarm import *
from blinds import *
from gui import *
from error import *
import urllib2
web=webServer()
err = error()
#Check network connection
print 'err.testNetwork: '
print err.testNetwork()
# err.setNoNetworkError()
homepath = '/home/pi/'
print homepath
print os.path.exists(homepath + '/autopi.config')
if not os.path.exists(homepath + '/autopi.config'):
print 'no user info'
root = Tk()
root.wm_title('AutoPi Login')
app = registerGUI(root,web)
root.mainloop()
print 'Web'
print web
pi = raspberryPi(web)
light = light()
cam = camera()
alarm = alarm()
blind = blinds()
reg = register(web,pi,light,cam,alarm,blind)
else:
config = ConfigParser.ConfigParser()
config.read(homepath+'/autopi.config')
username = config.get('LoginInfo','username')
password = config.get('LoginInfo','password')
print 'working'
web.setUsername(username)
web.setPassword(password)
web.setAuth()
pi = raspberryPi(web)
if not pi.response:
err.setLoginError()
light = light()
cam = camera()
alarm = alarm()
blind = blinds()
#reg = register(web,pi,light,cam,alarm,blind)
pi.updatePiInfo(web,light,blind,alarm)
alarm.initPorts()
alarm.updateStatus(web,pi)
light.setPins()
#cam.startCameraServer()
blind.initStatus()
while True:
pi.updatePiInfo(web,light,blind,alarm)
light.updateStatus()
alarm.updateAlarm(web,pi)
blind.updateBlinds()
# cam.updateStatus(web)