Reduce vacuum and fridge briefing noise

master
Carlo Costanzo 2 weeks ago
parent 8b9c55f9e9
commit f28f684127

@ -770,6 +770,9 @@ automation:
is_state('vacuum.l10s_vacuum', 'error')
or states('sensor.l10s_vacuum_error') not in ['no_error', 'unavailable']
}}
- condition: state
entity_id: group.bed
state: 'off'
action:
- service: script.send_to_logbook
data:

@ -86,7 +86,13 @@
{%- endmacro -%}
{%- macro fridge() -%}
The internal temperature of the refrigerator is currently {{ states('sensor.blink_blink1_temperature') }} degrees. The freezer temperature is {{ states('sensor.refrigerator_freezer_temp') }} degrees and the fridge temperature is {{ states('sensor.refrigerator_fridge_temp') }} degrees. {% if is_state('binary_sensor.refrigerator_door_open', 'on') %}The fridge door is currently open.{% endif %}
{% set freezer = states('sensor.refrigerator_freezer_temp') %}
{% set fridge = states('sensor.refrigerator_fridge_temp') %}
The internal temperature of the refrigerator is currently {{ states('sensor.blink_blink1_temperature') }} degrees.
{% if freezer not in ['unknown', 'unavailable', 'none', ''] and fridge not in ['unknown', 'unavailable', 'none', ''] %}
The freezer temperature is {{ freezer }} degrees and the fridge temperature is {{ fridge }} degrees.
{% endif %}
{% if is_state('binary_sensor.refrigerator_door_open', 'on') %}The fridge door is currently open.{% endif %}
{%- endmacro -%}
{%- macro window_check() -%}

Loading…
Cancel
Save

Powered by TurnKey Linux.