Fan speed no more available on UI?

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:

FAN

Have I missed something changed in the HA changelog?

Thanks
Alessio

Not sure how that ever worked, you’re missing speed_template and set_speed.

Thanks Petro, I followed your suggestion and added the speed_template parameters, and It’s working fine:

FAN_OK

maybe I removed the reference to the input_select in some tests and after a year I also removed it from my memory :smiley: