Multi State Control

Is there anyway to create a multi state control?

I have a number of settings on my MHRV unit that have multiple states and I would like to be able to set these via an NA dashboard.

sensor:
  - platform: template
    sensors:
        unit_of_measurement: "State"
        value_template: >-
          {% set mapper =  {
              '0' : 'StayAtHome',
              '1' : 'WorkingWeek',
              '2' : 'Office',
              '3' : 'Custom'} %}
          {% set state =  states('sensor.komfovent_scheduler_num') %}
          {{ mapper[state] if state in mapper else 'Unknown' }}

I could do it with a slider on the number sensor, or 4 buttons one for each ‘state’, but some options have 6 modes so a lot of buttons, so being able to select the actual state would be much nicer.

Perhaps with an Input Select?

1 Like

Thanks, not found that, however, it is a pretty clunky interface. Do you know of any custom cards for it?

I’m not the best resource for recommending custom cards so hopefully someone else can help you with that.

1 Like