I asked the Google Calendar developer a question on how to create a sensor that I can see in HA that shows the status (ON/OFF) of a calendar event that happens tomorrow.
He kindly responded with a configuration, but I am too much of a novice to understand.
This is his suggestion
*- trigger:*
* - platform: calendar*
* event: start*
* entity_id: calendar.local_automation_schedule*
* offset: "-24:00:00"*
* - platform: calendar*
* event: end*
* entity_id: calendar.local_automation_schedule*
* offset: "-24:00:00"*
* binary_sensor:*
* - name: Trash Pickup Tomorrow*
* state: "{{ iif('Trash' in trigger.calendar_event.summary, iif(trigger.event == 'start', 'on', 'off'), states('binary_sensor.trash_pickup_tomorrow')) }}"*
If my calendar is named “radio breakfast”, how would I change his suggestion ?
THANKS