Your probably best to set up a custom automation that send you an email when your motion sensor is triggered and then use this blueprint to control the light.
Blacky
Your probably best to set up a custom automation that send you an email when your motion sensor is triggered and then use this blueprint to control the light.
Blacky
Thank you - that’s an interesting idea.
I tried this and while it works - it would be much nicer if i could do a wildcard for any and all automations now or in the future. I would rather get the email and add an item to the exception list to not get them.
automations.*
vs
automations.sensor_light
This works:
triggers:
- entity_id:
- automation.sensor_light
This doesnt work:
triggers:
- entity_id:
- automation.*
However when typing it in, -automation.s - it does show whatever choices i have - so it seems like wildcard would work, but doesnt?
Any suggestions on cleaning this up into any automation that runs?
`alias: Email Upon Automation Trigger
description: ""
triggers:
- entity_id:
- automation.1st_floor_bath_motion_activated_light
- automation.sensor_light
trigger: state
conditions:
- condition: template
value_template: "{{ trigger.entity_id != 'automation.email_upon_notification' }}"
actions:
- data:
title: >-
HOME ASSISTANT NOTIFICATION: Automation: {{
state_attr(trigger.entity_id, 'friendly_name') }}
message: "Time: {{ now().strftime('%m/%d/%Y %I:%M %p') }}"
action: notify.email
mode: single
Probably best to ask this question in a different post but it would be something like this.
Replace binary_sensor.your_motion_sensor_here with your motion sensor and the action I just copied your action.
description: ""
mode: single
triggers:
- trigger: state
entity_id:
- binary_sensor.your_motion_sensor_here
to: "on"
conditions: []
actions:
- data:
title: >-
HOME ASSISTANT NOTIFICATION: Automation: {{
state_attr(trigger.entity_id, 'friendly_name') }}
message: "Time: {{ now().strftime('%m/%d/%Y %I:%M %p') }}"
action: notify.email
Blacky
That works, however as it only has support for a single profile, I’m unable to use the Night Light feature as intended if I was to add an input boolean, no?
When using a helper, do I need several helper within one automation?
like one helper for Dynamic Lighting - Toggle Helper
and one for Scenes & Scripts - Toggle Helper
?
Feature request: when using bypass it’d be great if I can choose wich action I wanna use:
Why? Because I use the dynamic Lightning Option with maximum 70% brightness. When I need more light I wanna bypass too 100% brightness.
But it seems when normal light control AND dynamic light control are configured, only dynamic will take effect. So I wanna bypass to “normal” light control (with 100% brightness).
There are only 2 input of different light settings. One I call normal lights and the other is night lights.
Blacky
You only need toggle helpers when;
Dynamic Lighting
Used in options 1, 2, 3, 4, 5, 6, 7, 8 or 9 - If you have chosen a brightness level of 0%, then it’s essential to create an independent toggle helper and enter it here.
Scenes & Scripts - Toggle Helper
To ensure the smooth operation of the automation, it’s recommended to create an independent toggle helper when selecting a scene or script in “Lights - Switches - Scenes - Scripts” above and then enter it here.
Night Lights - Scenes & Scripts - Toggle Helper
To ensure the smooth operation of the automation, it’s recommended to create an independent toggle helper when selecting a scene or script in “Night Lights” above and then enter it here.
Blacky
Thanks for your suggestion I will put it on the list of recommendations.
For now you can ether, adjust the light brightness manually when you turn ON the bypass or have a simple automation that will turn the brightness level to 100% when you turn on the bypass.
Blacky
Hello, nice blueprint. Thank you!
Can you implement a hue like dim option before lights go off? Like 50% brightness for 10 seconds or so before turn off? I know transition OFF setting can be used, but I think hue way is more elegant.
Hello, very nice blueprint, i use it for all my lights. Thanks for the hard work!
In my bathroom i have a motion sensor that controls the light. The only annoyance is when someone showers. The motion sensor cannot see a person in the shower, mainly because the shower curtain is not transparent. Now, i’ve placed a temperature (and humidity) sensor in the bathroom, and i want the light to stay on while the humidity is above 65%.
I can see here in your blueprint:
Anyway, thanks in advance!
Hi and thanks for this awesome blueprint.
I am trying to make the Bee in the hive to work with my setup but its not working.
Made the sensor in the ui like your guide but the sensor dosent change state att all, its always off. What am I doing wrong?
Here is my template and I’m using Aqara door sensor and Hue motions sensor.
template:
- trigger:
- platform: state
entity_id: binary_sensor.aqara_door_sensor_badrum_door_4
to: "on"
- platform: state
entity_id: binary_sensor.aqara_door_sensor_badrum_door_4
to: "off"
for:
seconds: 10
- platform: state
entity_id: binary_sensor.hue_motion_badrum_motion
to: "on"
binary_sensor:
- name: "Bee In The Hive"
device_class: occupancy
icon: mdi:account-box-outline
state: >
{{ is_state('binary_sensor.aqara_door_sensor_badrum_door_4', 'off') and is_state('binary_sensor.hue_motion_badrum_motion', 'on') }}
Sorry, but I don’t understand why this needs to be this complicated.
Can you explain me why I can’t just have a scene to turn on the lights, a scene to turn on lights with 10 percent during night and another scene to turn everything off? Why an additional script and a helper?
I have something similar, but with power, when TV is running. So I created a helper with Threshold helper. It gets on or off when the conditions are set.
And the helper you use for bypass.
Could it be, that it is because my Motion Sensor is publishing the occupancy twice?
Im now trying to set the mqtt QOS to 2 , hopefully to prevent this.
Because I couldn’t find the light being immediately switched off.
If that doesn’t work i might be trying the ‘debounce’ option
Thanks, it seems like i made it work with a threshold helper!
In addition to my earlier comment, i have a schedule sensor (at this time use this brightness, at that time use that brightness and so on) that i would like to implement to my bathroom lights. The states values are the percentages of the brightness, so at 10:00 it might be “20” and at 17:00 it might be “50”. Can that somehow be used with your template?
Now you have a humidity sensor in the bathroom maybe add a smart switch for the fan. You then can use my Bathroom Humidity Exhaust Fan blueprint to turn the fan ON and it will also keep the lights ON. In the FAQ of that blueprint I show my full set up and how I do it.
You could also us a door contact sensor so when you are in the bathroom and motion is detected it will keep the light ON until you open the door. To do this I have developed a template sensor called Bee In The Hive Sensor and this shows you how to do it, click here. This way when you are behind the shower curtain it will keep the lights ON.
Personally I use my Bathroom Humidity Exhaust Fan blueprint with this blueprint to achieve everything.
This would be done by using night lights and using night light time option and set when you would like the lights at 50% so from 17:00 to 07:00. Then set up your night lights.
Hope this helps you.
Blacky
It all looks good. When you close the door and your door sensor goes OFF for 10 seconds is your motion sensor ON?
Is there a delay for you door sensor or is it instant?
Did you reload the templates or restart your HA after you made the changes?
Blacky