forked from LeoJr2015/python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
automationGUI.py
executable file
·71 lines (63 loc) · 2.57 KB
/
automationGUI.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
#!/usr/bin/env python
from Tkinter import *
import tkMessageBox
from os import getcwd
from automationTest import DomoticzGateway
class LightBoxes(LabelFrame):
def __init__(self,master,**kw):
LabelFrame.__init__(self,master,**kw)
self.master = master
#self.symbols = Frame(self)
Label(self,text="Active Lights").grid(row=0,column=0)
self.sb1 = Scrollbar(self, orient=VERTICAL)
self.symbollist = Listbox(self,yscrollcommand=self.sb1.set)
self.sb1.config(command=self.symbollist.yview)
self.sb1.grid(row=1,column=1,sticky=N+S,rowspan=2)
self.symbollist.grid(row=1,column=0,rowspan=2,padx=5,pady=5,sticky=W)
#self.symbollist.bind('<Button-1>', self.add)
self.addbutton = Button(self,text="On",command=self.lighton)
self.addbutton.grid(row=1,column=2,padx=5,pady=5)
self.removebutton = Button(self,text="Off",command=self.lightoff)
self.removebutton.grid(row=2,column=2)
def lighton(self,event=None):
seltext = self.symbollist.get(ACTIVE)
#print "Turn ", seltext, " on"
self.master.lightCommand(seltext,'On')
def lightoff(self):
seltext = self.symbollist.get(ACTIVE)
#print "Turn ", seltext, " off"
self.master.lightCommand(seltext,'Off')
#seltext = self.activelist.get(ACTIVE)
#self.symbollist.insert(END,seltext)
#self.activelist.delete(ACTIVE)
def addLight(self,Name):
self.symbollist.insert(END,Name)
def getactivelist(self):
return list(self.activelist.get(0,END))
def getinactivelist(self):
return list(self.symbollist.get(0,END))
class HomeAutomation(Frame):
def __init__(self,parent=None, **kw):
Frame.__init__(self,parent,**kw)
self.lights = LightBoxes(self,text="Lights",padx=5,pady=5)
self.lights.grid(row=4,column=0,columnspan=3,sticky=E+W)
ip = '192.168.1.76'
port = '8080'
self.d = DomoticzGateway(ip,port)
self.getLights()
def getLights(self):
lights = self.d.getLights()
for light in self.d.lights:
self.lights.addLight(light['Name'])
def lightCommand(self,light,cmd):
#print light, cmd
index = self.d.getLightIndex(light)
#print "Light: ",light, " Index:", index
self.d.commandLight(index,cmd)
def main():
root = Tk()
root.title("HomeAutomation")
HomeAutomation(root).grid()
root.mainloop()
if __name__ == '__main__':
main()