From 73d7476bed8992265204ba7f5bd916f9247171b8 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Fri, 15 Mar 2024 11:36:37 -0600 Subject: [PATCH] Update reference config with new config values --- docs/docs/configuration/reference.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/docs/docs/configuration/reference.md b/docs/docs/configuration/reference.md index 5f89eddb7..e97439dee 100644 --- a/docs/docs/configuration/reference.md +++ b/docs/docs/configuration/reference.md @@ -231,6 +231,10 @@ detect: # Optional: Object configuration # NOTE: Can be overridden at the camera level objects: + # Optional: list of objects that cause an event to be marked as an alert (default: shown below) + alert: + - car + - person # Optional: list of objects to track from labelmap.txt (default: shown below) track: - person @@ -653,4 +657,19 @@ telemetry: # Optional: Enable the latest version outbound check (default: shown below) # NOTE: If you use the HomeAssistant integration, disabling this will prevent it from reporting new versions version_check: True + +# Optional: Camera groups (default: no groups are setup) +# NOTE: It is recommended to use the UI to setup camera groups +camera_groups: + # Required: Name of camera group + front: + # Required: list of cameras in the group + cameras: + - front_cam + - side_cam + - front_doorbell_cam + # Required: icon used for group + icon: car + # Required: index of this group + order: 0 ```