Change scene's with a button - Automation

I’ve created a helper with x3 scenes as a drop down.
I have an automation that cycles through the scenes with the automation below… I can see it cycles with each button press, however I’m not sure how to have them activate

How do I activate each scene when the button is pressed?
Thanks guys…

alias: Theme Select
description: Press, cycles through the theme
trigger:
  - platform: state
    entity_id:
      - input_button.theme_button
    id: theme_button_press
condition: []
action:
  - service: input_select.select_next
    data:
      cycle: true
    target:
      entity_id: input_select.cinema_themes_list
mode: queued
variables:
  scene_mapper:
    Warm: scene.cinema_warm
    Ocean: scene.cinema_ocean
    Cyberpunk: scene.cinema_cyberpunk
max: 10

See the automation in this post:

Awesome!.. thanks Tom :pray:

1 Like