Hi all,
I’ve configured a fan template as following about a year ago (the last summer…):
- platform: template
fans:
g3_ferrari:
friendly_name: "G3 Ferrari (Studio)"
value_template: >
{% if is_state('switch.plug_fan_small', 'unavailable') %}
off
{% else %}
{{ states('switch.plug_fan_small') }}
{% endif %}
turn_on:
service: switch.turn_on
data:
entity_id: switch.plug_fan_small
turn_off:
service: switch.turn_off
data:
entity_id: switch.plug_fan_small
speeds:
- '1'
- '2'
- '3'
and I’m pretty sure that Lovelace UI showed the fan speed control in the entity card.
Now the UI shows only the status:
Have I missed something changed in the HA changelog?
Thanks
Alessio