Multiple input_select or input_slider

Hi, I am trying to make a card with set point for triggering notifications, in case my room temperature exceeds either an upper or a lower temperature. I got a single input_select in configuration.yaml fully working, but I can’t get multiple input_select working. I tried indentating with “-” under a single instance of input_select, as I do with multiple sensors, but it doesn’t work.
Same problem with input-slider.

Can someone give me an example of two input_select entries in configuration.yaml?
Thanks,
Ruud

Did you see this example in the docs?

# Example configuration.yaml entry
input_select:
  who_cooks:
    name: Who cooks today
    options:
     - Paulus
     - Anne Therese
    initial: Anne Therese
    icon: mdi:panda
  living_room_preset:
    options:
      - Visitors
      - Visitors with kids
      - Home Alone

Ahh no, I didn’t see that one. Thanks a lot. I could not image that multiple selectors would be stacked without “-”.

Ruud

1 Like