-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lidl 14153905L, light temperature too cold #17074
Comments
Please add the color temperature range as described on https://www.zigbee2mqtt.io/advanced/support-new-devices/01_support_new_devices.html#_3-adding-converter-s-for-your-device |
Ok, works now as expected. 14153905L.js
|
Thanks, integrated the fix! Changes will be available in the dev branch in a few hours from now. (https://www.zigbee2mqtt.io/advanced/more/switch-to-dev-branch.html) |
Hi, I was about to report that the color values are off on my lamp: warmest actually outputs a cold white. Until I've realised that I have a slightly different model:
I'd be happy to contribute to the correct config. but the operation for the physical values fails:
any hint on how to proceed? |
What happened?
Hi,
please change the light color from 133 to 500 instead of 333.
Light is capable of having color temperature from 3000K to 6500K.
existing device:
{
fingerprint: [{modelID: 'TS0502A', manufacturerName: '_TZ3000_8uaoilu9'}],
model: '14153905L',
vendor: 'Lidl',
description: 'Livarno Home LED floor lamp',
extend: tuya.extend.light_onoff_brightness_colortemp({colorTempRange: [153, 333], noConfigure: true}),
configure: async (device, coordinatorEndpoint, logger) => {
device.getEndpoint(1).saveClusterAttributeKeyValue('lightingColorCtrl', {colorCapabilities: 16});
},
change to:
{
fingerprint: [{modelID: 'TS0502A', manufacturerName: '_TZ3000_8uaoilu9'}],
model: '14153905L',
vendor: 'Lidl',
description: 'Livarno Home LED floor lamp',
extend: tuya.extend.light_onoff_brightness_colortemp({colorTempRange: [153, 500], noConfigure: true}),
configure: async (device, coordinatorEndpoint, logger) => {
device.getEndpoint(1).saveClusterAttributeKeyValue('lightingColorCtrl', {colorCapabilities: 16});
},
What did you expect to happen?
Light color should be more than 333 in zigbee2mqtt web interface.
How to reproduce it (minimal and precise)
No response
Zigbee2MQTT version
1.30.2
Adapter firmware version
20221226
Adapter
Sonoff USB Stick
Debug log
No response
The text was updated successfully, but these errors were encountered: