πŸ“† Calendar Notifications & Actions

@Grunorr

I added 3 calendar events in. One with Blocked, another one with Auto-Blocked and another one with just some text Working well. I used your YAML only changing the calendar used, offsets and I turned ON / OFF a different switch.

The only notification I got was the one that had Working well the other 2 calendar events were stopped on the condition.

Remember it is case sensitive. Example; it must be Blocked not blocked

Blacky :grinning:

Hello all,

Could someone take a look at what I have created below to see if there are any glaring issues:

The part that I am somewhat concerned won’t work is the additional action I added to get a notification across the smart speakers in the house. The script I have called out with the arguments I have listed works in other automations but I wasn’t sure if it was ok to use it in this aspect here.

Also, is there a way to use this (the text that is being represented by this code): {{ trigger.calendar_event.summary }}

i.e. what is contained inside of that code (the title of the calendar event and have it said by the smart speaker rather than having to hardcode the text I would like said (shown below in the speech_message area)

alias: Calendar Notifications & Actions- Nail Trim
description: ""
use_blueprint:
  path: Blackshome/calendar-notifications-and-actions.yaml
  input:
    calendar: calendar.placeholder_gmail_com
    start_calendar_offset:
      hours: 0
      minutes: 30
      seconds: 0
      days: 0
    calendar_trigger: "@Nail"
    include_start_notify: enable_start_notify_options
    start_notify_device:
      - bd1204963b0f5db08dcb3d33ef2ba626
    include_start_action_buttons: []
    include_start_auto_actions:
      - enable_start_action_1
    start_action_1:
      - if:
          - condition: state
            entity_id: input_boolean.audible_notifications
            state: "on"
        then:
          - action: script.status_annc
            data:
              who: null
              call_interruption: 1
              speech_message: The Dogs Nail Trim Appointment is in thirty minutes.

Hello,
Maybe I am missing, but I can not find iOS critical notification sound level. Main reason always on top notification with no sound.

First things first, this blueprint is really great work, it has all features I can imagine.
I downloaded version 2.0 and tried to notify my Android mobile, but without success. Problem is, from my point of view, the push line in data section:

domain: notify
  service: mobile_app_fp4
  service_data:
    title: MΓΌll
    message: Gelber Sack muss rausgestellt werden !
    data:
      push:
        interruption-level: active
      actions:
        - action: BUTTON_1_01K9AA77614PB9TVDT3BZ2B46P
          title: Gelber Sack rausgestellt ?
        - action: BUTTON_STOP_01K9AA77614PB9TVDT3BZ2B46P
          title: []

As I could not get rid of interruption-level (even if you delete dropdown box, it defaults to active), I tweaked the blueprint a little bit, line 710:

default: []

Now it works :sunglasses:

What do you think ?