The one thing I miss from my days using the Hue bridge is the ability to easily cycle through multiple predefined scenes on repeated presses of the same button/light switch.
Ronaldt
(Ronald ter Veen)
October 6, 2022, 9:56am
2
Agreed! Scenes need some love to make them really useful.
This is a solution that might help out for the time being
@Joachim_Ahm_Mortense this should work if input_select.select_next isn’t working.
trigger:
- platform: state
entity_id: sensor.living_room_switch
to: 4_click
action:
- service: input_select.select_option
entity_id: input_select.living_room_scenes
data_template:
option: >
{% set options = state_attr('input_select.living_room_scenes','options') -%}
{% set selection = options.index(states('input_select.living_room_scenes')) -%}
{% if (selection + 1…