Skip to content

Commit

Permalink
fix(detect): Detect RGBWW Lighting as 511.050 (#7369)
Browse files Browse the repository at this point in the history
* Add RGBWW Lighting model to 511.050

* Use fingerprints
  • Loading branch information
mrskycriper authored Apr 8, 2024
1 parent 2e9def2 commit 15682b8
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions src/devices/iluminize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,22 @@ const definitions: Definition[] = [
extend: [onOff()],
},
{
zigbeeModel: ['511.050'],
fingerprint: [
{modelID: '511.050'},
{modelID: 'RGBWW Lighting', manufacturerName: 'Iluminize'},
],
model: '511.050',
vendor: 'Iluminize',
description: 'Zigbee 3.0 LED controller for 5in1 RGB+CCT LEDs',
extend: [light({colorTemp: {range: [155, 450]}, color: true})],
},
{
zigbeeModel: ['DIM Lighting'],
fingerprint: [
{modelID: 'DIM Lighting', manufacturerName: 'Iluminize'},
],
model: '511.10',
vendor: 'Iluminize',
description: 'Zigbee LED-Controller ',
description: 'Zigbee LED-Controller',
extend: [light()],
},
{
Expand Down Expand Up @@ -127,7 +132,10 @@ const definitions: Definition[] = [
exposes: [e.action(['off', 'on', 'color_temperature_move', 'color_move'])],
},
{
zigbeeModel: ['RGBW-CCT', '511.040'],
fingerprint: [
{modelID: '511.040'},
{modelID: 'RGBW-CCT', manufacturerName: 'Iluminize'},
],
model: '511.040',
vendor: 'Iluminize',
description: 'ZigBee 3.0 LED-controller, 4 channel 5A, RGBW LED',
Expand Down

0 comments on commit 15682b8

Please sign in to comment.