Hi everyone,
I am trying to show climate cards based on outside temperature. I.e., if outside temperature is below 18°C show the radiators climate card (they have a TRV) if it’s above show the AC climate card.
So far I have been doing this with seasons but, thanks to global warming, seasons are changing and I’m still using AC in Italy.
To show cards based on an entity I use conditional cards.
How can I achieve that?
- platform: template
sensors:
seasons_boolean:
friendly_name: "Seasons boolean"
value_template: >-
{% if is_state('sensor.seasons', 'autumn') or is_state('sensor.seasons', 'winter') %}
cold
{% else %}
warm
{% endif %}