I partially figured this out, but I am still not seeing events in the event listener until I put the correct event in an automation. For me, the correct trigger was.
triggers:
- trigger: event
event_type: doorbird_doorstation_1ccae372e5a1_doorbell
so I was missing doorbird at the front.
Original message:
When my doorbird is rung, the ring event appears under the doorbell entity:
so HA is clearly communicating with doorbird and the events are reaching HA.
But I don’t see an event under the cool trick of listening to * in Dev Tools/Events and can’t get an automation to fire. (Here is the code I’m using:
alias: Notify_Doorbell
description: ""
triggers:
- trigger: event
event_type: event.doorstation_1ccae372e5a1_doorbell
- trigger: state
entity_id:
- event.doorstation_1ccae372e5a1_doorbell
attribute: event_type
to: ring
actions:
- action: notify.persistent_notification
metadata: {}
data:
message: Doorbell ringing
title: Doorbell ringing
mode: single
type or paste code here
I created a specific user for HA in Doorbird and I can see that two HTTP connections were created. These have tokens but I think the integration uses the token. I am at a loss because the events appear under the entity, pretty much instantly, but no events are fired.