-
Notifications
You must be signed in to change notification settings - Fork 22
/
test.py
executable file
·119 lines (90 loc) · 2.84 KB
/
test.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#!/usr/bin/python
#
# Copyright 2014 Mikael Magnusson
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import lightify
import sys
import time
import logging
MODULE = "__main__"
def main(argv):
logging.basicConfig()
logger = logging.getLogger(MODULE)
logger.setLevel(logging.DEBUG)
#logger.addHandler(logging.StreamHandler())
liblogger = logging.getLogger('lightify')
#liblogger.addHandler(logging.StreamHandler())
liblogger.setLevel(logging.INFO)
logger.info("Logging %s", MODULE)
conn = lightify.Lightify(argv[1])
conn.update_all_light_status()
conn.update_group_list()
for (name, group) in conn.groups().iteritems():
logger.info("group: %s %s", name, group)
print "keys:%s" % conn.groups().keys()
desk = conn.groups()["Desk"]
desk.set_onoff(0)
desk.set_luminance(0, 0)
desk.set_onoff(1)
desk.set_luminance(25, 10)
sys.exit(0)
for (addr, light) in conn.lights().iteritems():
print "%x %d %d %d %s %s" % (addr, light.on(), light.lum(), light.temp(), light.rgb(), light)
sys.exit(0)
groups = conn.group_list()
for group in groups.iterkeys():
lights = conn.group_info(group)
print "Lights: %s" % lights
# for light in lights:
# conn.read_light_status(light)
#conn.read_all_light_status(1)
sys.exit(0)
#seq = seq + 1
#data = build_command(seq, 0x35, 2, "") #, struct.pack("<B", 0))
#print 'sending "%s"' % binascii.hexlify(data)
##, struct.pack(""))
#sock.sendall(data)
#recv(sock)
#sock.close()
#sys.exit(0)
seq = seq + 1
#data = onoff(seq, 2, 0)
#data = build_temp(seq, 2, 2700)
data = build_luminance(seq, 2, 85, 2)
#data = colour(seq, 2, 0, 0, 255, 1)
print 'sending "%s"' % binascii.hexlify(data)
sock.sendall(data)
recv(sock)
time.sleep(2)
seq = seq + 1
#data = onoff(seq, 2, 0)
#data = build_temp(seq, 2, 2700)
data = build_luminance(seq, 2, 65, 2)
#data = colour(seq, 2, 255, 0, 0, 10)
print 'sending "%s"' % binascii.hexlify(data)
sock.sendall(data)
recv(sock)
time.sleep(2)
seq = seq + 1
#data = onoff(seq, 2, 1)
#data = build_temp(seq, 2, 6500)
data = build_luminance(seq, 2, lum, 10)
#data = colour(seq, 2, 255, 255, 255, 1)
print 'sending "%s"' % binascii.hexlify(data)
sock.sendall(data)
recv(sock)
sock.close()
sys.exit(0)
main(sys.argv)