Skip to content

Commit

Permalink
Fixed issue where outdoor cameras weren't being processed [Closes #16]
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaun Tarves committed May 11, 2021
1 parent 873c204 commit 0f3feed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion wyze_sdk/models/devices/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,15 @@ class DeviceModels(object):
CAMERA_V1 = ['WYZEC1']
CAMERA_V2 = ['WYZEC1-JZ']
CAMERA_V3 = ['WYZE_CAKP2JFUS']
CAMERA_OUTDOOR = ['WVOD1']

LOCK = ['YD.LO1']
LOCK_GATEWAY = ['YD.GW1']
THERMOSTAT = ['CO_EA1']
CONTACT_SENSOR = ['DWS3U']
MOTION_SENSOR = ['PIR3U']
VACUUM = ['JA_RO2']
CAMERA = CAMERA_V1 + CAMERA_V2 + CAMERA_V3
CAMERA = CAMERA_V1 + CAMERA_V2 + CAMERA_V3 + CAMERA_OUTDOOR
SCALE = ['JA.SC', 'JA.SC2']
WATCH = ['RA.WP1', 'RY.WA1']
BAND = ['RY.HP1']
Expand Down
2 changes: 1 addition & 1 deletion wyze_sdk/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.1.2"
__version__ = "1.1.3"

0 comments on commit 0f3feed

Please sign in to comment.