diff --git a/docs/docs/configuration/birdseye.md b/docs/docs/configuration/birdseye.md index 0b54a5f5f..3ff66bd22 100644 --- a/docs/docs/configuration/birdseye.md +++ b/docs/docs/configuration/birdseye.md @@ -33,3 +33,27 @@ cameras: birdseye: enabled: False ``` + +### Sorting cameras in the Birdseye view + +It is possible to override the order of cameras that are being shown in the Birdseye view. +The order needs to be set at the camera level. + +```yaml +# Include all cameras by default in Birdseye view +birdseye: + enabled: True + mode: continuous + +cameras: + front: + # Only include the "front" camera in Birdseye view when objects are detected + birdseye: + order: 1 + back: + # Exclude the "back" camera from Birdseye view + birdseye: + order: 2 +``` + +*Note*: Cameras are sorted by default using their name to ensure a constant view inside Birdseye.