-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclose_cover_vAug24.yaml
410 lines (373 loc) · 19 KB
/
close_cover_vAug24.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
blueprint:
name: Sun Protection vAug24
description: close cover when sun is shining and open when stops
domain: automation
input:
cover_entity:
name: cover
selector:
entity:
domain: cover
sun_position_start:
name: sun azimuth position start
description: Sun azimuth. when sun is below this value, shutter could be triggered
selector:
entity:
domain: input_number
sun_position_end:
name: sun azimuth position end
description: Sun azimuth. when sun is over this value, shutter could be triggered
selector:
entity:
domain: input_number
sun_elevation_start:
name: sun elevation to start
description: Sun elevation. when sun is over this value, shutter could be triggered
selector:
entity:
domain: input_number
weather:
name: Weather service
selector:
entity:
domain: weather
sensor:
name: Outdoor Sensor
selector:
entity:
domain: sensor
outdoor_temp_1:
name: Pos1 - Outdoor temperature (Low)
description: Temperature above which the shutters will close
selector:
entity:
domain: input_number
outdoor_temp_2:
name: Pos2 - Outdoor temperature (Medium)
description: Second temperature threshold above which the shutters will close
selector:
entity:
domain: input_number
outdoor_temp_3:
name: Pos3 - Outdoor temperature (High)
description: Third temperature threshold above which the shutters will close
selector:
entity:
domain: input_number
alarm_to_override:
name: Alarm that will override Sunrise
description: Automation will only run when time is after than this input_datetime value.
default:
selector:
entity:
domain: input_datetime
alarm_weekend_to_override:
name: Weekend Alarm that will override Sunrise
description: Automation will only run when time is after than this input_datetime value.
default:
selector:
entity:
domain: input_datetime
home_temperature:
name: Temperature Inside
description: Automation will compare the outside temperature with the inside to only open if it is lower.
default:
selector:
entity:
domain: sensor
homews_isinstalled:
name: Home WS Installed
description: Validator of the status
default:
selector:
entity:
domain: input_boolean
homews_temperature:
name: Outside Temperature to be based on Home Weather Station
description: Automation will compare the outside temperature with the inside to only open if it is lower.
default:
selector:
entity:
domain: sensor
homews_rainrate:
name: Rain Rate to be based on Home Weather Station
description: Rain Rate to be based on Home Weather Station
default:
selector:
entity:
domain: sensor
rainrate_pouring:
name: Pouring Rain Rate
description: Rain Rate to be compared with
default:
selector:
entity:
domain: input_number
rainrate_rainy:
name: Rainy Rain Rate
description: Rain Rate to be compared with
default:
selector:
entity:
domain: input_number
nelsonws_temperature:
name: Outside Temperature to be based on Nelson's Weather Station
description: Automation will compare the outside temperature with the inside to only open if it is lower.
default:
selector:
entity:
domain: sensor
nelsonws_rainrate:
name: Rain Rate to be based on Nelson's Weather Station
description: Automation will compare the outside temperature with the inside to only open if it is lower.
default:
selector:
entity:
domain: sensor
variables:
cover_e: !input cover_entity
var_e: "{{ 'var.' + cover_e[6:] }}"
protection_begin: !input sun_position_start
protection_end: !input sun_position_end
elevation_begin: !input sun_elevation_start
outdoor_temp: !input outdoor_temp_1
outdoor_temp_2: !input outdoor_temp_2
outdoor_temp_3: !input outdoor_temp_3
intermediate_position: "{{ 'var.intermediate_position'}}"
fully_closed_position: "{{ 'var.fully_closed_position'}}"
mid_afternoon_position: "{{ 'var.mid_afternoon_position'}}"
open_position_rainy: "{{ 'var.open_position_rainy'}}"
open_position: "{{ 'var.open_position'}}"
weather_service: !input weather
alarm_to_override: !input alarm_to_override
alarm_weekend_to_override: !input alarm_weekend_to_override
home_temperature: !input home_temperature
sensor: !input sensor
homews_isinstalled: !input homews_isinstalled
homews_temperature: !input homews_temperature
homews_rainrate: !input homews_rainrate
rainrate_pouring: !input rainrate_pouring
rainrate_rainy: !input rainrate_rainy
nelsonws_temperature: !input nelsonws_temperature
nelsonws_rainrate: !input nelsonws_rainrate
mode: parallel
trace:
stored_traces: 300
trigger:
- platform: time_pattern
minutes: "/5"
condition:
- condition: or
conditions:
- condition: template
value_template: >
{% set current_time = now().strftime("%H:%M") %}
{{ current_time > states[alarm_to_override].state and (now().weekday() in (1,2,3,4,5)) }}
- condition: template
value_template: >
{% set current_time = now().strftime("%H:%M") %}
{{ current_time > states[alarm_weekend_to_override].state and (now().weekday() in (0,6))}}
- condition: sun
before: sunset
after: sunrise
action:
- choose:
##########################################################.
# close cover - third temperature threshold
##########################################################
- conditions:
- condition: template
value_template: "{{- is_state('input_boolean.cover_manage_cover_with_sun', 'on') -}}"
- condition: template
value_template: "{{ states(var_e) != '1' }}"
- condition: template
value_template: "{{ state_attr('sun.sun', 'azimuth') > states(protection_begin) |float and state_attr('sun.sun', 'azimuth') < states(protection_end) |float and state_attr('sun.sun', 'elevation') > states(elevation_begin) |float }}"
- condition: or
conditions:
- condition: template
value_template: "{{ state_attr(cover_e, 'current_position') == states(open_position) |float }}"
- condition: template
value_template: "{{ state_attr(cover_e, 'current_position') == states(intermediate_position) |float }}"
- condition: template
value_template: "{{ state_attr(cover_e, 'current_position') == states(fully_closed_position) |float }}"
- condition: template
value_template: "{{ state_attr(cover_e, 'current_position') == states(mid_afternoon_position) |float }}"
- condition: or
conditions:
- condition: template
value_template: "{{ states(weather_service) == 'partlycloudy' }}"
- condition: template
value_template: "{{ states(weather_service) == 'sunny' }}"
- condition: template
value_template: >-
{{ (is_state(homews_isinstalled , 'on') and states(outdoor_temp_3) |int > states(home_temperature) |int and states(homews_temperature) |int >= states(outdoor_temp_3) |int )
or (state_attr(weather_service, 'temperature') != None and is_state(homews_isinstalled , 'off') and states(outdoor_temp_3) |int > states(home_temperature) |int and state_attr(weather_service, 'temperature') |int >= states(outdoor_temp_3) |int) }}
sequence:
- data_template:
entity_id: "{{ cover_e }}"
position: "{{ states(fully_closed_position) |float }}"
service: cover.set_cover_position
##########################################################
# close cover - second temperature threshold
##########################################################
- conditions:
- condition: template
value_template: "{{- is_state('input_boolean.cover_manage_cover_with_sun', 'on') -}}"
- condition: template
value_template: "{{ states(var_e) != '1' }}"
- condition: template
value_template: "{{ state_attr('sun.sun', 'azimuth') > states(protection_begin) |float and state_attr('sun.sun', 'azimuth') < states(protection_end) |float and state_attr('sun.sun', 'elevation') > states(elevation_begin) |float }}"
- condition: or
conditions:
- condition: template
value_template: "{{ state_attr(cover_e, 'current_position') == states(open_position) |float }}"
- condition: template
value_template: "{{ state_attr(cover_e, 'current_position') == states(intermediate_position) |float }}"
- condition: template
value_template: "{{ state_attr(cover_e, 'current_position') == states(fully_closed_position) |float }}"
- condition: template
value_template: "{{ state_attr(cover_e, 'current_position') == states(mid_afternoon_position) |float }}"
- condition: or
conditions:
- condition: template
value_template: "{{ states(weather_service) == 'partlycloudy' }}"
- condition: template
value_template: "{{ states(weather_service) == 'sunny' }}"
- condition: template
value_template: "{{ state_attr(weather_service, 'temperature') != None and is_state(homews_isinstalled , 'off') and states(outdoor_temp_2) |int > states(home_temperature) |int and states(outdoor_temp_3) |int <= states(home_temperature) |int }}"
sequence:
- data_template:
entity_id: "{{ cover_e }}"
position: "{{ states(intermediate_position) |float }}"
service: cover.set_cover_position
##########################################################
# close cover - first temperature threshold
##########################################################
- conditions:
- condition: template
value_template: "{{- is_state('input_boolean.cover_manage_cover_with_sun', 'on') -}}"
- condition: template
value_template: "{{ states(var_e) != '1' }}"
- condition: template
value_template: "{{ state_attr('sun.sun', 'azimuth') > states(protection_begin) |float and state_attr('sun.sun', 'azimuth') < states(protection_end) |float and state_attr('sun.sun', 'elevation') > states(elevation_begin) |float }}"
- condition: or
conditions:
- condition: template
value_template: "{{ state_attr(cover_e, 'current_position') == states(open_position) |float }}"
- condition: template
value_template: "{{ state_attr(cover_e, 'current_position') == states(intermediate_position) |float }}"
- condition: template
value_template: "{{ state_attr(cover_e, 'current_position') == states(fully_closed_position) |float }}"
- condition: template
value_template: "{{ state_attr(cover_e, 'current_position') == states(mid_afternoon_position) |float }}"
- condition: or
conditions:
- condition: template
value_template: "{{ states(weather_service) == 'partlycloudy' }}"
- condition: template
value_template: "{{ states(weather_service) == 'sunny' }}"
- condition: template
value_template: >-
{{ (is_state(homews_isinstalled , 'on') and states(outdoor_temp_3) |int > states(home_temperature) |int and states(homews_temperature) |int >= states(outdoor_temp_3) |int)
or (state_attr(weather_service, 'temperature') != None and states(outdoor_temp_3) |int > states(home_temperature) |int and state_attr(weather_service, 'temperature') |int >= states(outdoor_temp_3) |int) }}
sequence:
- data_template:
entity_id: "{{ cover_e }}"
position: "{{ states(mid_afternoon_position) |float }}"
service: cover.set_cover_position
##########################################################
# set cover if rainy
##########################################################
- conditions:
- condition: template
value_template: "{{- is_state('input_boolean.cover_manage_cover_with_sun', 'on') -}}"
- condition: sun
before: sunset
after: sunrise
# - condition: template
# value_template: "{{ state_attr('sun.sun', 'azimuth') > states(protection_begin) |float and state_attr('sun.sun', 'azimuth') < states(protection_end) |float and state_attr('sun.sun', 'elevation') > states(elevation_begin) |float }}"
- condition: template
value_template: >-
{{ states(weather_service) == 'rainy' and ( ( is_state(homews_isinstalled , 'on') and states(homews_rainrate) | float >= states(rainrate_rainy) | float and states(homews_rainrate) | float < states(rainrate_pouring) | float) or is_state(homews_isinstalled , 'off') ) }}"
sequence:
- data_template:
entity_id: "{{ cover_e }}"
position: "{{ states(open_position_rainy) |float }}"
service: cover.set_cover_position
##########################################################
# set cover if pouring
##########################################################
- conditions:
- condition: template
value_template: "{{- is_state('input_boolean.cover_manage_cover_with_sun', 'on') -}}"
- condition: sun
before: sunset
after: sunrise
# - condition: template
# value_template: "{{ state_attr('sun.sun', 'azimuth') > states(protection_begin) |float and state_attr('sun.sun', 'azimuth') < states(protection_end) |float and state_attr('sun.sun', 'elevation') > states(elevation_begin) |float }}"
- condition: template
value_template: "{{ states(weather_service) == 'pouring' and ( ( is_state(homews_isinstalled , 'on') and states(homews_rainrate) | float >= states(rainrate_pouring) | float ) or is_state(homews_isinstalled , 'off') ) }} "
sequence:
- data_template:
entity_id: "{{ cover_e }}"
position: "{{ states(fully_closed_position) |float }}"
service: cover.set_cover_position
##########################################################
# open cover before sunset
##########################################################
- conditions:
- condition: template
value_template: "{{- is_state('input_boolean.cover_manage_cover_with_sun', 'on') -}}"
- condition: sun
before: sunset
after: sunrise
- condition: template
value_template: "{{ (state_attr('sun.sun', 'azimuth') < states(protection_begin) |float or state_attr('sun.sun', 'azimuth') > states(protection_end) |float or state_attr('sun.sun', 'elevation') < states(elevation_begin) |float) }}"
- condition: or
conditions:
- condition: template
value_template: "{{ state_attr(cover_e, 'current_position') == states(open_position) |float }}"
- condition: template
value_template: "{{ state_attr(cover_e, 'current_position') == states(intermediate_position) |float }}"
- condition: template
value_template: "{{ state_attr(cover_e, 'current_position') == states(fully_closed_position) |float }}"
- condition: template
value_template: "{{ state_attr(cover_e, 'current_position') == states(mid_afternoon_position) |float }}"
- condition: template
value_template: >-
{{ (is_state(homews_isinstalled , 'on') and states(homews_temperature) |int < states(home_temperature) |int)
or (state_attr(weather_service, 'temperature') != None and state_attr(weather_service, 'temperature') |int < states(home_temperature) |int)
or (state_attr(weather_service, 'temperature') == None and states(outdoor_temp) |int <= states(home_temperature) |int) }}"
sequence:
- data_template:
entity_id: "{{ cover_e }}"
position: "{{ states(mid_afternoon_position) |float }}"
service: cover.set_cover_position
##########################################################
# open cover
##########################################################
- conditions:
- condition: template
value_template: "{{- is_state('input_boolean.cover_manage_cover_with_sun', 'on') -}}"
- condition: sun
before: sunset
after: sunrise
- condition: template
value_template: "{{ (state_attr('sun.sun', 'azimuth') < states(protection_begin) |float or state_attr('sun.sun', 'azimuth') > states(protection_end) |float or state_attr('sun.sun', 'elevation') < states(elevation_begin) |float) }}"
- condition: or
conditions:
- condition: template
value_template: "{{ state_attr(cover_e, 'current_position') == states(open_position) |float }}"
- condition: template
value_template: "{{ state_attr(cover_e, 'current_position') == states(intermediate_position) |float }}"
- condition: template
value_template: "{{ state_attr(cover_e, 'current_position') == states(fully_closed_position) |float }}"
- condition: template
value_template: "{{ state_attr(cover_e, 'current_position') == states(mid_afternoon_position) |float }}"
- condition: template
value_template: "{{ (state_attr(weather_service, 'temperature') != None and state_attr(weather_service, 'temperature') |int < states(home_temperature) |int) or (state_attr(weather_service, 'temperature') == None and states(outdoor_temp) |int <= states(home_temperature) |int) }}"
sequence:
- data_template:
entity_id: "{{ cover_e }}"
position: "{{ states(open_position) |float }}"
service: cover.set_cover_position