Hi,
I have a problem with the calendar, the calendar works but only shows 1 event/message. Only “Plastic” instead of Plastic, Mixed, Glass, etc.
Displays yes, this is not correct:
Check the calendar for what they’re taking tomorrow and prepare your trash. Hold down to enter the calendar. Plastic
That would be correct:
Check the calendar for what they’re taking tomorrow and prepare your trash. Hold down to enter the calendar. Plastic, Mixed, Glass
Code:
- alias: waste_collection_nova
id: '29382392022850'
mode: single
max_exceeded: silent
trigger:
- platform: calendar
event: start
entity_id: calendar.garbage_nova
offset: "-16:00:00"
- platform: calendar
event: start
entity_id: calendar.garbage_nova
offset: "-5:00:00"
action:
- service: notify.all_devices
data:
title: >
{{ '\u267B' }} Garbage on Nova tomorrow
message: Check the calendar for what they're taking tomorrow and prepare your trash. Hold down to enter the calendar. {{ state_attr('calendar.garbage_nova', 'message') | replace (' Nova', '') }}
data:
# iOS URL
url: "/calendar"
# Android URL
clickAction: "/calendar"
sticky: "true"
- delay:
seconds: 5
There are 4 messages in the calendar, and on the notification it shows only Plastic. How should I do it?
{{ state_attr(‘calendar.garbage_nova’, ‘message’) }}
x4?