-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmicro.yaml
440 lines (414 loc) · 11.4 KB
/
micro.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
#Change these substitution to suit your requirements, they will be the names of
#the entities in Home Assistant
substitutions:
device_name: "micro-retic"#Name of device on network, MAC suffix will be added
relay_1_name: "Main"
relay_2_name: "Station 1"
relay_3_name: "Station 2"
relay_4_name: "Station 3"
photo_transistor: "Retic Light Sensor" #Disable by default in HA
duration_1: "Station 1 Duration"
duration_2: "Station 2 Duration"
duration_3: "Station 3 Duration"
remaining_1: "Station 1 Remaining"
remaining_2: "Station 2 Remaining"
remaining_3: "Station 3 Remaining"
esphome:
name: "${device_name}"
name_add_mac_suffix: true
project:
name: jimmy.micro_reticulation
version: "0.1"
on_boot:
priority: -100
then:
- ds1307.read_time:
- text_sensor.template.publish:
id: status
state: "Standby"
esp8266:
board: esp8285
logger:
api:
reboot_timeout: 0s
ota:
dashboard_import:
package_import_url: github://jeggleston1981/micro_reticulation/[email protected]
wifi:
ap:
password: "password"
reboot_timeout: 0s
captive_portal:
i2c:
sda: 4
scl: 5
scan: true
id: bus_a
time:
- platform: ds1307
id: ds3231_time
timezone: Australia/Perth
on_time:
- seconds: 0
minutes: 0
hours: 1
days_of_week: MON-SUN
then:
- switch.toggle: restart_switch
- platform: homeassistant
on_time_sync:
then:
ds1307.write_time:
globals:
# ============================================================================= #
# Irrigation time remaining
- id: remaining_time1
type: int
restore_value: no
initial_value: "300"
- id: remaining_time2
type: int
restore_value: no
initial_value: "300"
- id: remaining_time3
type: int
restore_value: no
initial_value: "300"
# ============================================================================= #
# Store previous values to verify change.
- id: remaining_time1_previous
type: int
restore_value: no
initial_value: "0"
- id: remaining_time2_previous
type: int
restore_value: no
initial_value: "0"
- id: remaining_time3_previous
type: int
restore_value: no
initial_value: "0"
switch:
- platform: restart
name: "Reticulation Restart"
id: restart_switch
#Virtual Switches so that a channel can be turned off with duration of 0
- platform: template
name: "${relay_2_name}"
id: irrigation_zone1
lambda: return id(station1).state;
optimistic: true
turn_on_action:
# Turn on if not disabled.
if:
condition:
and:
- lambda: return id(s1_duration) > 0;
- switch.is_off: rain
then:
- switch.turn_on: station1
- switch.turn_on: main
turn_off_action:
- switch.turn_off: station1
- switch.turn_off: main
- platform: template
name: "${relay_3_name}"
id: irrigation_zone2
lambda: return id(station2).state;
optimistic: true
turn_on_action:
# Turn on if not disabled.
if:
condition:
and:
- lambda: return id(s2_duration) > 0;
- switch.is_off: rain
then:
- switch.turn_on: station2
- switch.turn_on: main
turn_off_action:
- switch.turn_off: station2
- switch.turn_off: main
- platform: template
name: "${relay_4_name}"
id: irrigation_zone3
lambda: return id(station3).state;
optimistic: true
turn_on_action:
# Turn on if not disabled.
if:
condition:
and:
- lambda: return id(s3_duration) > 0;
- switch.is_off: rain
then:
- switch.turn_on: station3
- switch.turn_on: main
turn_off_action:
- switch.turn_off: station3
- switch.turn_off: main
- platform: template
name: "Rain"
id: rain
optimistic: true
on_turn_on:
then:
- text_sensor.template.publish:
id: status
state: "Rain"
on_turn_off:
then:
- text_sensor.template.publish:
id: status
state: "Standby"
#Real Solenoid relay outputs
- platform: gpio
name: "${relay_1_name}"
restore_mode: ALWAYS_OFF
id: main
pin:
number: 14
inverted: false
- platform: gpio
restore_mode: ALWAYS_OFF
id: station1
pin:
number: 12
inverted: false
on_turn_on:
then:
# Start the countdown timer.
- globals.set:
id: remaining_time1
value: !lambda return id(s1_duration).state * 60;
- sensor.template.publish:
id: remaining1
state: !lambda return id(s1_duration).state;
- text_sensor.template.publish:
id: status
state: "Run"
on_turn_off:
then:
- sensor.template.publish:
id: remaining1
state: "0"
- text_sensor.template.publish:
id: status
state: "Standby"
- switch.turn_off: main
- platform: gpio
restore_mode: ALWAYS_OFF
id: station2
pin:
number: 10
inverted: false
on_turn_on:
then:
# Start the countdown timer.
- globals.set:
id: remaining_time2
value: !lambda return id(s2_duration).state * 60;
- sensor.template.publish:
id: remaining2
state: !lambda return id(s2_duration).state;
- text_sensor.template.publish:
id: status
state: "Run"
on_turn_off:
then:
- sensor.template.publish:
id: remaining2
state: "0"
- text_sensor.template.publish:
id: status
state: "Standby"
- switch.turn_off: main
- platform: gpio
restore_mode: ALWAYS_OFF
id: station3
pin:
number: 9
inverted: false
on_turn_on:
then:
# Start the countdown timer.
- globals.set:
id: remaining_time3
value: !lambda return id(s3_duration).state * 60;
- sensor.template.publish:
id: remaining3
state: !lambda return id(s3_duration).state;
- text_sensor.template.publish:
id: status
state: "Run"
on_turn_off:
then:
- sensor.template.publish:
id: remaining3
state: "0"
- text_sensor.template.publish:
id: status
state: "Standby"
- switch.turn_off: main
text_sensor:
- platform: template
name: "Status"
id: status
disabled_by_default: true
binary_sensor:
- platform: gpio
name: "Retic Light Sensor"
disabled_by_default: true
pin:
number: 13
inverted: true
filters:
- delayed_on_off: 10s
####################################################
#Station 1 Duration
number:
- platform: template
name: "${duration_1}"
id: s1_duration
#id: ui_zone1_duration
icon: mdi:timer-sand
optimistic: true
initial_value: 10
restore_value: true
min_value: 0
max_value: 60
step: 1
#Station 2 Duration
- platform: template
name: "${duration_2}"
id: s2_duration
#id: ui_zone1_duration
icon: mdi:timer-sand
optimistic: true
initial_value: 10
restore_value: true
min_value: 0
max_value: 60
step: 1
#Station 3 Duration
- platform: template
name: "${duration_3}"
id: s3_duration
#id: ui_zone1_duration
icon: mdi:timer-sand
optimistic: true
initial_value: 10
restore_value: true
min_value: 0
max_value: 60
step: 1
sensor:
- platform: uptime
name: "Reticulation Uptime"
disabled_by_default: true
- platform: template
name: "${remaining_1}"
id: remaining1
lambda: "return 0;"
accuracy_decimals: 0
unit_of_measurement: minutes
icon: mdi:timer-outline
on_value:
then:
- if:
condition:
lambda: return id(remaining_time1) == 0;
then:
- switch.turn_off: station1
- platform: template
name: "${remaining_2}"
id: remaining2
lambda: "return 0;"
accuracy_decimals: 0
unit_of_measurement: minutes
icon: mdi:timer-outline
on_value:
then:
- if:
condition:
lambda: return id(remaining_time2) == 0;
then:
- switch.turn_off: station2
- platform: template
name: "${remaining_3}"
id: remaining3
lambda: "return 0;"
accuracy_decimals: 0
unit_of_measurement: minutes
icon: mdi:timer-outline
on_value:
then:
- if:
condition:
lambda: return id(remaining_time3) == 0;
then:
- switch.turn_off: station3
interval:
- interval: 5s
then:
- lambda: |-
if (id(remaining_time1) > 0) {
// Store the previous time.
id(remaining_time1_previous) = id(remaining_time1);
// When the relay is on.
if (id(station1).state) {
// Decrement the timer.
id(remaining_time1) -= 5;
// Turn off the relay when the time reaches zero... or the remaining time fails a sanity check!
//if (id(remaining_time1) <= 0 || id(remaining1).state > id(s1_duration).state){
if (id(remaining_time1) <= 0) {
id(station1).turn_off();
id(main).turn_off();
id(remaining_time1) = 0;
}
}
// Update the remaining time display.
if (id(remaining_time1_previous) != id(remaining_time1)) {
id(remaining1).publish_state( (id(remaining_time1)/60) + 1 );
}
}
if (id(remaining_time2) > 0) {
// Store the previous time.
id(remaining_time2_previous) = id(remaining_time2);
// When the relay is on.
if (id(station2).state) {
// Decrement the timer.
id(remaining_time2) -= 5;
// Turn off the relay when the time reaches zero... or the remaining time fails a sanity check!
//if (id(remaining_time2) <= 0 || id(remaining2).state > id(s2_duration).state){
if (id(remaining_time2) <= 0) {
id(station2).turn_off();
id(main).turn_off();
id(remaining_time2) = 0;
}
}
// Update the remaining time display.
if (id(remaining_time2_previous) != id(remaining_time2)) {
id(remaining2).publish_state( (id(remaining_time2)/60) + 1 );
}
}
if (id(remaining_time3) > 0) {
// Store the previous time.
id(remaining_time3_previous) = id(remaining_time3);
// When the relay is on.
if (id(station3).state) {
// Decrement the timer.
id(remaining_time3) -= 5;
// Turn off the relay when the time reaches zero... or the remaining time fails a sanity check!
//if (id(remaining_time3) <= 0 || id(remaining3).state > id(s3_duration).state){
if (id(remaining_time3) <= 0) {
id(station3).turn_off();
id (main).turn_off();
id(remaining_time3) = 0;
}
}
// Update the remaining time display.
if (id(remaining_time3_previous) != id(remaining_time3)) {
id(remaining3).publish_state( (id(remaining_time3)/60) + 1 );
}
}