-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultifunction-3ch.yaml
433 lines (417 loc) · 12.3 KB
/
multifunction-3ch.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
substitutions:
devicename: sonoff-t3
friendly_name: "Sonoff T3"
# blue led delay for actions
delay_short: "1s"
delay_long: "2s"
delay_veryshort: "0.7s"
# long press time (increase to >10 to mimic child-lock)
long_press: "2s"
esphome:
project:
name: "HomeConnected.Sonoff T_series Wallswitch Multifunction"
version: "2023.4.1b"
name: $devicename
friendly_name: $friendly_name
on_boot:
priority: -10
then:
- light.turn_on: blue_led_light
- delay: 0.6s
- light.turn_off: blue_led_light
- delay: 0.6s
- light.turn_on: blue_led_light
- delay: 0.6s
- light.turn_off: blue_led_light
- delay: 0.6s
- light.turn_on: blue_led_light
- delay: 0.6s
- light.turn_off: blue_led_light
esp8266:
board: esp01_1m
restore_from_flash: true
preferences:
flash_write_interval: 1min
logger:
# disable logging IF we listen to RX (GPIO3) pin directly as a UART or need to free memory
baud_rate: 0
api:
password: !secret api_password
ota:
password: !secret ota_password
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
ap:
ssid: "${devicename} Fallback Hotspot"
password: !secret api_password
captive_portal: # this is only to help connect to correct wi-fi
# if we use BLE Proxy function so web server must be donwn or need some memory
#web_server:
# port: 80
## CONFIG ##
# NOTES: Touchpad lights are hardware connected to relays so, if you don't use relays then the touchpad lights will always be off
# Touchpad lights will work normaly if relays are enabled, but the usefull output is Switch 1/2/3 virtual entities
# Don't enable virtual entities manually, this is done by build-in automation. Use the sensors on the device instead.
# USE: single click to on/off switch 1/2/3 ...or... push button 1/2/3 (button mode)
# long click to enable/disable relay 1/2/3 to also function (also touchpad lights)
# Choose if you want relay to unlock if disabled or not (admin setting initial on {unlocked})
# If you choose not to unlock a relay and you enable it while switch is on then you can invert its function (relay on if switch is off and relay off if switch is on)
# You can easily get confused if you mess up the controls and the config so be carefull (read above about this)
# Double click to toggle button-mode function (this will also toggle switch mode by design)
binary_sensor:
- platform: gpio
name: "$friendly_name Touch 1"
pin:
number: GPIO0
inverted: true
mode:
input: true
pullup: true
on_multi_click:
# short press
- timing:
- ON for at most 1s
- OFF for at least 0.2s
then:
- if:
condition:
and:
- switch.is_on: relay1en
- switch.is_off: button1en
then:
- switch.toggle: relay1
- switch.toggle: switch1
else:
- if:
condition:
switch.is_on: button1en
then:
- button.press: button1
else:
- switch.toggle: switch1
- light.turn_on: blue_led_light
- delay: $delay_short
- light.turn_off: blue_led_light
# long press
- timing:
- ON for at least $long_press
then:
- switch.toggle: relay1en
#- switch.turn_off: button3en
- if:
condition:
switch.is_on: relay1un
then:
- switch.turn_off: relay1
- light.turn_on: blue_led_light
- delay: $delay_long
- light.turn_off: blue_led_light
# double click
on_double_click:
min_length: 50ms
max_length: 350ms
then:
- switch.toggle: button1en
#- switch.turn_off: relay1en
- light.turn_on: blue_led_light
- delay: $delay_veryshort
- light.turn_off: blue_led_light
- delay: $delay_veryshort
- light.turn_on: blue_led_light
- delay: $delay_veryshort
- light.turn_off: blue_led_light
- platform: gpio
name: "$friendly_name Touch 2"
pin:
number: GPIO9
inverted: true
mode:
input: true
pullup: true
on_multi_click:
# short press
- timing:
- ON for at most 1s
- OFF for at least 0.2s
then:
- if:
condition:
and:
- switch.is_on: relay2en
- switch.is_off: button2en
then:
- switch.toggle: relay2
- switch.toggle: switch2
else:
- if:
condition:
switch.is_on: button2en
then:
- button.press: button2
else:
- switch.toggle: switch2
- light.turn_on: blue_led_light
- delay: $delay_short
- light.turn_off: blue_led_light
# long press
- timing:
- ON for at least $long_press
then:
- switch.toggle: relay2en
#- switch.turn_off: button2en
- if:
condition:
switch.is_on: relay2un
then:
- switch.turn_off: relay2
- light.turn_on: blue_led_light
- delay: $delay_long
- light.turn_off: blue_led_light
# double click
on_double_click:
min_length: 50ms
max_length: 350ms
then:
- switch.toggle: button2en
#- switch.turn_off: relay2en
- light.turn_on: blue_led_light
- delay: $delay_veryshort
- light.turn_off: blue_led_light
- delay: $delay_veryshort
- light.turn_on: blue_led_light
- delay: $delay_veryshort
- light.turn_off: blue_led_light
- platform: gpio
pin:
number: GPIO10
mode:
input: true
pullup: true
inverted: true
name: "$friendly_name Touch 3"
on_multi_click:
# short press
- timing:
- ON for at most 1s
- OFF for at least 0.2s
then:
- if:
condition:
and:
- switch.is_on: relay3en
- switch.is_off: button3en
then:
- switch.toggle: relay3
- switch.toggle: switch3
else:
- if:
condition:
switch.is_on: button3en
then:
- button.press: button3
else:
- switch.toggle: switch3
- light.turn_on: blue_led_light
- delay: $delay_short
- light.turn_off: blue_led_light
# long press
- timing:
- ON for at least $long_press
then:
- switch.toggle: relay3en
#- switch.turn_off: button3en
- if:
condition:
switch.is_on: relay3un
then:
- switch.turn_off: relay3
- light.turn_on: blue_led_light
- delay: $delay_long
- light.turn_off: blue_led_light
# double click
on_double_click:
min_length: 50ms
max_length: 350ms
then:
- switch.toggle: button3en
#- switch.turn_off: relay3en
- light.turn_on: blue_led_light
- delay: $delay_veryshort
- light.turn_off: blue_led_light
- delay: $delay_veryshort
- light.turn_on: blue_led_light
- delay: $delay_veryshort
- light.turn_off: blue_led_light
# Connection Status
- platform: status
name: "$friendly_name Status"
switch:
# Real hardware relays
- platform: gpio
name: "$friendly_name Relay 1"
pin: GPIO12
id: relay1
- platform: gpio
name: "$friendly_name Relay 2"
pin: GPIO5
id: relay2
- platform: gpio
name: "$friendly_name Relay 3"
pin: GPIO4
id: relay3
# Virtual switches for atomation use no matter if relays are enabled or not
- platform: template
name: "$friendly_name Switch 1"
id: switch1
optimistic: true
- platform: template
name: "$friendly_name Switch 2"
id: switch2
optimistic: true
- platform: template
name: "$friendly_name Switch 3"
id: switch3
optimistic: true
# Virtual switches for enable relays function
- platform: template
name: "$friendly_name Enable Relay 1"
id: relay1en
optimistic: true
entity_category: config
- platform: template
name: "$friendly_name Enable Relay 2"
id: relay2en
optimistic: true
entity_category: config
- platform: template
name: "$friendly_name Enable Relay 3"
id: relay3en
optimistic: true
entity_category: config
# Virtual switches to unlock relays if disabled
- platform: template
name: "$friendly_name Unlock Relay 1"
id: relay1un
optimistic: true
entity_category: config
restore_mode: RESTORE_DEFAULT_ON
- platform: template
name: "$friendly_name Unlock Relay 2"
id: relay2un
optimistic: true
entity_category: config
restore_mode: RESTORE_DEFAULT_ON
- platform: template
name: "$friendly_name Unlock Relay 3"
id: relay3un
optimistic: true
entity_category: config
restore_mode: RESTORE_DEFAULT_ON
# Virtual switches to enable button mode
- platform: template
name: "$friendly_name Button Mode 1"
id: button1en
optimistic: true
entity_category: config
restore_mode: RESTORE_DEFAULT_OFF
- platform: template
name: "$friendly_name Button Mode 2"
id: button2en
optimistic: true
entity_category: config
restore_mode: RESTORE_DEFAULT_OFF
- platform: template
name: "$friendly_name Button Mode 3"
id: button3en
optimistic: true
entity_category: config
restore_mode: RESTORE_DEFAULT_OFF
button:
# Virtual buttons for automations
- platform: template
name: "$friendly_name Button 1"
id: button1
- platform: template
name: "$friendly_name Button 2"
id: button2
- platform: template
name: "$friendly_name Button 3"
id: button3
# Device reboot button
- platform: restart
name: "${friendly_name} Restart"
output:
- platform: esp8266_pwm
id: blue_led
pin: GPIO13
inverted: true
light:
- platform: monochromatic
name: "$friendly_name Enable Status LED"
output: blue_led
id: blue_led_light
entity_category: config
sensor:
# Diagnostic status of WI-FI signal
- platform: wifi_signal
name: "${friendly_name} Signal dB"
id: wifi_signal_db
update_interval: 60s
entity_category: diagnostic
# Diagnostic status of WI-FI signal in DB
- platform: copy
source_id: wifi_signal_db
name: "${friendly_name} Signal %"
filters:
- lambda: return min(max(2 * (x + 100.0), 0.0), 100.0);
unit_of_measurement: "%"
entity_category: diagnostic
# Diagnostic status of device Uptime
- platform: uptime
name: "${friendly_name} Uptime"
id: up_time
update_interval: 60s
entity_category: diagnostic
on_raw_value:
then:
- text_sensor.template.publish:
id: uptime_human
state: !lambda |-
int seconds = round(id(up_time).raw_state);
int days = seconds / (24 * 3600);
seconds = seconds % (24 * 3600);
int hours = seconds / 3600;
seconds = seconds % 3600;
int minutes = seconds / 60;
seconds = seconds % 60;
return (
(days ? String(days) + "d " : "") +
(hours ? String(hours) + "h " : "") +
(minutes ? String(minutes) + "m " : "") +
(String(seconds) + "s")
).c_str();
text_sensor:
# Device ESPHome Version Info
- platform: version
hide_timestamp: true
name: "${friendly_name} ESPHome Version"
entity_category: diagnostic
# Device Wi-Fi IP & SSID Info
- platform: wifi_info
ip_address:
name: "${friendly_name} IP Address"
icon: mdi:wifi
entity_category: diagnostic
update_interval: 60s
ssid:
name: "${friendly_name} Connected SSID"
icon: mdi:wifi-strength-2
entity_category: diagnostic
update_interval: 60s
# Device Uptime Readable Format
- platform: template
name: "${friendly_name} Uptime (Readable)"
id: uptime_human
icon: mdi:clock-start
entity_category: diagnostic