File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ class PhilipsWallSwitchRemoteCluster(PhilipsRemoteCluster):
88
88
89
89
90
90
class PhilipsWallSwitch (CustomDevice ):
91
- """Philips RDM001 or RDM004 device."""
91
+ """Philips RDM001 or RDM004 device using old firmware ."""
92
92
93
93
signature = {
94
94
# <SimpleDescriptor endpoint=1 profile=260 device_type=2080
@@ -149,11 +149,16 @@ class PhilipsWallSwitch(CustomDevice):
149
149
)
150
150
151
151
152
- class PhilipsWallSwitchRDM004 (CustomDevice ):
153
- """Philips RDM004 variant ."""
152
+ class PhilipsWallSwitchNewFirmware (CustomDevice ):
153
+ """Philips RDM001 or RDM004 device using new firmware ."""
154
154
155
155
signature = {
156
- MODELS_INFO : [(SIGNIFY , "RDM004" )],
156
+ MODELS_INFO : [
157
+ (PHILIPS , "RDM001" ),
158
+ (SIGNIFY , "RDM001" ),
159
+ (PHILIPS , "RDM004" ), # likely not needed
160
+ (SIGNIFY , "RDM004" ),
161
+ ],
157
162
ENDPOINTS : {
158
163
1 : {
159
164
PROFILE_ID : zha .PROFILE_ID ,
You can’t perform that action at this time.
0 commit comments