Koenkk / zigbee2mqtt

Zigbee 🐝 to MQTT bridge πŸŒ‰, get rid of your proprietary Zigbee bridges πŸ”¨
https://www.zigbee2mqtt.io
GNU General Public License v3.0
11.76k stars 1.64k forks source link

[New device support]: lumi.light.acn132 Aqara Smart Light STRIP RGB/W #18471

Open MiAutomations opened 1 year ago

MiAutomations commented 1 year ago

Link

https://www.aqara.cn/LED-Strip-T1_overview

Database entry

{"id":61,"type":"Router","ieeeAddr":"0x54ef4410008c1c76","nwkAddr":44031,"manufId":4447,"manufName":"Aqara","powerSource":"DC Source","modelId":"lumi.light.acn132","epList":[1],"endpoints":{"1":{"profId":260,"epId":1,"devId":258,"inClusterList":[5,4,3,0,768,8,6,64704],"outClusterList":[25,10],"clusters":{"genBasic":{"attributes":{"manufacturerName":"Aqara","powerSource":4,"zclVersion":3,"appVersion":26,"stackVersion":27,"hwVersion":1,"dateCode":"20230506","modelId":"lumi.light.acn132"}},"aqaraOpple":{"attributes":{"238":6682,"247":{"type":"Buffer","data":[109,32,0,110,32,2,113,32,1,114,32,10,116,32,2]},"1301":1,"1302":100}}},"binds":[],"configuredReportings":[],"meta":{}}},"appVersion":26,"stackVersion":27,"hwVersion":1,"dateCode":"20230506","zclVersion":3,"interviewCompleted":true,"meta":{},"lastSeen":1690810124380,"defaultSendRequestWhen":"immediate"}

Comments

I'm using the last version of the Z2M and the device is not supported yet

Can you please add this device to be available in the next releases ?

I also try to get the Supported color modes and Color temperature range, but without success sorry

Error 2023-07-31 14:42:46Publish 'set' 'read' to '0x54ef4410008c1c76' failed: 'Error: Read 0x54ef4410008c1c76/1 lightingColorCtrl(["colorTemperature"], {"sendWhen":"immediate","timeout":10000,"disableResponse":false,"disableRecovery":false,"disableDefaultResponse":true,"direction":0,"srcEndpoint":null,"reservedBits":0,"manufacturerCode":null,"transactionSequenceNumber":null,"writeUndiv":false}) failed (Data request failed with error: 'MAC channel access failure' (225))'

Thank you for your support and best regards

External converter

No response

Supported color modes

No response

Color temperature range

No response

FabienVINCENT commented 1 year ago

Has anyone successfully configured it?

I try this but don't know what to setup

const fz = require('zigbee-herdsman-converters/converters/fromZigbee');
const tz = require('zigbee-herdsman-converters/converters/toZigbee');
const exposes = require('zigbee-herdsman-converters/lib/exposes');
const reporting = require('zigbee-herdsman-converters/lib/reporting');
const extend = require('zigbee-herdsman-converters/lib/extend');
const e = exposes.presets;
const ea = exposes.access;

const definition = {
    zigbeeModel: ['lumi.light.acn132'], // The model ID from: Device with modelID 'lumi.sens' is not supported.
    model: 'RLS-K01D', // Vendor model number, look on the device for a model number
    vendor: 'Aqara', // Vendor of the device (only used for documentation and startup logging)
    description: 'ZIGBEE 3.0 LED STRIP T1', // Description of the device, copy from vendor site. (only used for docume>
    fromZigbee: [], // We will add this later
    toZigbee: [], // Should be empty, unless device can be controlled (e.g. lights, switches).
    extend: extend.light_onoff_brightness_colortemp_color(),
    exposes: [], // Defines what this device exposes, used for e.g. Home Assistant discovery and in the frontend
};

module.exports = definition;
markus-barta commented 1 year ago

I've got my hands on the Aqara Smart Light STRIP as well! 🌈 Would love to see support for this amazing ledstrip!

A massive shoutout to the Zigbee2MQTT-team! πŸŽ‰ Your dedication and hard work never cease to inspire 🌟!

FabienVINCENT commented 1 year ago

This work for me at the moment but not fully compatible

