This repository has been archived by the owner on Oct 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
notify.py
290 lines (237 loc) · 9.48 KB
/
notify.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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
"""
TimeBox platform for notify component.
Connects to a Divoom TimeBox over bluetooth.
Peter Hardy <[email protected]>
"""
import json, os
import logging
import datetime
import voluptuous as vol
import homeassistant.helpers.config_validation as cv
from homeassistant.components.notify import (
ATTR_DATA, PLATFORM_SCHEMA, BaseNotificationService)
from homeassistant.const import CONF_MAC
DOMAIN = 'timebox'
EVENT_NOTIFY = "notify"
REQUIREMENTS = ['colour==0.1.5',
'https://github.com/phardy/timebox/archive/'
'8d9a5c8246961c32cffc521bbe7e9732cfa7b216.zip'
'#timebox==0.1']
_LOGGER = logging.getLogger(__name__)
CONF_IMAGE_DIR = 'image_dir'
PARAM_MODE = 'mode'
PARAM_COLOR = 'color'
PARAM_IMAGE = 'image'
PARAM_IMAGE_FILE = 'image-file'
PARAM_FILE_NAME = 'file-name'
PARAM_X = 'x'
PARAM_Y = 'y'
PARAM_SHOW_STATE = 'show_state'
PARAM_VALUE = 'value'
PARAM_MAX_VALUE = 'max_value'
PARAM_MIN_VALUE = 'min_value'
PARAM_START_COLOR = 'start_color'
PARAM_END_COLOR = 'end_color'
VALID_MODES = {'off', 'clock', 'temp', 'image', 'animation', 'sync-clock', 'show-states', 'set-state'}
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
vol.Required(CONF_MAC): cv.string,
vol.Required(CONF_IMAGE_DIR): cv.string,
})
def get_service(hass, config, discovery_info=None):
"""Get the TimeBox notification service."""
image_dir = hass.config.path(config[CONF_IMAGE_DIR])
return TimeBoxNotificationService(config[CONF_MAC],
image_dir)
class TimeBoxNotificationService(BaseNotificationService):
"""Implement the notification service for TimeBox."""
def __init__(self, mac, image_dir):
from timebox import TimeBox
self._mac = mac
self._image_dir = image_dir
self._timebox = TimeBox()
self._timebox.connect(host=mac)
if not os.path.isdir(image_dir):
_LOGGER.error("image_dir {0} does not exist, timebox will not work".format(image_dir))
from timeboximage import TimeBoxImage
self._state_image = TimeBoxImage()
self.display_image_file('ha-logo')
def display_image_file(self, fn):
image_data = self.load_image_file(fn)
if image_data is not None:
self.display_image(image_data)
def display_image(self, image_data):
if self.valid_image(image_data):
from timeboximage import TimeBoxImage
image = TimeBoxImage()
image.image = image_data
self._timebox.set_static_image(image)
else:
_LOGGER.error("Invalid image data received")
def valid_color(self, color):
"""Verifies a color is valid
(Array of three ints, range 0-15)"""
valid = False
if (isinstance(color, list) and len(color) == 3):
valid = True
for chan in color:
valid = valid and (0 <= chan <= 15)
if not valid:
_LOGGER.warn("{0} was not a valid color".format(color))
return valid
def valid_image(self, image):
"""Verifies an image array is valid.
An image should consist of a 2D array, 11x11. Each array
element is again an arry, containing a valid colour
(see valid_color())."""
valid = False
if (isinstance(image, list) and len(image) == 11):
valid = True
for row in image:
if (isinstance(row, list) and len(row) == 11):
for pixel in row:
if not self.valid_color(pixel):
valid = False
break
else:
valid = False
break
if not valid:
_LOGGER.error("Invalid image data received")
return valid
def load_image_file(self, image_file_name):
"""Loads image data from a file and returns it."""
fn = os.path.join(self._image_dir,
"{0}.json".format(image_file_name))
try:
fh = open(fn)
except:
_LOGGER.error("Unable to open {0}".format(fn))
return None
try:
image = json.load(fh)
return image
except Exception as e:
_LOGGER.error("{0} does not contain a valid image in JSON format".format(fn))
_LOGGER.error(e)
return None
def convert_color(self, color):
"""We expect all colors passed in to be in the range 0-15.
But some parts of the timebox API expect 0-255. This function
converts a passed in color array to something the API can
work with. Does not do validation itself."""
return [color[0]*16, color[1]*16, color[2]*16]
def send_message(self, message="", **kwargs):
if kwargs.get(ATTR_DATA) is None:
_LOGGER.error("Service call needs a message type")
return False
data = kwargs.get(ATTR_DATA)
mode = data.get(PARAM_MODE)
# HA used to internally cast "off" to a boolean False.
# Apparently it doesn't any more?
if mode == False or mode == 'off':
self.display_image_file('blank')
elif mode == "clock":
color = data.get(PARAM_COLOR)
if self.valid_color(color):
color = self.convert_color(color)
else:
color = [255, 255, 255]
self._timebox.show_clock(color=color)
elif mode == "temp":
color = data.get(PARAM_COLOR)
if self.valid_color(color):
color = self.convert_color(color)
else:
color = [255, 255, 255]
self._timebox.show_temperature(color=color)
elif mode == "image":
image_data = data.get(PARAM_IMAGE)
self.display_image(image_data)
elif mode == "image-file":
image_filename = data.get(PARAM_FILE_NAME)
self.display_image_file(image_filename)
elif mode == "sync-clock":
dt = datetime.datetime.now()
head = [0x0A, 0x00, 0x18, dt.year % 100, int(dt.year/100),
dt.month, dt.day, dt.hour, dt.minute, dt.second]
self._timebox.send_payload(head)
elif mode == "show-states":
self._timebox.set_static_image(self._state_image)
elif mode == "set-state":
color = data.get(PARAM_COLOR)
x = data.get(PARAM_X)
y = data.get(PARAM_Y)
show_state = data.get(PARAM_SHOW_STATE)
self._state_image.put_pixel(x,y,color[0],color[1],color[2])
if show_state == True:
self._timebox.set_static_image(self._state_image)
elif mode == "set-state-lerp":
x = data.get(PARAM_X)
x = int(x)
y = data.get(PARAM_Y)
y = int(y)
_LOGGER.info("x: " + str(x) + " y:" + str(y))
start_color = data.get(PARAM_START_COLOR)
end_color = data.get(PARAM_END_COLOR)
start_color = [int(x) for x in start_color]
end_color = [int(x) for x in end_color]
value = data.get(PARAM_VALUE)
value = float(value)
min_value = data.get(PARAM_MIN_VALUE)
min_value = float(min_value)
max_value = data.get(PARAM_MAX_VALUE)
max_value = float(max_value)
_LOGGER.debug("val: " + str(value) + " min:" + str(min_value) + " max:" + str(max_value))
_LOGGER.debug("start_col: " + str(start_color) + " end: " + str(end_color))
show_state = data.get(PARAM_SHOW_STATE)
color = calculate_lerp_color(start_color,end_color,value,min_value,max_value)
_LOGGER.info("calc_col: " + str(color))
self._state_image.put_pixel(x,y,color[0],color[1],color[2])
if show_state == True or show_state.lower() == "true":
self._timebox.set_static_image(self._state_image)
elif mode == "animation":
# TODO
pass
else:
_LOGGER.error("Invalid mode '{0}', must be one of 'off', 'clock', 'temp', 'image', 'animation'".format(mode))
return False
return True
import colorsys
def lerp_HSV (a, b, t):
#Hue interpolation
# h
d = b[0] - a[0]
if (a[0] > b[0]):
#Swap (a[0], b[0])
h3 = b[0]
b[0] = a[0]
a[0] = h3
d = -d
t = 1 - t
if (d > 0.5): #180deg
a[0] = a[0] + 1 #360deg
h = ( a[0] + t * (b[0] - a[0]) ) % 1 #360deg
if (d <= 0.5): #180deg
h = a[0] + t * d
#Interpolates the rest
return [
h,#H
a[1] + t * (b[1]-a[1]),#S
a[2] + t * (b[2]-a[2])#V
]
def color_to_float(c_int):
return [ x/15.0 for x in c_int]
def color_to_int(c_float):
return [ x*15 for x in c_float]
def calculate_lerp_color(start_color, end_color, value, min_value, max_value):
rgb_start = color_to_float(start_color)
rgb_end = color_to_float(end_color)
hsv_start = list(colorsys.rgb_to_hsv(rgb_start[0],rgb_start[1],rgb_start[2]))
hsv_end = list(colorsys.rgb_to_hsv(rgb_end[0],rgb_end[1],rgb_end[2]))
t = (value - min_value) / (max_value-min_value)
t = max(min(t, 1.0), 0)
hsv_interpolated = lerp_HSV(hsv_start, hsv_end,t)
rgb_interpolated = list(colorsys.hsv_to_rgb(hsv_interpolated[0],hsv_interpolated[1],hsv_interpolated[2]))
rgb_interpolated = color_to_int(rgb_interpolated)
result = [ round(x) for x in rgb_interpolated ]
return result