Support for Adaptive Lighting Custom Component #12
Replies: 2 comments 2 replies
-
Thanks for including adaptive lighting in the app, i believe the config will be a lot smaller and easier with including the benefit of the circadian lighting. So, im trying to config my kitchen that has lights that are "glowing" when lux is met and then lights up when motion. adaptive_switch: switch.adaptive_lighting_kitchen_motion
MQTTLights:
- lights:
- zigbee2mqtt/Kitchen Island Lamps
- zigbee2mqtt/Kitchen Cookerhood Lamps
automations: # Define some light for normal automation when motion is not detected/constrained.
- state: adaptive
motionlights:
state: adaptive
offset: 100 I have this adaptive config: - name: Kitchen Motion
lights:
- light.kitchen_island_lamps
- light.kitchen_cookerhood_lamps
min_brightness: 5
max_brightness: 30
skip_redundant_commands: true
interval: 10 But this will not work to turn up the lights when motion. I have also tried: motionlights:
state: turn_on
offset: 100 ...with no luck. Am i misunderstanding something here? |
Beta Was this translation helpful? Give feedback.
-
Min and max_brightness in adaptive lightning is procentual(0-100), not brightness (0-254). I believe i have to maximize the brightness in adaptive lighting to the max in "idle"-state. Because i dont want the lights to be any brighter during no_motion. motionlights:
- time: "00:00:00"
light_data:
brightness: 200
transition: 1 Of course its not variable during the day in this way, so be able to set an offset to the adaptive would be great. Is it not possible to use adaptive as state in the motionlights, and when there is an offset, it adds the offset to only the actual brightness and still adjusting both the colortemp and brightness without setting the light in manual? I understand if its not possible, but i need to ask those stupid questions :) |
Beta Was this translation helpful? Give feedback.
-
What's Changed
This release starts the support to use Adaptive Lighting custom component to control your brightness and color control for automation, motion or mode with setting state to 'adaptive'.
There is no need to configure Adaptive Lighting with 'detect_non_ha_changes' when you set it up. Lightwand will set manual control in the provided switch "Adaptive Lighting" that you'll need to define in your room with:
The normal 'automations' is a list. Minimum configuration is with:
To use when motion configure with:
Both 'automations' and 'motionlights' support list with times and states so you can configure Adaptive Lighting only to be active during specific times if needed to.
To use in mode configure with:
Automatic setting of Adaptive Lighting's "Sleep Mode" is not implemented. If you plan to use this make sure that your automation or mode is set to the adaptive state.
I do not use Adaptive Lighting actively so please report any unwanted behaviour.
Other bugfixes:
This discussion was created from the release Support for Adaptive Lighting Custom Component.
Beta Was this translation helpful? Give feedback.
All reactions