Skip to content

Commit

Permalink
fix: Fix red color not working for Paulmann 500.4X Koenkk/zigbee2mqtt…
Browse files Browse the repository at this point in the history
  • Loading branch information
Koenkk committed May 19, 2024
1 parent 4f0a38c commit 588b035
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/devices/paulmann.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,14 @@ const definitions: Definition[] = [
model: '500.47',
vendor: 'Paulmann',
description: 'SmartHome Zigbee MaxLED RGBW controller max. 72W 24V DC',
extend: [light({colorTemp: {range: undefined}, color: {modes: ['xy', 'hs']}})],
extend: [light({colorTemp: {range: undefined}, color: {modes: ['xy', 'hs'], applyRedFix: true}})],
},
{
zigbeeModel: ['RGBW light', '500.49', 'RGBW_light'],
model: '50049/500.63',
vendor: 'Paulmann',
description: 'Smart Home Zigbee YourLED RGB Controller max. 60W / Smart Home Zigbee LED Reflektor 3,5W GU10 RGBW dimmbar',
extend: [light({colorTemp: {range: undefined}, color: {modes: ['xy', 'hs']}})],
extend: [light({colorTemp: {range: undefined}, color: {modes: ['xy', 'hs'], applyRedFix: true}})],
},
{
zigbeeModel: ['RGBCW_LIGHT'],
Expand Down Expand Up @@ -157,21 +157,21 @@ const definitions: Definition[] = [
model: '500.44',
vendor: 'Paulmann',
description: 'URail power supply',
extend: [light({color: true})],
extend: [light({color: {applyRedFix: true}})],
},
{
zigbeeModel: ['500.45'],
model: '500.45',
vendor: 'Paulmann',
description: 'SmartHome Zigbee Pendulum Light Aptare',
extend: [light()],
extend: [light({color: {applyRedFix: true}})],
},
{
zigbeeModel: ['500.48'],
model: '500.48',
vendor: 'Paulmann',
description: 'SmartHome Zigbee YourLED dim/switch controller max. 60 W',
extend: [light()],
extend: [light({color: {applyRedFix: true}})],
},
{
fingerprint: [{manufacturerName: 'Paulmann Licht GmbH', modelID: 'Dimmable'}],
Expand Down

0 comments on commit 588b035

Please sign in to comment.