diff --git a/custom_components/aarlo/pyaarlo/camera.py b/custom_components/aarlo/pyaarlo/camera.py index 2679b732..55b465af 100644 --- a/custom_components/aarlo/pyaarlo/camera.py +++ b/custom_components/aarlo/pyaarlo/camera.py @@ -353,7 +353,7 @@ def has_capability( self,cap ): if cap in ('temperature','humidity','air_quality','airQuality') and self.model_id == 'ABC1000': return True if cap in ( 'audio','audioDetected','sound' ): - if (self.model_id.startswith('VMC4030') or self.model_id == 'ABC1000'): + if (self.model_id.startswith('VMC4030') or self.model_id.startswith('VMC5040') or self.model_id == 'ABC1000'): return True if self.device_type.startswith('arloq'): return True