Extend smartcam detection support (#1552)

New detection added with tests:

- bark detection
- glass detection
- line crossing detection
- meow detection
- vehicle detection
This commit is contained in:
Gabriele Pongelli
2025-08-25 15:20:33 +02:00
committed by GitHub
parent e21ab90e96
commit 0cd0434160
23 changed files with 1549 additions and 379 deletions

View File

@@ -1,6 +1,7 @@
"""Package for supporting tapo-branded cameras."""
from .detectionmodule import DetectionModule
from .smartcamchild import SmartCamChild
from .smartcamdevice import SmartCamDevice
__all__ = ["SmartCamDevice", "SmartCamChild"]
__all__ = ["SmartCamDevice", "SmartCamChild", "DetectionModule"]