Input_select and multiple selection how to

I’d like to create a configuration where I can select ONE or MORE days for an automation.

input_select:
day_for_irrigation:
name: Irrigation
options:
- monday
- tuesday
- wednesday
- thursday
- friday
- saturday
- sunday

Is there a way to have a multiselect (maybe with a custom card) to select a combination of days?

For example i can select Monday and Thursday for my automation. But next week i’d like to change config (example bad weather) and select only a day… To avoid modify yaml using PC… but trough UI so all members famity can do it in frontend.

1 Like

Create seven input_booleans, one for each day of the week, and have your automation triggered by a change to any one of them?

1 Like

If there’s not way to use a multi-selector i must choose this way…