-
Notifications
You must be signed in to change notification settings - Fork 84
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
Feature request: Ability to set Binding (x/30/0) attribute from dashboard #815
Comments
Yes, this is all on the long list - not a priority for now due to a lack of capacity |
@sgryphon I would try with a Window Covering Controller: |
Sure. I have some example scripts and commands in a GitHub repository. https://github.com/sgryphon/iot-demo-build/blob/main/matter-thread/scripts/Send-MatterCommand.ps1 This is a PowerShell script that opens a websocket connection, reads the initial details, sends a command, waits for the response, and then closes the connection. The 5th example shows a read_attribute command, to read the current binding object. The 6th example (in the script header) shows using write_attribute to set the binding value. You need a device that:
|
BTW @lboue what is that UI you have screen shots of? I am using the Matter Server via Home Assistant, and some of the buttons look the same (e.g. the Interview, Update, etc along the bottom), but I don't have the same config screens (can only view nodes). |
Ok, maybe also my 5cents about bindings :-) As summarized above:
The reality is that there are not that many real devices out there that bring client clusters with them ... and even if they are there it is unclear if they are functual ... Because of the fact that currently no ecosystem out there supports setting that up I think it was also not the highest prio for device manufacturers. |
@Apollon77 I'm going to use 2 development kits to do this binding test with chip-tool. |
EVE launched the EVE Thermo Control some days ago. With that device you can control the temperature of up to 5 EVE Thermos. It also acts as a temperature sensor for the paired EVE Thermos. It uses Matter bindings. You can set that up via the EVE app. So, it’s already possible, when you are an Apple Home user. 😉 |
@hoppel118 Yes and that's the only official device I know where bindings are communicated as a feature. :-) An other device I know are Innovelli Matter switches. But that's it what I know is out there. There could be more, but when well hidden. |
Theoretically ... if firmware really supports it which is unknown to date - or at least would be needed to be verified. So try setting up a binding on it and see what happens |
So, classic chicken-and-egg issue ... no controllers support it, so no devices bother to support it, so no controllers bother to support it, etc. Good to see Eve is using it internally for their devices, which gives a reason for generic controllers to add support, which might encourage more devices. I think the local direct peer-to-peer function is one of the strengths of Matter compared to other systems, i.e. without needing the controller to be online, so good to see it starting to mature. Also, thanks for pointing out the permission issue. I'll have to check if I can get the Zemismart working once I add the permissions. |
I have opened a new discussion: Binding Eve Thermo Thermostat and Matter Temperature sensor #1001 |
In the dashboard UI, as well as exploring nodes and viewing (reading) attribute values, it would be good if there was a way to write attribute values, specifically to write the Binding attribute.
This could be hidden behind an Advanced mode (like Home Assistant administration) if there was worry that it could mess things up.
Example:
node_id = 6
attribute_path = "1/30/0"
binding target:
node = 12
group = null
endpoint = 1
cluster = 0x0006 (On/Off cluster -- needs to be a client cluster)
fabricIndex = 2
We know the node and endpoint, and the relevant cluster. The valid binding target struct would depend on what clusters are in the descriptor client list ("1/29/2"), and the valid nodes and endpoints in the fabric (and the server list of the target node/endpoint)
Binding is a key feature for disconnected operation, e.g. where a switch can directly interface with a device (such as a light) by binding an On/Off client cluster with On/Off server on the destination light.
I have a Zemismart switch that has 0x6 client cluster supported, and I would like to bind it to a light (which all have 0x6 server).
The device supports the binding attribute, but there is no way to set it in the dashboard (I can via the programming UI)
The text was updated successfully, but these errors were encountered: