-
-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEATURE REQUEST] Control Multiple lights with one remote individually. #304
Comments
Hi @jaddel, I have considered this in the past, and I made the decision to not add such functionality natively since it can be achieved through configuration. You will first need to setup the following input select through UI or YAML: input_select:
lights:
options:
- light.my_light_1
- light.my_light_2
- light.my_light_3 Then, you would need the following ControllerX configuration: example_app:
module: controllerx
class: E1810Controller
controller: sensor.controller_action
light: "{{ states('input_select.lights') }}"
# This is recommendable if the lights you want to loop through have different supported actions
update_supported_features: true
merge_mapping:
arrow_left_click:
- service: input_select.select_previous
data:
entity_id: input_select.lights
arrow_right_click:
- service: input_select.select_next
data:
entity_id: input_select.lights This is an example with the E1810 as you stated. I have tried this and it worked on my side. However, there is a bug that needs to be fixed for this configuration to fully work. I created a ticket for this ( #305 ), and I will be submitting the fix soon. You can try this configuration in the meantime and play around, but you might encounter the same issue as described in #305. I will leave this ticket closed, but I am happy to continue the conversation here. Regards, |
Hi @jaddel, Issue #305 has been fixed and it has been deployed. Fixed will be found in ControllerX v4.11.1. Regards, |
This is super! Thank you very much for laying out the details! I'll try it asap. |
Hi again, since I set it up ass you recommended i lost the ability to adjust the brightness. Am I missing something? Here is one of my configurations:
|
Hi @jaddel, Could you please share the AppDaemon logs? Also, did you upgrade ControllerX to v4.11.1, and restart the AppDaemon server? Regards, EDIT: Upgrade to v4.11.2 |
Thank you, now its working! |
Is it possible to flash(short) the light that you select each time you switch? This way it's easier to recognize which light you have selected. |
Try this automation:
|
Hi, at first thank you very much for this awesome tool!
I would like to suggest the idea to control different lights with the same remote by cycling through a set of predefined light ids using the left and right buttons eg. on the ikea E1810 remote.
The text was updated successfully, but these errors were encountered: