diff options
author | Steven Barthen <Nightreaver.b@gmail.com> | 2018-03-10T12·10+0900 |
---|---|---|
committer | Steven Barthen <Nightreaver.b@gmail.com> | 2018-03-10T12·10+0900 |
commit | d186332b965c32a7f6defd4eb340b46901d99c82 (patch) | |
tree | 9aad962bd53ee0ab10bfc2761b94e55c1cadde96 | |
parent | dd0e9083172d1ee54eec167d342edb3b157aea4c (diff) |
add new rmpro models - Pro Plus 3, Pro Plus 300, Pro Plus HYC, Pro Plus R1, Pro PP
-rw-r--r-- | broadlink/__init__.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/broadlink/__init__.py b/broadlink/__init__.py index dbabce0b3494..f85d4e14932d 100644 --- a/broadlink/__init__.py +++ b/broadlink/__init__.py @@ -48,8 +48,18 @@ def gendevice(devtype, host, mac): return rm(host=host, mac=mac) elif devtype == 0x2787: # RM2 Pro Plus2 return rm(host=host, mac=mac) + elif devtype == 0x279d: # RM2 Pro Plus3 + return rm(host=host, mac=mac) + elif devtype == 0x27a9: # RM2 Pro Plus_300 + return rm(host=host, mac=mac) elif devtype == 0x278b: # RM2 Pro Plus BL return rm(host=host, mac=mac) + elif devtype == 0x2797: # RM2 Pro Plus HYC + return rm(host=host, mac=mac) + elif devtype == 0x27a1: # RM2 Pro Plus R1 + return rm(host=host, mac=mac) + elif devtype == 0x27a6: # RM2 Pro PP + return rm(host=host, mac=mac) elif devtype == 0x278f: # RM Mini Shate return rm(host=host, mac=mac) elif devtype == 0x2714: # A1 |