const fz = require('zigbee-herdsman-converters/converters/fromZigbee');
const tz = require('zigbee-herdsman-converters/converters/toZigbee');
const exposes = require('zigbee-herdsman-converters/lib/exposes');
const reporting = require('zigbee-herdsman-converters/lib/reporting');
const extend = require('zigbee-herdsman-converters/lib/extend');
const e = exposes.presets;
const ea = exposes.access;
const ota = require('zigbee-herdsman-converters/lib/ota');

const definition = {
    zigbeeModel: ['lumi.light.acn132'],
    model: 'RLS-K01D',
    vendor: 'Aqara',
    description: 'ZIGBEE 3.0 LED STRIP T1', 
    extend: extend.light_onoff_brightness_colortemp_color({
    disableEffect: true, disablePowerOnBehavior: true, disableColorTempStartup: true, colorTempRange: [153, 370]}),
    ota: ota.zigbeeOTA,
};

module.exports = definition;
Koenkk commented 1 year ago

@FabienVINCENT this looks good, what is not working?

FabienVINCENT commented 1 year ago

the strip led allows to have several colors at the same time and it is not possible for the moment

markus-barta commented 1 year ago

@FabienVINCENT thanks for the contribution - I can confirm this external converter works well for the basic stuff πŸŽ‰ (FYI: @Koenkk).

Would love to see segment support in the future! πŸ€—

Koenkk commented 1 year ago

Thanks @FabienVINCENT, I added the device for out-of-the-box-support.

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)

MiAutomations commented 1 year ago

Thank you all for your work and support

robinbohnen commented 1 year ago

Great work! Only extensions won't work yet (only the base 2m works) and color-segments don't work yet.

iamandymcinnes commented 11 months ago

Hi good job getting this added so quickly, really pleased I can at least control my led strip in HA without having to get an Aqara hub! Just wondered do you think it will be possible to add the segment control support, I'm not entirely clued up on how features like that get support in zigbee2mqtt?

ZenoBell commented 11 months ago

wow fantastic job guys ! i just configured mine as well and works out of the box ! Hoping to see the color segmentation and extension support added in the future! For now you can just use the button in the controller to light up the entire lighstrip along with the extension ! Thanx once more zigbee2mqtt team !

Finnlife commented 11 months ago

Did some of you had the issue that the Strip is never being found by z2m. No interview no log nothing. Did yall do something special to pair it? If not, what zigbeechannels and zigbeesticks do you use.

PulsarFX commented 10 months ago

Did some of you had the issue that the Strip is never being found by z2m. No interview no log nothing. Did yall do something special to pair it? If not, what zigbeechannels and zigbeesticks do you use.

Try to put z2m into join mode. then on the strip, press and hold the power switch for 4s. It will start blinking and z2m should list it short after that.

Finnlife commented 10 months ago

Did some of you had the issue that the Strip is never being found by z2m. No interview no log nothing. Did yall do something special to pair it? If not, what zigbeechannels and zigbeesticks do you use.

Try to put z2m into join mode. then on the strip, press and hold the power switch for 4s. It will start blinking and z2m should list it short after that.

Thank you, i did that. The issue was my Conbee II Stick. The strip does not work with it on my end.

pitr12 commented 10 months ago

Is it somehow possible to make also extensions work? I need to make strip at least 5m long, but extensions work only with white color. RGB is not working with added extensions. Seems like we need to define strip length using app (but that requires Aqara hub). Is there some way how to make this work without hub?

robinbohnen commented 10 months ago

I have a hub; but even if you have configured it with the hub and disconnect and connect again with Zigbee2Mqtt it won't work.

Abadin commented 10 months ago

Just bought an extension kit only to find this post :-(

Finnlife commented 10 months ago

Seems like there are a couple of things that are not fully integrated. I think there is a way in the app to enable the Music sync, Default Animations and other stuff too.

el-0 commented 10 months ago

Today I added Aqara Zigbee 3.0 LED strip T1 (lumi.light.acn132) and it seems it does not support setting multiple colors in specific zones of the strip. (RGBIC) - I'm running Zigbee-herdsman-converters version 15.116.0

Is it possible to add this like it was added for the HUE gradient strip ? I ordered an Aquara HUB to do the sniffing of the required payloads and trying to figure out how it is controlled. (probably vendor specific like for HUE)

I will try to use this for personal use but I was wondering if I could contribute here to make it work generally ?

EDIT: Playing around with this solution I found too many limitations - especially with Home Assistant. The segments are limited to 10 - I will send the light strip and the bridge back and instead switch to WLED.

007Nev commented 9 months ago

For those who struggling with the extension kit with homeassistant, I’ve got a message from Aqara that you have to change the actual length of your led strip in your Aqara app.

Do I have to buy the Aqara hub? I’ve been using my Sonoff Zigbee 3.0 dongle plus+ quite long time and doing well with Aqara mostly but this led extension kit makes me sad…

Any thoughts or can anyone chnage the length in your Aqara app if you have the hub for me?

Thanks. Below pictures that I am having trouble with.

IMG_8485 IMG_8484

007Nev commented 9 months ago

FYI, here are the pictures of Aqara Led strip setting menu in its app. I don’t know why they put this kind of option tho.. OMG

Is this case closed? If not, I NEED YOUR HELP, @Koenkk , @FabienVINCENT !! :)

Best regards, 007NEV

IMG_8490 IMG_8491

Koenkk commented 9 months ago

More features will be supported in tomorrows new release (thanks to @kirovilya)

007Nev commented 9 months ago

More features will be supported in tomorrows new release (thanks to @kirovilya)

Is this issue solved on the next release, sir ? Thanks for your great work as always.

007Nev commented 9 months ago

Alright guys, as of 1st.DEC.2023, newly updated Z2M fixed the issue. Make sure to change the length of LED extension part correctly. Mine works great with all mixture of colors.

Cheers. Thanks for great work, @Koenkk.

ZenoBell commented 9 months ago

Tested as well with 1 m extension, works like charm ! Thanx guys !

JBGITHUB12 commented 9 months ago

Alright guys, as of 1st.DEC.2023, newly updated Z2M fixed the issue. Make sure to change the length of LED extension part correctly. Mine works great with all mixture of colors.

Cheers. Thanks for great work, @Koenkk.

Awesome, thanks so much for doing this works great and you get the chase effects

robinbohnen commented 9 months ago

Yeah great work, it works perfectly fine right now. The only thing I am missing is the gradient option.

Rhysgh commented 8 months ago

Awesome work here all involved.

I two would like to use segments/gradients without needing a hub if possible 🀞

CrazyThunderbird commented 8 months ago

Well sorry for digging in this thread but i have the issue since a few days, that it just cant switch colors!

I'm limited to warm or cold white, tried resetting the strip etc. nothing worked so far.

I think it happened after i made an OTA update atleast it told me one was available and now i tells me allways there's an update available

grafik grafik

Rhysgh commented 8 months ago

Well sorry for digging in this thread but i have the issue since a few days, that it just cant switch colors!

I'm limited to warm or cold white, tried resetting the strip etc. nothing worked so far.

I think it happened after i made an OTA update atleast it told me one was available and now i tells me allways there's an update available

grafik grafik

I also have this i set up new devices a few days ago and all was fine then suddenly the colour options vanished, i have been unable to manually change them either ( with call services)

3x1at1on commented 8 months ago

Well sorry for digging in this thread but i have the issue since a few days, that it just cant switch colors!

I'm limited to warm or cold white, tried resetting the strip etc. nothing worked so far.

I think it happened after i made an OTA update atleast it told me one was available and now i tells me allways there's an update available

grafik grafik

Same issue here with the Aqara T1 LED strip LGYCDD01LM . Only warmth colour control available and no RGB control. New install HA 2024.01 Z2M 1.35.0-1

FabPara64 commented 8 months ago

Hi, Same issue. RGB control has left

Spitefulboy07 commented 8 months ago

I have the same problem! Only white light!

CrazyThunderbird commented 8 months ago

Update to the newest version of Z2M and it's working again.

TehloWasTaken commented 8 months ago

Have people here been able to set multiple colors on a 2M ledstrip? I can only select one for the entire strip, not use the zones..

Rhysgh commented 8 months ago

Have people here been able to set multiple colors on a 2M ledstrip? I can only select one for the entire strip, not use the zones..

Im hoping this comes soon

chrisb86 commented 4 months ago

I got my Light strip today and was able to pair it without problems. RGB control works fine but in white mode the color temperature range is inverted. When I set it cooler, the light gets warmer and vice verca. I made a firmware update, switched to z2m edge and repaired the strip several times but nothing helps.