and then that calendar will automatically show up in HA (afer 15 minutes or after a reload of the Google Calendar Integration).
When you upload that yearly garbage schedule, do that in the Garbage Pickup calendar as a all-day event, and voila !! Now you can create the desired automation with the Garbage Pickup calendar as trigger, using the appropriate time offset.
(*) In this example Casa Aventura is the Google Calendar used for the HA Integration and the Garbage Pickup calendar is basically a sub-calendar that will show automatically in HA.
First of all, thank you very much for your blueprints. - they help people like me a lot who arenât quite good at juggling code yet.
I am currently using the blueprint for my garbage collection. - Now that Iâve finally figured out where to find the action buttons, the whole thing is a bit too fiddly for me. At least it often happens to me that the whole notification is gone. Unfortunately, from this moment on, Iâm stuck in an automation process that I can no longer complete in a meaningful way.
So I trigger 8 hours before the calendar event and notify myself and my friends on my cell phone first. If one of the two of us uses the button to indicate that he has taken the bin to the street, everything is done.
If this doesnât happen, after three hours the HomePod should ask the hallway to take the bin out to the street every 30 minutes. - and that until that happened.
So I canât choose any auto action because I want to keep annoying myself until the garbage can is actually on the street.
But if I have lost or closed the notification, what is the most user-friendly alternative to the action button? Is it possible to use an input_bool as an alternative? That could be âeverythingâ without me even having to pick up my cell phone when the HomePod and my wife are screaming at me.
In the future, I can also imagine that the âBin at the streetâ entity will be switched, for example, by a device tracker attached to the garbage can.
Do you understand what I mean, or am I still so clueless that I just donât recognize the obvious solutions yet?
Of course, everyone else can help me too - thank you in advance.
It will send you a reminder once but not every 30 min and currently there are no action buttons for the reminder. So it is best to then call a script in the action.
In your actions you will need to call service / and script turn on. So when it times out after 30 min after doing nothing the action happens and then calls your script annoying you until it is done.
The script / blueprint I recommend for this is below. It is nicely done, easy to follow and the developer @samuelthng supports it to date if you have any questions regarding his blueprint. Link is below.
Thank you so much for sharing this blueprint, Iâm still learning and this is so helpful!
Iâm struggling to get one of my notifications to work⌠I set up a reminder for every birthday. It works great, except when there is more than one birthday on a day⌠they are separate calendar entries, but I only get one notification. Iâm sure itâs user error, just canât figure out what Iâm doing wrong.
Thanks for this blueprint, it helped me a lot!
I want to close the notification when I press an action. Is there a way to add a tag to the notification? So I can send a âclear_notificationâ as an action on the button?
The cancel button also doesnât seem to close the notification, but possibly Iâm doing something wrong.
This is the information in the docs for Android.
When a notification is cleared Android will notify the Companion app of the event. A notification is considered cleared if you either manually swipe it away from the notification status bar or if you click on the Clear All button.
I saw that also on the documentation, but that didnât look correct.
On Android it can be cleared with a tag. I made an example that clears the notification after 30 seconds (But in my case I would perform that as an action when the button is pressed).
alias: Notification Test
description: ââ
trigger:
condition:
action:
service: notify.mobile_app_home_samsung_s21
metadata: {}
data:
title: Test
message: Test notification
data:
tag: testnotificatie
actions:
- action: URI
title: Open Url
uri: https://google.com
So for it to work on Android, the cancel-button would have to send the clear_notification - message with the tag (or just be invisible so one of the action buttons can be setup for it).
Is there a way I can configure this to send me a notification for each event on that particular day, at a particular time?
For example, letâs say I have 3 events today and at 10h00 I would receive 3 different notifications, or even a single notification with all relevant information.
Yes you can do this. It is really up to you if you would like to use key word or on every calendar event. If you use key word you can have one automation an you may choose your key word to be @notifications and use the same key word in the events you would like to be notified of or you can use multiple automation and or different key words it is totally up to you.
Please note that I do have an item on my list to look at calendar events at the same time only sending the first event. So for now you may have to adjust the time of the events to be slightly different.
Can you add a trigger key word option is similar to âdonât use key wordâ but will trigger on ANY word EXCEPT a string I specify? Basically âAlways trigger except for âkey wordâ in calendarâ.
My use case: Fantastical for Mac leaves events on my calendar that are âcancelledâ. They show up as âCancelled:â. I want your automation to trigger in ALL events EXCEPT for the ones that start with âCancelled:â in them.
First thanks for the nice blueprint!!
Is it also possible to use multiple keywords for searching?
It would be nice if you can dynamically set the temperature based on the keyword. For example if the keyword is temp17 set the temperature to 17 degrees and if the keyword is temp19 set the temperature to 19 degrees. In my opinion you now have to make to separate automations or am I wrong?