diff options
author | Daniel Høyer Iversen <mail@dahoiv.net> | 2018-03-31T13·56+0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-31T13·56+0200 |
commit | e9f4bb6372705045a723963f13ab51b585304b78 (patch) | |
tree | a6aa1121e2b381a1798b4a5ed31be6daf8093aac | |
parent | ed6cec9b7fae262f6de93dc49af8f0915cf323df (diff) | |
parent | 832a40c278c91cd0409dcc71fa2976bea37a25a4 (diff) |
Merge pull request #169 from ooo89/master
Add support for Clas Ohlsson OEM branded SP3
-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 6a6636d1a3ef..5dc29192c75e 100644 --- a/broadlink/__init__.py +++ b/broadlink/__init__.py @@ -24,6 +24,8 @@ def gendevice(devtype, host, mac): return sp2(host=host, mac=mac, devtype=devtype) elif devtype == 0x753e: # SP3 return sp2(host=host, mac=mac, devtype=devtype) + elif devtype == 0x7D00: # OEM branded SP3 + return sp2(host=host, mac=mac, devtype=devtype) elif devtype == 0x947a or devtype == 0x9479: # SP3S return sp2(host=host, mac=mac, devtype=devtype) elif devtype == 0x2728: # SPMini2 |