diff options
Diffstat (limited to 'broadlink/__init__.py')
-rw-r--r-- | broadlink/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/broadlink/__init__.py b/broadlink/__init__.py index f17eabb3798f..eb945a7d96fe 100644 --- a/broadlink/__init__.py +++ b/broadlink/__init__.py @@ -23,6 +23,8 @@ def gendevice(devtype, host, mac): return sp2(host=host, mac=mac) elif devtype == 0x753e: # SP3 return sp2(host=host, mac=mac) + elif devtype == 0x947a or devtype == 0x9479: # SP3S + return sp2(host=host, mac=mac) elif devtype == 0x2728: # SPMini2 return sp2(host=host, mac=mac) elif devtype == 0x2733 or devtype == 0x273e: # OEM branded SPMini |