Hi All.
I’m trying to make a binary sensor helper from calendar entries.
What I’m looking to do (and is partially working ) is create 3 binary sensors that change state when a calendar entry is active but all sensors are triggering at the same time.
I’ve created 3 Template helper binary sensors. Orange, Black and Blue to track which rubbish bin is due for collection.
The binary sensor triggers from the calendar and resets after the event but all three trigger regardless of what the calendar entry is.
Here’s what I have which seems to ignore the calendar summary and trigger all.
binary_sensor.black
with template {{ states('calendar.house', 'Black bin') }}
binary_sensor.blue
- {{ states('calendar.house', 'Blue bin') }}
binary_sensor.orange
- {{ states('calendar.house', 'Orange bin') }}
What am I missing to specify a trigger from a specific event name?
Thanks