Ring Motion "Event" create Binary Sensor

Don’t confuse an Event trigger with an Event entity. You have an Event entity, all you need to do is use a State trigger to monitor that entity.

#template:
- trigger:
    - trigger: state
      entity_id: event.downstairs_motion
      not_from:
        - unknown
        - unavailable
  binary_sensor:
    - name: Downstairs Motion Detected
      auto_off: 15
      state: "true"
2 Likes