Unfortunately, Iām failing to import this blueprint (via the button at the top of this topic) with the following error code:
Invalid blueprint: extra keys not allowed @ data['blueprint']['input']['bypass_settings']['collapsed']. Got True extra keys not allowed @ data['blueprint']['input']['bypass_settings']['icon'].
I searched this topic, but didnāt find anyone having the same issue.
I noticed an option to enable/disable the automation on certain days of the week. Is it possible to add specific timeframes for that? For example: Only enable between 7am and 10pm? Or more specific; only enable between 8am and 6pm on Monday?
And another question: I would like to have the lights turned on only when somebody is home. I have a group that monitors this. If I add the group to the by-pass option (Bypass Switch - Turn lights OFF), will the lights not turn off when the group is off?
Iāve been able to import this blueprint, but am lost by the amount of options.
However, Iām lost by the amount of optionsā¦
My objective is to
turn on certain lights in our location, starting when the sun goes down and increase them gradually - but only if user X is home
adjust light brightness and temperature so that when I turn them on via a switch or manually,nit has a brightness and temperature corresponding to the time of day.
Any direction for a blueprint -newbee would be appreciated, thanks!
This blueprint is not designed for this, it is more of a trigger you would like to happen. You may want to look at my Sensor Light Blueprint.
No, bypass works when an entity is ON the bypass is active and will do as per your selection. What you could do is use the group so when it is ON it turns the lights on and when it is OFF the light turn OFF. This would be done in a state trigger.
I recommend taking a look at my Sensor Light Blueprint.
First, youāll need to set up a trigger. If youāre aiming to run this at night, create a schedule helper that starts well before dark and ends at the time youād like it OFF. If itās meant to run 24/7, create a toggle helper instead. Simply copy and paste the toggle helper ID into the trigger input, then turn it ON.
Once your trigger is set up, use the ambient settings to adjust your lights to 50%.
For night lights, use your motion sensor as the state condition and set the lights to 100%.
This should give you the result youāre looking for. If you have more questions or are using the Sensor Light Blueprint, feel free to post them in that thread, and Iāll be happy to assist further.
I want to clarify the part about āonly if user X is homeā. This is not referring to presence / motion detection, but rather to a person entity based on the āPersonā integration.
In this blueprint there in no real condition other than weekday. This blueprint is for ON / OFF. I use it for light come ON when sun goes down and then switch OFF at X time. It will do this without any conditions. Another example say your office hours are from 9am to 5pm you can turn the lights ON and OFF. This is what this blueprint is used for. If you would like some conditions then best to use the sensor light blueprint.
Hey Blacky! Iāve tried the Smart Light blueprint but itās not turning on my light. Iāve tried to keep the blueprint config really simple and can confirm the entity ID is correct for both the light and illuminance. Can also confirm the illuminance right now is 14 which is way under the ambient light value. Can you see what I did wrong? The traces are quite complex so Iām not sure what info I should provide. Iām using ZHA with a Conbee II stick and a Philips Hue lamp + movement sensor which has an illuminance sensor in it. Thanks!
Hi, I have tried to use your blueprint. I just need to set time on/off. I have selected the Trigger time on and off, then In Lights I chose the device I want to be triggered on and off, then in Weekdays the days I want the lights to be switched on and off. I do not have motion sensors or other devices. However, after many attempts the system cannot run the automation and trigger the lights. I am new with HA and still mastering it so, any help is very much appreciated
Iāve tested your YAML, and it worked perfectly. Youāve set a Low Lux Value of 90, so for the automation to trigger, the LUX value must go from above 90 to below 90. When that happens, the light will turn ON.
If youāre adjusting the settings in the blueprint and your current LUX value is, say, 80, the automation wonāt trigger because it needs to cross from above 90 to below 90.
Also, note that youāve only set it to turn the light ON, so the automation wonāt turn it OFF. Iām not sure if thatās what you intended.
Make sure your sensor.living_room_illuminance reports the lux value. It looks like it is correct but I am just checking.
Ah now I get it! It needs to cross from above 90 to below 90 sounds like the key point to me. I would like it to always respond/trigger on the motion sensor, not only when it crosses. I found this blueprint that does that: Home Assistant Blueprint: Smart Lux Dimmer (github.com)
I have all my lights under your blueprints now so it would be awesome to get this one on it too! I donāt know how to fix it thoughā¦ Is it because of the trigger that has the above/below values defined while the blueprint I shared has them as a condition?
Correct on your other points - I wanted to keep the blueprint as simple as possible to get it to work first which makes troubleshooting easier. Hence the turn off functionality hasnāt been implemented yet