Hi there!
I’m new to homeassistant, despite being in homelabbing for 3 years.
I want to be able to press one button and cycle through 4 predefined modes for 1 specific lamp and it should also remember at which mode it was before without influencing the other lamps. I have 10 lamps (per lamp: 4 brightness/color settings) and I want to control each lamp with a different button on my 4x Aqara 6-button remotes. I already have it working with 10 input selects (per lamp) and 40 individual scenes (10 lamps * 4 modes), but I think I must be missing a much simpler solution.
I’m using a blueprint to have the correct triggers for the remotes (link), which works fine.
Can someone explain me how to set it up better?
Ok I solved it, wow this took days. For anybody that wants to achieve the same way:
Action from the button press event on the aqara remote (can be any remote, I am using a blueprint):
This will do the following: 1. It will pass on an input select drop down which light it wants to adress. 2. It will cycle through the scenes.
The input selects look like this:
#To remember at which scene the lamp was at
ki_li1:
name: KI_LI1
options:
- "bright"
- "medium"
- "low"
- "night"
#All my lights are here
lights:
name: Lights
options:
- "KI_LI1"