-
Notifications
You must be signed in to change notification settings - Fork 0
/
gel-3-cb3s.yaml
317 lines (290 loc) · 7.18 KB
/
gel-3-cb3s.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
esphome:
name: ${device_name}
on_boot:
then:
- light.control:
id: my_light_1
state: !lambda return id(last_light1_state);
- light.control:
id: green_led_1
state: !lambda return id(last_light1_state);
- light.control:
id: my_light_2
state: !lambda return id(last_light2_state);
- light.control:
id: green_led_2
state: !lambda return id(last_light2_state);
- light.control:
id: my_light_3
state: !lambda return id(last_light3_state);
- light.control:
id: green_led_3
state: !lambda return id(last_light3_state);
project:
name: DiraSmart.Switch-3
version: "CB3S"
dashboard_import:
package_import_url: github://jbrandek/esphome-packages/gel-3-cb3s.yaml
import_full_config: false
bk72xx:
board: cb3s
packages:
common: github://jbrandek/esphome-packages/common.yaml
globals:
- id: last_light1_state
type: boolean
restore_value: yes
initial_value: 'false'
- id: last_light2_state
type: boolean
restore_value: yes
initial_value: 'false'
- id: last_light3_state
type: boolean
restore_value: yes
initial_value: 'false'
preferences:
flash_write_interval: 30s #(time in seconds e.g. 30s)
output:
- platform: gpio
pin:
number: P6
id: switch_output_1
- platform: gpio
pin:
number: P11
# P21 WB3S
inverted: true
id: green_led_output_1
- platform: gpio
pin:
number: P9
id: switch_output_2
- platform: gpio
pin:
number: P26
inverted: true
id: green_led_output_2
- platform: gpio
pin:
number: P8
id: switch_output_3
- platform: gpio
pin:
number: P14
inverted: true
id: green_led_output_3
- platform: gpio
pin:
number: P20
# P11 WB3S
inverted: true
id: wifi_led_output
light:
- platform: binary
name: ${friendly_name} WiFi LED
restore_mode: RESTORE_DEFAULT_ON
id: wifi_led
disabled_by_default: true
output: wifi_led_output
- platform: binary
restore_mode: RESTORE_DEFAULT_OFF
name: ${light_name_1}
id: my_light_1
output: switch_output_1
on_turn_on:
- light.turn_on: green_led_1
- globals.set:
id: last_light1_state
value: 'true'
on_turn_off:
- light.turn_off: green_led_1
- globals.set:
id: last_light1_state
value: 'false'
- platform: binary
restore_mode: RESTORE_DEFAULT_OFF
id: green_led_1
output: green_led_output_1
- platform: binary
restore_mode: RESTORE_DEFAULT_OFF
name: ${light_name_2}
id: my_light_2
output: switch_output_2
on_turn_on:
- light.turn_on: green_led_2
- globals.set:
id: last_light2_state
value: 'true'
on_turn_off:
- light.turn_off: green_led_2
- globals.set:
id: last_light2_state
value: 'false'
- platform: binary
restore_mode: RESTORE_DEFAULT_OFF
id: green_led_2
output: green_led_output_2
- platform: binary
restore_mode: RESTORE_DEFAULT_OFF
name: ${light_name_3}
id: my_light_3
output: switch_output_3
on_turn_on:
- light.turn_on: green_led_3
- globals.set:
id: last_light3_state
value: 'true'
on_turn_off:
- light.turn_off: green_led_3
- globals.set:
id: last_light3_state
value: 'false'
- platform: binary
restore_mode: RESTORE_DEFAULT_OFF
id: green_led_3
output: green_led_output_3
- platform: status_led
id: blue_led
pin:
number: P23
inverted: true
binary_sensor:
- platform: gpio
internal: true
pin:
number: P24
inverted: true
mode: INPUT_PULLUP
name: ${device_name}_button_1
id: relay_button_1
on_multi_click:
- timing:
- ON for 40ms to 800ms
- OFF for at least 400ms
then:
if:
condition:
switch.is_off: shabat_mode
then:
- light.toggle: my_light_1
- timing:
# 5 click restart
- ON for 40ms to 400ms
- OFF for 40ms to 400ms
- ON for 40ms to 400ms
- OFF for 40ms to 400ms
- ON for 40ms to 400ms
- OFF for 40ms to 400ms
- ON for 40ms to 400ms
- OFF for 40ms to 400ms
- ON for 40ms to 400ms
- OFF for at least 400ms
then:
- button.press:
id: restart_button
- timing:
- ON for at least 2s
then:
- script.execute: shabat_script
- platform: gpio
internal: true
pin:
number: P7
mode: INPUT_PULLUP
inverted: true
name: ${device_name}_button_2
id: relay_button_2
on_multi_click:
- timing:
- ON for 40ms to 800ms
- OFF for at least 400ms
then:
if:
condition:
switch.is_off: shabat_mode
then:
- light.toggle: my_light_2
- timing:
# 5 click restart
- ON for 40ms to 400ms
- OFF for 40ms to 400ms
- ON for 40ms to 400ms
- OFF for 40ms to 400ms
- ON for 40ms to 400ms
- OFF for 40ms to 400ms
- ON for 40ms to 400ms
- OFF for 40ms to 400ms
- ON for 40ms to 400ms
- OFF for at least 400ms
then:
- button.press:
id: restart_button
- timing:
- ON for at least 2s
then:
- script.execute: shabat_script
- platform: gpio
internal: true
pin:
number: P10
mode: INPUT_PULLUP
inverted: true
name: ${device_name}_button_3
id: relay_button_3
on_multi_click:
- timing:
- ON for 40ms to 800ms
- OFF for at least 400ms
then:
if:
condition:
switch.is_off: shabat_mode
then:
- light.toggle: my_light_3
- timing:
# 5 click restart
- ON for 40ms to 400ms
- OFF for 40ms to 400ms
- ON for 40ms to 400ms
- OFF for 40ms to 400ms
- ON for 40ms to 400ms
- OFF for 40ms to 400ms
- ON for 40ms to 400ms
- OFF for 40ms to 400ms
- ON for 40ms to 400ms
- OFF for at least 400ms
then:
- button.press:
id: restart_button
- timing:
- ON for at least 2s
then:
- script.execute: shabat_script
switch:
- platform: template
entity_category: config
name: "${friendly_name} Shabat Mode"
id: shabat_mode
restore_mode: RESTORE_DEFAULT_OFF
optimistic: true
on_turn_on:
- light.turn_on: blue_led
- light.turn_off: wifi_led
on_turn_off:
- light.turn_off: blue_led
- light.turn_on: wifi_led
script:
- id: shabat_script
then:
- switch.toggle:
id: shabat_mode
- repeat:
count: 3
then:
- light.toggle:
id: blue_led
- delay: 0.5s
- light.toggle:
id: blue_led
- delay: 0.5s