forked from gjbadros/pyvantage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
executable file
·186 lines (161 loc) · 6.48 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
#!/usr/local/bin/python3
# Copyright (C) 2019, Greg J. Badros <[email protected]>
# See LICENSE. Use at your own risk!
#
# You can break your Vantage system or components connected
# to your vantage system by using this code.
#
# TODO: handle name mappings via configuration instead of code
import argparse
import logging
import time
import traceback
from pyvantage import Vantage
_LOGGER = logging.getLogger(__name__)
logging.basicConfig(level=logging.DEBUG)
def parse_args():
parser = argparse.ArgumentParser("pyvantage")
parser.add_argument('--host', action='store', dest='host',
help="Host to connect to in")
parser.add_argument('--sleep-for', action='store', type=int, dest='sleep_for',
help="Sleep and monitor events for some number of seconds before exiting")
parser.add_argument('--use-cache', action='store_true', dest='use_cache',
help="Use cache instead of refetching config from host")
parser.add_argument('--parse-file', action='store', dest='dc_filename',
help="Just parse the file instead of connecting to host")
parser.add_argument('--run-tests', action='store_true', dest='run_tests',
help="Run various tests to demonstrate some functonality")
parser.add_argument('--run-new-tests', action='store_true', dest='run_new_tests',
help="Run various tests to demonstrate some functonality")
parser.add_argument('--get-levels-test', action='store_true', dest='get_levels_test',
help="Run various tests to demonstrate some functonality")
parser.add_argument('--user', action='store', dest='user',
help='Username for logging in')
parser.add_argument('--password', action='store', dest='password',
help='Password for that user')
parser.add_argument('--dump-outputs', action='store_true', dest='dump_outputs',
help='Display all outputs after parsing')
parser.add_argument('--dump-buttons', action='store_true', dest='dump_buttons',
help='Display all buttons after parsing')
parser.add_argument('--num-connections', action='store', dest='num_connections',
help='Number of command processing connections to use')
results = parser.parse_args()
return results
def various_tests(v):
"""TODO: rewrite this to do something useful."""
ll = v._vid_to_load[3496]
ll.level = 50
print("ll = ", ll)
print(ll.support_color_temp)
print(ll.support_color)
ll = v._vid_to_load[3388]
print("ll = ", ll)
print(ll.support_color_temp)
print(ll.support_color)
ll = v._vid_to_load[3474]
print("ll = ", ll)
print(ll.support_color_temp)
print(ll.support_color)
v.set_variable_vid(2722, "foo from pyvantage")
v.set_variable_vid(2721, 7)
v.set_variable_vid(2721, "fasdfaosd")
v.set_variable_vid(2720, "fasdfaosd")
print(v.outputs)
sh = v._vid_to_shade[3036]
print("shade = ", sh)
ls = v._vid_to_sensor[3371] # light sensor
ls.update()
los = v._vid_to_sensor[429] # power sensor
los.update()
time.sleep(2)
print("ls = " + str(ls.value))
print("los = " + str(los.value))
ll = v._vid_to_load[4727]
print("ll = " + str(ll))
ll.level = 100
ll.rgb = [100,20,20]
ulg = v._vid_to_load[4727] # mbr uplight group
ulg.level = 100
ulg.hs = [0,100]
print("desk light")
dwl = v._vid_to_load[3497]
dwl.level = 0
time.sleep(6)
dwl.hs = [355, 100]
dwl.level = 100
time.sleep(6)
dwl.level = 0
dwl.hs = [180, 100]
print("changed color while off")
time.sleep(2)
dwl.level = 100
time.sleep(6)
print("desk light rgb")
dwl = v._vid_to_load[3497]
dwl.level = 0
time.sleep(6)
dwl.rgb = [255,0,0]
dwl.level = 100
time.sleep(6)
dwl.level = 0
dwl.rgb = [0,0,255]
print("changed color while off")
time.sleep(2)
dwl.level = 100
def run_new_tests(v):
while True:
ll = v._vid_to_load[3467]
ll.level = 90-ll.level
time.sleep(3)
def main():
"""Connect to a vantage server, parse config, and monitor events."""
name_mappings = {}
name_mappings['main house'] = 'MH'
name_mappings['pool house'] = 'PH'
name_mappings['guest house'] = 'GH'
name_mappings['upper floor'] = 'U'
name_mappings['main floor'] = 'M'
name_mappings['basement'] = 'B'
name_mappings['outside'] = 'OUT'
name_mappings['0-10v relays'] = True # means to skip
args = parse_args()
if args.dc_filename is not None:
v = Vantage(None, None, None, filename=args.dc_filename)
try:
f = open(args.dc_filename, "r")
xml_db = f.read()
f.close()
_LOGGER.info("read vantage configuration file %s",
args.dc_filename)
v.do_parse(xml_db)
except Exception as e:
traceback.print_exc()
_LOGGER.warning("Failed loading cached config: %s",
e)
return
v = Vantage(args.host, args.user, args.password, None, None,
3001, 2001, name_mappings, None, True,
int(args.num_connections) if args.num_connections else 1)
v.load_xml_db(not args.use_cache)
v.connect()
time.sleep(2)
if args.run_tests:
various_tests(v)
if args.run_new_tests:
run_new_tests(v)
if args.get_levels_test:
for vid in [3442, 3455, 3456, 3457, 3458, 3459, 3462, 3463, 3468, 3469, 3470, 3471, 3472, 3473, 3474, 3477, 3479, 3481, 3482, 3483, 3484, 3485, 3486, 3487, 3488, 3489, 3500, 3502, 3503, 3504, 3505, 3506, 3507, 3508, 3509, 3510, 3552, 3553, 3554, 3555, 3556, 3557, 3558, 3559, 3729, 3730, 3736, 4388, 4395, 4506, 4507, 4508, 4523, 4524, 4525, 4526, 4527, 4528, 4529, 4536, 4625, 4626, 4627, 4634, 4722, 4727, 5320, 5844, 5846, 5848, 5850, 5852, 5855, 6180, 6181, 6184, 6185, 6186, 6187, 6188, 6189, 6190, 6191, 6192, 6193, 6194, 6195, 6196, 6199, 7029, 7030, 7033, 7034, 7035, 7036, 7037, 7166, 7167]:
_LOGGER.info("%s has level %s", vid, v._vid_to_load[vid].level)
time.sleep(args.sleep_for)
if args.dump_outputs:
for output in v.outputs:
area = v._vid_to_area[output.area]
print(output)
print(area)
if args.dump_buttons:
for b in v.buttons:
area = v._vid_to_area[b.area]
print(b)
print(area)
if __name__ == '__main__':
main()