-
Notifications
You must be signed in to change notification settings - Fork 0
/
sensors.yaml
124 lines (122 loc) · 5.51 KB
/
sensors.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
- platform: template
sensors:
conselho_porta_cozinha:
friendly_name: Conselho - Porta da Cozinha
value_template: >-
{% set temp_alvo = 22.0 %}
{% set humid_alvo = 55.0 %}
{% set temp_tolerancia_max = 8.0 %}
{% set humid_tolerancia_max = 16.0 %}
{% set temp_tolerancia_min = temp_tolerancia_max / 2 %}
{% set humid_tolerancia_min = humid_tolerancia_max / 2 %}
{% set temp_fora = state_attr('weather.casa_da_soeira','temperature')|float(default=0) %}
{% set humid_fora = state_attr('weather.casa_da_soeira','humidity')|float(default=0) %}
{% set temp_dentro = states('sensor.ambiente_sala_temperature')|float(default=0) %}
{% set humid_dentro = states('sensor.ambiente_sala_humidity')|float(default=0) %}
{% set abrir = "ABRIR" %}
{% set fechar = "FECHAR" %}
{% set indiferente = "Indiferente" %}
{## RESULTADO: Conselho: "Indiferente","ABRIR","FECHAR" ##}
{% set conselho = indiferente %}
{## LÓGICA: ##}
{% if temp_fora < temp_alvo %} {## Mais FRIO no Exterior ##}
{% if (temp_alvo - temp_fora) >= temp_tolerancia_max %} {## Mais de DTMAX frio ##}
{% if temp_fora <= temp_dentro %}
{% if temp_dentro - temp_fora >= temp_tolerancia_min %}
{% set conselho = fechar %}
{% else %}
{% set conselho = indiferente %}
{% endif %}
{% else %}
{% if temp_fora - temp_dentro >= temp_tolerancia_min %}
{% set conselho = abrir %}
{% else %}
{% set conselho = indiferente %}
{% endif %}
{% endif %}
{% elif (temp_alvo - temp_fora) >= temp_tolerancia_min %} {## Entre DTMIN e DTMAX frio ##}
{% if temp_fora <= temp_dentro %}
{% if temp_dentro - temp_fora >= temp_tolerancia_min %}
{% set conselho = fechar %}
{% else %}
{% set conselho = indiferente %}
{% endif %}
{% else %}
{% if temp_fora - temp_dentro >= temp_tolerancia_min %}
{% set conselho = abrir %}
{% else %}
{% set conselho = indiferente %}
{% endif %}
{% endif %}
{% else %} {## Mendos de DTMIN frio ##}
{% set conselho = indiferente %}
{% endif %}
{% else %} {## Mais CALOR no Exterior ##}
{% if (temp_fora - temp_alvo) >= temp_tolerancia_max %} {## Mais de DTMAX quente ##}
{% if temp_fora >= temp_dentro %}
{% if temp_fora - temp_dentro >= temp_tolerancia_min %}
{% set conselho = fechar %}
{% else %}
{% set conselho = indiferente %}
{% endif %}
{% else %}
{% if temp_dentro - temp_fora >= temp_tolerancia_min %}
{% set conselho = abrir %}
{% else %}
{% set conselho = indiferente %}
{% endif %}
{% endif %}
{% elif (temp_alvo - temp_fora) >= temp_tolerancia_min %} {## Entre DTMIN e DTMAX quente ##}
{% if temp_fora >= temp_dentro %}
{% if temp_fora - temp_dentro >= temp_tolerancia_min %}
{% set conselho = fechar %}
{% else %}
{% set conselho = indiferente %}
{% endif %}
{% else %}
{% if temp_dentro - temp_fora >= temp_tolerancia_min %}
{% set conselho = abrir %}
{% else %}
{% set conselho = indiferente %}
{% endif %}
{% endif %}
{% else %} {## Mendos de DTMIN quente ##}
{% set conselho = indiferente %}
{% endif %}
{% endif %}
{## SE Temperatura "indiferente", verificar pela humidade: ##}
{% if conselho == indiferente %}
{% if humid_dentro - humid_fora >= humid_tolerancia_max %}
{% if humid_dentro - humid_alvo >= humid_tolerancia_min %}
{% set conselho = abrir %}
{% endif %}
{% elif humid_fora - humid_dentro >= humid_tolerancia_max %}
{% if humid_dentro - humid_alvo >= humid_tolerancia_min %}
{% set conselho = abrir %}
{% endif %}
{% endif %}
{% endif %}
{## RETORNO: ##}
{% if (conselho == abrir) and (states('binary_sensor.porta_cozinha_contact') != 'on') %}
{% elif (conselho == fechar) and (states('binary_sensor.porta_cozinha_contact') != 'off') %}
{% else %}
{% set conselho = "OK" %}
{% endif %}
{{ conselho }}
icon_template: >-
{% set abrir = "ABRIR" %}
{% set fechar = "FECHAR" %}
{% if states('sensor.conselho_porta_cozinha') == fechar %}
mdi:door-closed
{% elif states('sensor.conselho_porta_cozinha') == abrir %}
mdi:door-opened
{% else %}
mdi:approximately-equal
{% endif %}
attribute_templates:
Temperatura Alvo: "22.00 ºC"
Temperatura Exterior: "{{state_attr('weather.casa_da_soeira','temperature')|float(default=0)}} ºC"
Temperatura Interior: "{{states('sensor.ambiente_sala_temperature')|float(default=0)}} ºC"
Humidade Alvo: "55,0 %"
Humidade Exterior: "{{state_attr('weather.casa_da_soeira','humidity')|float(default=0)}} %"
Humidade Interior: "{{states('sensor.ambiente_sala_humidity')|float(default=0)}} %"