Fix broken Danfoss Ally TRV automation
Somehow I used the wrong variables last time around...
This commit is contained in:
parent
ba83781b0d
commit
d71116761d
1 changed files with 5 additions and 3 deletions
|
|
@ -53,9 +53,11 @@ conditions:
|
||||||
# cases.
|
# cases.
|
||||||
- condition: template
|
- condition: template
|
||||||
value_template: |-
|
value_template: |-
|
||||||
{% if state_attr(temperature_entity, 'temperature') is none %}
|
{# if the temperature entity doesn't have a state, e.g. if it's powered off #}
|
||||||
|
{% if states(temperature_entity) is none %}
|
||||||
False
|
False
|
||||||
{% elif state_attr(climate_entity, 'external_measured_room_sensor') == None %}
|
{# if the radiator has been unavailable #}
|
||||||
|
{% elif state_attr(climate_entity, 'external_measured_room_sensor') is none %}
|
||||||
True
|
True
|
||||||
{% else %}
|
{% else %}
|
||||||
{{
|
{{
|
||||||
|
|
@ -72,7 +74,7 @@ actions:
|
||||||
# state.
|
# state.
|
||||||
external_temperature: |-
|
external_temperature: |-
|
||||||
{% if (trigger.id is not defined) or (trigger.to_state.state in ['unavailable', 'unknown']) %}
|
{% if (trigger.id is not defined) or (trigger.to_state.state in ['unavailable', 'unknown']) %}
|
||||||
{{ state_attr(temperature_entity, 'temperature') }}
|
{{ states(temperature_entity) }}
|
||||||
{% else %}
|
{% else %}
|
||||||
{{ trigger.to_state.state | float }}
|
{{ trigger.to_state.state | float }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue