diff --git a/custom_components/dahua/__init__.py b/custom_components/dahua/__init__.py index fc757df..90ef9c0 100755 --- a/custom_components/dahua/__init__.py +++ b/custom_components/dahua/__init__.py @@ -538,8 +538,9 @@ def supports_security_light(self) -> bool: """ Returns true if this camera has the red/blue flashing security light feature. For example, the IPC-HDW3849HP-AS-PV does https://dahuawiki.com/Template:NameConvention + Addressed issue https://github.com/rroller/dahua/pull/405 """ - return "-AS-PV" in self.model or self.model == "AD410" + return "-AS-PV" in self.model or self.model == "AD410" or self.model.startswith("IP8M-2796E") def is_doorbell(self) -> bool: """ Returns true if this is a doorbell (VTO) """