Skip to content

Commit

Permalink
HG06106C Livarno Lux E27 bulb RGB does not support enhancedHue (#2445)
Browse files Browse the repository at this point in the history
As discovered in Koenkk/zigbee2mqtt#6921 these bulbs do not support enhancedHue.

- [x] Update the saveClusterAttributeKeyValue (Wy are we even setting this if we can't read it?)
- [x] Mark enhacedHue as not support in meta
  • Loading branch information
sjorge authored Apr 4, 2021
1 parent 05f1646 commit 513b36d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions devices.js
Original file line number Diff line number Diff line change
Expand Up @@ -17147,9 +17147,9 @@ const devices = [
vendor: 'Lidl',
description: 'Livarno Lux E27 bulb RGB',
...preset.light_onoff_brightness_colortemp_color({disableColorTempStartup: true}),
meta: {applyRedFix: true, configureKey: 1},
meta: {applyRedFix: true, enhancedHue: false, configureKey: 2},
configure: async (device, coordinatorEndpoint, logger) => {
device.getEndpoint(1).saveClusterAttributeKeyValue('lightingColorCtrl', {colorCapabilities: 31});
device.getEndpoint(1).saveClusterAttributeKeyValue('lightingColorCtrl', {colorCapabilities: 29});
},
},
{
Expand Down

0 comments on commit 513b36d

Please sign in to comment.