Add smartcam pet detection toggle module (#1465)

This commit is contained in:
DawidPietrykowski
2025-01-18 13:58:26 +01:00
committed by GitHub
parent 980f6a38ca
commit fd6067e5a0
4 changed files with 99 additions and 0 deletions

View File

@@ -26,6 +26,9 @@ class SmartCamModule(SmartModule):
SmartCamPersonDetection: Final[ModuleName[modules.PersonDetection]] = ModuleName(
"PersonDetection"
)
SmartCamPetDetection: Final[ModuleName[modules.PetDetection]] = ModuleName(
"PetDetection"
)
SmartCamTamperDetection: Final[ModuleName[modules.TamperDetection]] = ModuleName(
"TamperDetection"
)