From 5f88d848d3a0bb1d80695ad9b43b50a06032e1ec Mon Sep 17 00:00:00 2001 From: David Pfeffer Date: Sat, 21 Jun 2025 08:43:00 -0400 Subject: [PATCH] Remove duplicate section This section appears twice with a different name. --- docs/docs/configuration/zones.md | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/docs/docs/configuration/zones.md b/docs/docs/configuration/zones.md index aef6b0a5b..328d3f0c2 100644 --- a/docs/docs/configuration/zones.md +++ b/docs/docs/configuration/zones.md @@ -121,17 +121,3 @@ cameras: objects: - car ``` - -### Loitering Time - -Zones support a `loitering_time` configuration which can be used to only consider an object as part of a zone if they loiter in the zone for the specified number of seconds. This can be used, for example, to create alerts for cars that stop on the street but not cars that just drive past your camera. - -```yaml -cameras: - name_of_your_camera: - zones: - front_yard: - loitering_time: 5 # unit is in seconds - objects: - - person -```