Skip to content

Commit

Permalink
added basic Ultra support
Browse files Browse the repository at this point in the history
  • Loading branch information
twrecked committed Aug 19, 2019
1 parent 1953b21 commit 9ab4ff2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/aarlo/pyaarlo/camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9ab4ff2

Please sign in to comment.