-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelescontiempo
412 lines (378 loc) · 11.1 KB
/
relescontiempo
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
## este codigo tiene mal las asignaciones de reles, pero funciona bien los tiempos
esphome:
name: kc868-a6-a
friendly_name: KC868-A6 Controller-A
esp32:
board: esp32dev
framework:
type: arduino
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
# Time components
time:
- platform: homeassistant
id: homeassistant_time
# Global variables for time tracking
globals:
- id: last_activation_term_salon
type: int
restore_value: yes
initial_value: '0'
- id: last_activation_term_julia
type: int
restore_value: yes
initial_value: '0'
- id: last_activation_term_sergio
type: int
restore_value: yes
initial_value: '0'
- id: last_activation_term_principal
type: int
restore_value: yes
initial_value: '0'
- id: last_activation_valve_salon
type: int
restore_value: yes
initial_value: '0'
- id: last_activation_valve_cocina
type: int
restore_value: yes
initial_value: '0'
- id: last_activation_valve_bano
type: int
restore_value: yes
initial_value: '0'
- id: last_activation_valve_julia
type: int
restore_value: yes
initial_value: '0'
- id: last_activation_valve_sergio
type: int
restore_value: yes
initial_value: '0'
- id: last_activation_valve_principal
type: int
restore_value: yes
initial_value: '0'
text_sensor:
# Thermostats last activation
- platform: template
name: "Term. Salón - Última activación"
id: time_since_term_salon
icon: "mdi:timer-outline"
update_interval: 1s
lambda: |-
int seconds = id(homeassistant_time).now().timestamp - id(last_activation_term_salon);
int days = seconds / 86400;
int hours = (seconds % 86400) / 3600;
int minutes = (seconds % 3600) / 60;
int secs = seconds % 60;
char buffer[32];
sprintf(buffer, "%dd %dh %dm %ds", days, hours, minutes, secs);
return std::string(buffer);
- platform: template
name: "Term. Hab. Julia - Última activación"
id: time_since_term_julia
icon: "mdi:timer-outline"
update_interval: 1s
lambda: |-
int seconds = id(homeassistant_time).now().timestamp - id(last_activation_term_julia);
int days = seconds / 86400;
int hours = (seconds % 86400) / 3600;
int minutes = (seconds % 3600) / 60;
int secs = seconds % 60;
char buffer[32];
sprintf(buffer, "%dd %dh %dm %ds", days, hours, minutes, secs);
return std::string(buffer);
- platform: template
name: "Term. Hab. Sergio - Última activación"
id: time_since_term_sergio
icon: "mdi:timer-outline"
update_interval: 1s
lambda: |-
int seconds = id(homeassistant_time).now().timestamp - id(last_activation_term_sergio);
int days = seconds / 86400;
int hours = (seconds % 86400) / 3600;
int minutes = (seconds % 3600) / 60;
int secs = seconds % 60;
char buffer[32];
sprintf(buffer, "%dd %dh %dm %ds", days, hours, minutes, secs);
return std::string(buffer);
- platform: template
name: "Term. Hab. Principal - Última activación"
id: time_since_term_principal
icon: "mdi:timer-outline"
update_interval: 1s
lambda: |-
int seconds = id(homeassistant_time).now().timestamp - id(last_activation_term_principal);
int days = seconds / 86400;
int hours = (seconds % 86400) / 3600;
int minutes = (seconds % 3600) / 60;
int secs = seconds % 60;
char buffer[32];
sprintf(buffer, "%dd %dh %dm %ds", days, hours, minutes, secs);
return std::string(buffer);
# Valves last activation
- platform: template
name: "Válv. Salón - Última activación"
id: time_since_valve_salon
icon: "mdi:timer-outline"
update_interval: 1s
lambda: |-
int seconds = id(homeassistant_time).now().timestamp - id(last_activation_valve_salon);
int days = seconds / 86400;
int hours = (seconds % 86400) / 3600;
int minutes = (seconds % 3600) / 60;
int secs = seconds % 60;
char buffer[32];
sprintf(buffer, "%dd %dh %dm %ds", days, hours, minutes, secs);
return std::string(buffer);
- platform: template
name: "Válv. Cocina - Última activación"
id: time_since_valve_cocina
icon: "mdi:timer-outline"
update_interval: 1s
lambda: |-
int seconds = id(homeassistant_time).now().timestamp - id(last_activation_valve_cocina);
int days = seconds / 86400;
int hours = (seconds % 86400) / 3600;
int minutes = (seconds % 3600) / 60;
int secs = seconds % 60;
char buffer[32];
sprintf(buffer, "%dd %dh %dm %ds", days, hours, minutes, secs);
return std::string(buffer);
- platform: template
name: "Válv. Baño Peq. - Última activación"
id: time_since_valve_bano
icon: "mdi:timer-outline"
update_interval: 1s
lambda: |-
int seconds = id(homeassistant_time).now().timestamp - id(last_activation_valve_bano);
int days = seconds / 86400;
int hours = (seconds % 86400) / 3600;
int minutes = (seconds % 3600) / 60;
int secs = seconds % 60;
char buffer[32];
sprintf(buffer, "%dd %dh %dm %ds", days, hours, minutes, secs);
return std::string(buffer);
- platform: template
name: "Válv. Hab. Julia - Última activación"
id: time_since_valve_julia
icon: "mdi:timer-outline"
update_interval: 1s
lambda: |-
int seconds = id(homeassistant_time).now().timestamp - id(last_activation_valve_julia);
int days = seconds / 86400;
int hours = (seconds % 86400) / 3600;
int minutes = (seconds % 3600) / 60;
int secs = seconds % 60;
char buffer[32];
sprintf(buffer, "%dd %dh %dm %ds", days, hours, minutes, secs);
return std::string(buffer);
- platform: template
name: "Válv. Hab. Sergio - Última activación"
id: time_since_valve_sergio
icon: "mdi:timer-outline"
update_interval: 1s
lambda: |-
int seconds = id(homeassistant_time).now().timestamp - id(last_activation_valve_sergio);
int days = seconds / 86400;
int hours = (seconds % 86400) / 3600;
int minutes = (seconds % 3600) / 60;
int secs = seconds % 60;
char buffer[32];
sprintf(buffer, "%dd %dh %dm %ds", days, hours, minutes, secs);
return std::string(buffer);
- platform: template
name: "Válv. Hab. Dorm. Ppal - Última activación"
id: time_since_valve_principal
icon: "mdi:timer-outline"
update_interval: 1s
lambda: |-
int seconds = id(homeassistant_time).now().timestamp - id(last_activation_valve_principal);
int days = seconds / 86400;
int hours = (seconds % 86400) / 3600;
int minutes = (seconds % 3600) / 60;
int secs = seconds % 60;
char buffer[32];
sprintf(buffer, "%dd %dh %dm %ds", days, hours, minutes, secs);
return std::string(buffer);
logger:
api:
encryption:
key: !secret encryption_key
ota:
web_server:
port: 80
version: 1
uart:
- id: rs485
tx_pin: GPIO27
rx_pin: GPIO14
baud_rate: 9600
- id: rs232
tx_pin: GPIO17
rx_pin: GPIO16
baud_rate: 9600
spi:
clk_pin: GPIO18
mosi_pin: GPIO23
miso_pin: GPIO19
i2c:
sda: GPIO4
scl: GPIO15
scan: true
pcf8574:
- id: inputs
address: 0x22
- id: outputs
address: 0x24
binary_sensor:
- platform: gpio
name: "Term. Salón"
id: input1
pin:
pcf8574: inputs
number: 0
mode: INPUT
inverted: true
on_state:
then:
- delay: 500ms
- if:
condition:
binary_sensor.is_on: input1
then:
- lambda: 'id(last_activation_term_salon) = id(homeassistant_time).now().timestamp;'
- switch.turn_on: relay_1 # Válv. Salón (mantiene igual)
- switch.turn_on: relay_2 # Válv. Cocina
- switch.turn_on: relay_3 # Válv. Baño Peq.
else:
- switch.turn_off: relay_1
- switch.turn_off: relay_2
- switch.turn_off: relay_3
- platform: gpio
name: "Term. Hab. Julia"
id: input2
pin:
pcf8574: inputs
number: 1
mode: INPUT
inverted: true
on_state:
then:
- delay: 500ms
- if:
condition:
binary_sensor.is_on: input2
then:
- lambda: 'id(last_activation_term_julia) = id(homeassistant_time).now().timestamp;'
- switch.turn_on: relay_6 # Cambiado a Válv. Hab. Julia
else:
- switch.turn_off: relay_6
- platform: gpio
name: "Term. Hab. Sergio"
id: input3
pin:
pcf8574: inputs
number: 2
mode: INPUT
inverted: true
on_state:
then:
- delay: 500ms
- if:
condition:
binary_sensor.is_on: input3
then:
- lambda: 'id(last_activation_term_sergio) = id(homeassistant_time).now().timestamp;'
- switch.turn_on: relay_5 # Cambiado a Válv. Hab. Sergio
else:
- switch.turn_off: relay_5
- platform: gpio
name: "Term. Hab. Principal"
id: input4
pin:
pcf8574: inputs
number: 3
mode: INPUT
inverted: true
on_state:
then:
- delay: 500ms
- if:
condition:
binary_sensor.is_on: input4
then:
- lambda: 'id(last_activation_term_principal) = id(homeassistant_time).now().timestamp;'
- switch.turn_on: relay_4 # Cambiado a Válv. Hab. Principal
else:
- switch.turn_off: relay_4
switch:
- platform: gpio
name: "Válv. Salón"
id: relay_1
pin:
pcf8574: outputs
number: 0
mode: OUTPUT
inverted: true
on_turn_on:
then:
- lambda: 'id(last_activation_valve_salon) = id(homeassistant_time).now().timestamp;'
- platform: gpio
name: "Válv. Cocina"
id: relay_2
pin:
pcf8574: outputs
number: 1
mode: OUTPUT
inverted: true
on_turn_on:
then:
- lambda: 'id(last_activation_valve_cocina) = id(homeassistant_time).now().timestamp;'
- platform: gpio
name: "Válv. Baño Peq."
id: relay_3
pin:
pcf8574: outputs
number: 2
mode: OUTPUT
inverted: true
on_turn_on:
then:
- lambda: 'id(last_activation_valve_bano) = id(homeassistant_time).now().timestamp;'
- platform: gpio
name: "Válv. Hab. Julia"
id: relay_4
pin:
pcf8574: outputs
number: 3
mode: OUTPUT
inverted: true
on_turn_on:
then:
- lambda: 'id(last_activation_valve_julia) = id(homeassistant_time).now().timestamp;'
- platform: gpio
name: "Válv. Hab. Sergio"
id: relay_5
pin:
pcf8574: outputs
number: 4
mode: OUTPUT
inverted: true
on_turn_on:
then:
- lambda: 'id(last_activation_valve_sergio) = id(homeassistant_time).now().timestamp;'
- platform: gpio
name: "Válv. Hab. Dorm. Ppal"
id: relay_6
pin:
pcf8574: outputs
number: 5
mode: OUTPUT
inverted: true
on_turn_on:
then:
- lambda: 'id(last_activation_valve_principal) = id(homeassistant_time).now().timestamp;'