-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpico-w-display.yaml
494 lines (456 loc) · 11.8 KB
/
pico-w-display.yaml
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
esphome:
name: pico-w-display
friendly_name: Pico W display
includes:
- pico-w-display.h
- <algorithm>
rp2040:
board: rpipicow
#Enable logging
logger:
# Enable Home Assistant API
api:
encryption:
key: !secret api_key
actions:
- action: laundry_alert
then:
- script.execute: show_alert
ota:
- platform: esphome
password: !secret ota_password
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
fast_connect: true
manual_ip:
static_ip: 192.168.1.123
gateway: 192.168.1.1
subnet: 255.255.255.0
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
password: !secret fallback_hotspot_password
event:
- id: yeelight_control
name: "Yeelight control"
platform: template
event_types:
- yeelight_dim
- yeelight_brighten
- id: lamp_control
name: "Lamp control"
platform: template
event_types:
- lamp_dim
- lamp_brighten
globals:
- id: laundry_alert_displayed
type: bool
restore_value: no
initial_value: 'false'
script:
- id: backlight_short
mode: restart
then:
- light.turn_on: backlight
- delay: 5s
- light.turn_off: backlight
- display.page.show: page_yeelight
- id: show_alert
mode: restart
then:
- script.stop: backlight_short
- globals.set:
id: laundry_alert_displayed
value: 'true'
- light.turn_on: backlight
- component.update: my_display
- delay: 10min
- globals.set:
id: laundry_alert_displayed
value: 'false'
- component.update: my_display
- light.turn_off: backlight
- display.page.show: page_yeelight
- id: disable_alert
then:
- script.stop: show_alert
- globals.set:
id: laundry_alert_displayed
value: 'false'
- component.update: my_display
- light.turn_off: backlight
- id: joystick_down
then:
- if:
all:
- display.is_displaying_page: page_yeelight
- light.is_on: backlight
then:
- script.execute: backlight_short
- event.trigger:
id: yeelight_control
event_type: yeelight_dim
else:
- if:
all:
- display.is_displaying_page: page_lamp
- light.is_on: backlight
then:
- script.execute: backlight_short
- event.trigger:
id: lamp_control
event_type: lamp_dim
else:
- if:
all:
- display.is_displaying_page: page_display_brightness
- light.is_on: backlight
then:
- script.execute: backlight_short
- light.control:
id: backlight
brightness: !lambda |-
return std::max(0.1, id(backlight).current_values.get_brightness() - 0.1);
- component.update: my_display
else:
- if:
condition:
light.is_off: backlight
then:
- script.execute: backlight_short
- id: joystick_up
then:
- if:
all:
- display.is_displaying_page: page_yeelight
- light.is_on: backlight
then:
- script.execute: backlight_short
- event.trigger:
id: yeelight_control
event_type: yeelight_brighten
else:
- if:
all:
- display.is_displaying_page: page_lamp
- light.is_on: backlight
then:
- script.execute: backlight_short
- event.trigger:
id: lamp_control
event_type: lamp_brighten
else:
- if:
all:
- display.is_displaying_page: page_display_brightness
- light.is_on: backlight
then:
- script.execute: backlight_short
- light.control:
id: backlight
brightness: !lambda |-
return std::min(1.0, id(backlight).current_values.get_brightness() + 0.1);
- component.update: my_display
else:
- if:
condition:
light.is_off: backlight
then:
- script.execute: backlight_short
# Allow dimmable control of the backlight
output:
- platform: rp2040_pwm
pin: GPIO13
id: gpio13
light:
- platform: monochromatic
output: gpio13
id: backlight
restore_mode: RESTORE_AND_OFF
spi:
clk_pin: GPIO10
mosi_pin: GPIO11
display:
- platform: ili9xxx
model: ST7789V
id: my_display
invert_colors: true
color_palette: 8BIT
dimensions:
height: 240
width: 240
offset_height: 0
offset_width: 0
cs_pin: GPIO9
dc_pin: GPIO8
reset_pin: GPIO12
rotation: 90
data_rate: 80MHz
update_interval: 10d # NEVER, screen is updated manually
pages:
- id: page_yeelight
lambda: |-
drawBrightnessPage(it, id(laundry_alert_displayed), "Yeelight", id(yeelight).state, id(yeelight_brightness).state);
- id: page_lamp
lambda: |-
drawBrightnessPage(it, id(laundry_alert_displayed), "Lampka", id(lamp).state, id(lamp_brightness).state);
- id: page_display_brightness
lambda: |-
drawBrightnessPage(it, id(laundry_alert_displayed), "Jasnosc tutaj", id(backlight).remote_values.is_on(), id(backlight).remote_values.get_brightness() * 255);
- id: page_sensors
lambda: |-
drawSensorsPage(it, id(laundry_alert_displayed),
"Temperatura", "%.1f°C", id(current_temperature).state,
"Wilgotnosc", "%.1f%%", id(current_humidity).state,
"Cisnienie", "%.1fhPa", id(current_pressure).state);
binary_sensor:
- platform: gpio
pin:
number: GPIO15
inverted: true
mode:
input: true
pullup: true
name: "Button A"
filters:
- lambda: |-
if (id(laundry_alert_displayed)) {
id(disable_alert).execute();
return false;
} else {
return x;
}
- platform: gpio
pin:
number: GPIO17
inverted: true
mode:
input: true
pullup: true
name: "Button B"
filters:
- lambda: |-
if (id(laundry_alert_displayed)) {
id(disable_alert).execute();
return false;
} else {
return x;
}
- platform: gpio
pin:
number: GPIO19
inverted: true
mode:
input: true
pullup: true
name: "Button X"
filters:
- lambda: |-
if (id(laundry_alert_displayed)) {
id(disable_alert).execute();
return false;
} else {
return x;
}
- platform: gpio
pin:
number: GPIO21
inverted: true
mode:
input: true
pullup: true
name: "Button Y"
filters:
- lambda: |-
if (id(laundry_alert_displayed)) {
id(disable_alert).execute();
return false;
} else {
return x;
}
- platform: gpio
pin:
number: GPIO3
inverted: true
mode:
input: true
pullup: true
name: "Joystick OK"
internal: True
filters:
- lambda: |-
if (id(laundry_alert_displayed)) {
id(disable_alert).execute();
return false;
} else {
return x;
}
on_click:
then:
- script.execute: backlight_short
- component.update: my_display
- platform: gpio
pin:
number: GPIO2
inverted: true
mode:
input: true
pullup: true
name: "Joystick Up"
internal: True
on_click:
then:
- script.execute: joystick_up
- platform: gpio
pin:
number: GPIO18
inverted: true
mode:
input: true
pullup: true
name: "Joystick Down"
internal: True
on_click:
then:
- script.execute: joystick_down
- platform: gpio
pin:
number: GPIO16
inverted: true
mode:
input: true
pullup: true
name: "Joystick Left"
internal: True
on_click:
then:
- script.execute: backlight_short
- display.page.show_previous: my_display
- component.update: my_display
- platform: gpio
pin:
number: GPIO20
inverted: true
mode:
input: true
pullup: true
name: "Joystick Right"
internal: True
on_click:
then:
- script.execute: backlight_short
- display.page.show_next: my_display
- component.update: my_display
- platform: status
name: "Node Status"
id: system_status
on_state:
then:
- component.update: my_display
- platform: homeassistant
id: lamp
entity_id: light.ikea_tradfri_lampka_swiatlo
- platform: homeassistant
id: yeelight
entity_id: light.yeelight_lamp15_0x1e4bf3ad
color:
- id: my_red
red: 100%
green: 0%
blue: 0%
- id: my_green
red: 0%
green: 80%
blue: 40%
- id: my_blue
red: 0%
green: 0%
blue: 60%
- id: my_gray
red: 60%
green: 60%
blue: 60%
- id: my_dark_gray
red: 40%
green: 40%
blue: 40%
- id: my_light_gray
red: 80%
green: 80%
blue: 80%
font:
- file: "Helvetica-Bold.ttf"
id: font_bold_48
size: 48
- file: "Helvetica.ttf"
id: font_48
size: 48
- file: "Helvetica.ttf"
id: font_30
size: 30
- file: "Helvetica.ttf"
id: font_24
size: 24
sensor:
- platform: homeassistant
id: current_temperature
entity_id: sensor.esp_meteo_sensor_temperature
on_value:
then:
- if:
all:
- display.is_displaying_page: page_sensors
- light.is_on: backlight
then:
- component.update: my_display
- platform: homeassistant
id: current_humidity
entity_id: sensor.esp_meteo_sensor_humidity
on_value:
then:
- if:
all:
- display.is_displaying_page: page_sensors
- light.is_on: backlight
then:
- component.update: my_display
- platform: homeassistant
id: current_pressure
entity_id: sensor.esp_meteo_sensor_sea_level_pressure
on_value:
then:
- if:
all:
- display.is_displaying_page: page_sensors
- light.is_on: backlight
then:
- component.update: my_display
- platform: homeassistant
id: yeelight_brightness
entity_id: light.yeelight_lamp15_0x1e4bf3ad
attribute: brightness
on_value:
then:
- if:
all:
- display.is_displaying_page: page_yeelight
- light.is_on: backlight
then:
- component.update: my_display
- platform: homeassistant
id: lamp_brightness
entity_id: light.ikea_tradfri_lampka_swiatlo
attribute: brightness
on_value:
then:
- if:
all:
- display.is_displaying_page: page_lamp
- light.is_on: backlight
then:
- component.update: my_display
text_sensor:
- platform: version
name: "Version"
icon: mdi:cube-outline