Skip to content
Discussion options

You must be logged in to vote

(1), (2), (3)

Based on your configuration, you're tracking multiple object types (person, car, bicycle, motorcycle, dog, cat, face) but only want recordings for person objects(3). The issue is that your review configuration only restricts detections to the Driveway zone, but doesn't limit which object types trigger recordings(2).

To record only person objects, you need to configure your review section to specify which labels qualify as alerts and detections. Here's what you should modify in your config:

doorbell:
  review:
    alerts:
      labels:
        - person
      required_zones:
        - Driveway
    detections:
      labels:
        - person
      required_zones:
        - Driveway

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by championc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment