03-04-2023 02:47 AM - edited 03-04-2023 03:05 AM
Based on the examples/bridge-app reference using the v1.0.0.2 tag in the Matter SDK, I have added a dimmable light using the OnOff Cluster and LevelControl Cluster. It works fine in the Apple Home app, but in the Google Home app, I can only turn it on or off. The dimmable button is disabled by default, and the dimming feature does not work without sending any interaction commands.
PS:
Matter SDK Version: v1.0.0.2
Google Home App Version: 2.65.24.1-dogfood
Google Nest Display Version: 1.56.324896
03-13-2023 03:30 PM - edited 03-13-2023 03:31 PM
Thanks for bringing this up. Project Chip on GitHub mentions only OnOff cluster in readme file. Check with developers if it’s meant to also support LevelControl cluster. Looking at history of commits it might still be under development. If you continue to experience issues please create a ticket on GitHub.
09-25-2023 12:25 AM
@lijie have you tested the dimmable light with alexa. As I'm facing the issue with alexa .
09-25-2023 01:08 AM
@Harry_p Yep, I just tested Alexa. Everything is fine.
09-25-2023 02:57 AM
Is there anything that you have changed in the configuration as when I change the brightness values, the callbacks are not called.
These are the level configurations made:
09-25-2023 03:11 AM
@Harry_p You need to reference the 'Dimmable Light' device type in order to implement all the mandatory clusters.
ID Cluster Client/Server Quality Conformance
0x0003 | Identify | Server | M | |
0x0004 | Groups | Server | M | |
0x0005 | Scenes | Server | M | |
0x0006 | On/Off | Server | M | |
0x0008 | Level Control | Server | M | |
0x0406 | Occupancy Sensing | Client | O |
I gave up this micro implementation instead of using the examples at https://github.com/espressif/esp-matter/tree/main/examples/zigbee_bridge."
09-25-2023 03:27 AM
@lijie As I'm adding the non-zigbee devices I have choosen bridge-app example. I can see the device as dimmer in alexa, but the thing is when changing the levels the callbacks are not active any idea about this issue.