A quick test with my three Matter devices (a rgb light, a power plug, a door sensor) showed no problems so far.
All devices were automatically discovered through a new scan.
So Switch clusters are read-only, they indicate a user performed an action on a physical switch, often these are generic physical controls that require a intelligent controller to do something on (ie. they are user configurable), but also can just be reactions to any button on the device.
I realized i was not actually adding trigger channel types to the thing, so there was not a good way to know what triggers were available without looking at logs. I just pushed a new Jar that dynamically adds the supported trigger channels advertised by the switch (through its feature map). So using my Inovelli Dimmer, which has a few buttons on it, now shows
I have rules that can respond to these events, in this case a single, double or triple tap of a button
rules.when()
.channel('matter:node:main:6289508706803718081#5:switch-multipresscomplete').triggered().then( e => {
const data = JSON.parse(e.payload.event);
console.log("Switch Data: ", e);
switch(data.totalNumberOfPressesCounted) {
case 1:
items.F1_DansOffice_Light.sendCommand("ON");
break;
case 2:
items.F1_DansOffice_Light.sendCommand("100");
break;
case 3:
items.F1_DansOffice_Light.sendCommand("OFF");
break;
}
}).build('Matter Trigger: multipresscomplete', 'Matter Trigger event for multipresscomplete');
I have not played around much with this how ever, especially in relation to the actual non trigger Switch channel
Here is how is labelled my Switchbot Hub 2 in inbox. Nothing that identifies it.
When I click on “Add as thing”, look how is the label/ It looks like there is something but with a strange encoding:
Here are thing properties once added:
Matter bridged devices have no bridge defined:
When I click on the bridge field to select a bridge thing, the proposed list is empty.
I understood that they should have the Matter bridge as bridge thing, that is in my case this one:
Do I misunderstood ?
Note that it leads to group labels containing “null”:
Did you ever send me the JSON for that device ?
Not yet.
These should be discovered automatically in the inbox once the parent node was added. Are you creating these manually? Are you saying that the discovered bridge-endpoint thing is discovered but without a bridge set?
Yes, they were discovered automatically once I added the matter bridge as thing.
Yes, they are apparently discovered without a bridge set and even worst you cannot set any bridge to it.
All that being said, your changes are awesome !
Could you please also add unitHint=“%” to the humidity channel type. Main UI will then propose % as default unit for the item to be created.
Edit: would require to switch to a Number/Dimensionless item type.
If you look at the “code” tab for that thing, is the bridge set there? Like this ?
The binding is using a Dynamic Thing Type so we can dynamically add channels groups, similar to the mqtt binding, which was a new technique to me, i may have missed something thats confusing the MainUI.
Yes, there is a bridge set:
UID: matter:bridge-endpoint:openhab:15928341705496205474:4
label: Hub 2 Boutons
thingTypeUID: matter:bridge-endpoint_15928341705496205474_4
configuration:
endpointId: 4
bridgeUID: matter:node:openhab:15928341705496205474
channels:
- id: 5#switch-initialpress
channelTypeUID: matter:switch-initialpress
label: Initial Press Trigger
configuration: {}
- id: 5#switch-switch
channelTypeUID: matter:switch-switch
label: Switch
configuration: {}
- id: 6#switch-initialpress
channelTypeUID: matter:switch-initialpress
label: Initial Press Trigger
configuration: {}
- id: 6#switch-switch
channelTypeUID: matter:switch-switch
label: Switch
configuration: {}
Let me check if the UID is correct…
Edit: as you can see, I have now the trigger channels, that’s great.
The UID looks good. Here is the bridge thing:
UID: matter:node:openhab:15928341705496205474
label: Switchbot Hub 2
thingTypeUID: matter:node_15928341705496205474
configuration:
nodeId: "15928341705496205474"
bridgeUID: matter:controller:openhab
channels:
- id: 0#wififnetworkdiagnostics-rssi
channelTypeUID: matter:wififnetworkdiagnostics-rssi
label: Signal Strength
configuration: {}
Maybe this thing is not a bridge thing ?
Does it work for you with hue ?
Edit: when I look at the thing type matter:node_15928341705496205474 with the REST API, it looks good:
{
"channels": [],
"channelGroups": [
{
"id": "0",
"description": "Root Node:",
"label": "Root Node:",
"channels": []
},
{
"id": "1",
"description": "Aggregator:",
"label": "Aggregator:",
"channels": []
}
],
"configParameters": [
{
"description": "The Matter Node Id",
"label": "Node Id",
"name": "nodeId",
"required": true,
"type": "TEXT",
"readOnly": false,
"multiple": false,
"advanced": false,
"verify": false,
"limitToOptions": true,
"options": [],
"filterCriteria": []
}
],
"parameterGroups": [],
"properties": {},
"extensibleChannelTypeIds": [],
"UID": "matter:node_15928341705496205474",
"label": "Matter Node",
"description": "The Matter Node describes a logical node in a Matter Fabric",
"listed": false,
"supportedBridgeTypeUIDs": [
"matter:controller"
],
"bridge": true
}
The REST API for thing type matter:bridge-endpoint_15928341705496205474_4 is:
{
"channels": [],
"channelGroups": [
{
"id": "4",
"description": "Bridged Node: null",
"label": "Bridged Node: null",
"channels": []
},
{
"id": "5",
"description": "Bridged Node: null",
"label": "Bridged Node: null",
"channels": []
},
{
"id": "6",
"description": "Bridged Node: null",
"label": "Bridged Node: null",
"channels": []
}
],
"configParameters": [
{
"description": "The Matter Endpoint Id",
"label": "Endpoint Id",
"name": "endpointId",
"required": true,
"type": "INTEGER",
"readOnly": false,
"multiple": false,
"advanced": false,
"verify": false,
"limitToOptions": true,
"options": [],
"filterCriteria": []
}
],
"parameterGroups": [],
"properties": {},
"extensibleChannelTypeIds": [],
"UID": "matter:bridge-endpoint_15928341705496205474_4",
"label": "Matter Bridge Endpoint",
"description": "A Matter Bridge Endpoint represented as a standalone Thing",
"listed": false,
"supportedBridgeTypeUIDs": [
"matter:node"
],
"bridge": false
}
At the very end, in supportedBridgeTypeUIDs, shouldn’t we have matter:node_15928341705496205474 instead of matter:node?
For your humidity channel type, you should have something very similar (to not say identical) to this system channel type:
So its a bit confusing for sure in matter. A Matter node itself is not a bridge type, but rather one of its endpoints is. Further, a Node can have a mixture of endpoints that are of a type bridge, and not.
So when we iterate through a node’s endpoints, if its a regular endpoint, we add it as a channel group, if its a type of bridge, then we add a new child thing type from that endpoint (bridge-endpoints
), along with any other children of that endpoint (so a bridge can have multiple channel groups, or whats called a “composed” node by the matter.js devs)
Sorry, long way of saying that your hub itself is a node
, but will have child things for its endpoints that are of a type bridge (and channel groups if there were any other endpoints).
Yes, and this was the missing part i forgot to overwrite in my editThing
override on the thing. I don’t think anyone has used the dynamic thing type with bridge types yet, so i’m figuring this out the hard way, thanks for pointing that out !
Are you sure that is needed? See [shelly] Re-Add/Fix Shelly Plus UNI support by markus7017 · Pull Request #17816 · openhab/openhab-addons · GitHub
We need at least a proper Number:Dimensionless item type for this channel. Then if unitHint is not required because the default is “%” that is fine for me
But I had in mind the default is “one”.
The general solution is to look how is defined the system channel type for humidity and to replicate it.
Did you already update your jar with this problem fixed ?
I answer to myself: yes, you already fixed it, thank you.
Remains only one thing to check: why do I get labels as “Bridged Node: null” at top of each group ? The “null” is certainly not what you were expecting.
To anticipate your question, yes I removed my things and added them again from the inbox.
In core, the default is indeed one
. I felt it was more common to have %
, but that would have caused a breaking change that was not accepted. unitHint
overwrites the default, but there is also a mechanism in the UI to use another default for the initial setup when no unitHint
is provide (defined in the unit.js
file). This was specifically created for cases like %
, see the definitions here. Note that this mechanism only has an impact on configuring items in MainUI.
What is the problem to set unitHint ? This is the unit the binding developer suggests for a particular channel. It is better than relying on a generic default proposed by Main UI.
I just tried to pair my tasmota plugs using the latest build (from scratch, both on openhab and the tasmota side) but somehow the binding doesn’t want to play. The plugs expose two endpoints for the relay and the temperature, and the error I get in the logs is Endpoint structure for Node 14546687883776138119 could not be parsed
.
Can you tell if the plug is doing anything funky or is that a problem with the binding?
2024-12-05 10:44:41.715 [TRACE] [internal.util.MatterWebsocketService] - MessageExchange: Message « id: 20460/37973/175712367 type: 0/16 acked: 34230694 reqAck: false duplicate: false payload:
2024-12-05 10:44:41.913 [TRACE] [internal.util.MatterWebsocketService] - MessageExchange: Message « id: 20460/37973/175712366 type: 1/5 acked: 34230694 reqAck: true duplicate: false payload: 152500b7ba36011535012400013701240202240339240403182c020d4d617474657220506c7567204118181535012400013701240202240339240405182c02001818153501240001370124020224033924040a182c020831342e332e302e371818153501240001370124020224033924040f182c021144383a31333a32413a34423a30423a30341818153501240001370124020224033924041118290218181535012400013701240202240339240412182c021144383a31333a32413a34423a30423a3034181815350124000137012402022403392504f8ff18360218181815350124000137012402022403392504f9ff18360218181815350124000137012402022403392504faff18360218181815350124000137012402022403392504fbff18360204030405040a040f0411041205f8ff05f9ff05faff05fbff05fcff05fdff04000400040004000400040004000400040004000400040018181815350124000137012402022403392504fcff18240200181815350124000137012402022403392504fdff1824020118181535012400013701240202250302042404001821020d1a181815350124000137012402022503020424040118210278ec1818153501240001370124020225030204240402182102983a18181535012400013701240202250302042504f8ff1836021818181535012400013701240202250302042504f9ff1836021818181535012400013701240202250302042504faff1836021818181535012400013701240202250302042504fbff18360204000401040205f8ff05f9ff05faff05fbff05fcff05fdff0400040004000400040004000400040004001818181535012400013701240202250302042504fcff1824020018181535012400013701240202250302042504fdff1824020418181535012400013701240203240303240400182402001818153501240001370124020324030324040118240200181815350124000137012402032403032504f8ff18360218181815350124000137012402032403032504f9ff18360218181815350124000137012402032403032504faff18360218181815350124000137012402032403032504fbff1836020400040105f8ff05f9ff05faff05fbff05fcff05fdff0400040004000400040004000400040018181815350124000137012402032403032504fcff18240200181815350124000137012402032403032504fdff18240204181815350124000137012402032403042504f8ff18360218181815350124000137012402032403042504f9ff18360218181815350124000137012402032403042504faff18360218181815350124000137012402032403042504fbff183602040005f8ff05f9ff05faff05fbff05fcff05fdff040004000400040004000400040018181815350124000137012402032403042504fcff18240200181815350124000137012402032403042504fdff18240204181815350124000137012402032403052504f8ff18360218181815350124000137012402032403052504f9ff18360218181815350124000137012402032403052504faff18360218181818290324ff0118
2024-12-05 10:44:41.914 [TRACE] [internal.util.MatterWebsocketService] - InteractionMessenger: Received DataReport chunk with 38 attributes and 0 events, suppressResponse: undefined, moreChunkedMessages: true, subscriptionId: 47799
2024-12-05 10:44:41.914 [TRACE] [internal.util.MatterWebsocketService] - ExchangeManager: Message » id: 52720/37973/34230695 type: 1/1 acked: 175712366 reqAck: true duplicate: false payload: 1524000024ff0c18
2024-12-05 10:44:41.935 [TRACE] [internal.util.MatterWebsocketService] - MdnsScanner: Added IPs for operational device 4539836750DC622C-C9E0378F02F49B87._matter._tcp.local to cache (interface eth1): ip: 192.168.3.206 port: 5540 type: udp ip: fe80::da13:2aff:fe4b:b04%eth1 port: 5540 type: udp
2024-12-05 10:44:41.936 [TRACE] [internal.util.MatterWebsocketService] - MdnsScanner: Finishing waiter for query 4539836750DC622C-C9E0378F02F49B87._matter._tcp.local, resolving: true
2024-12-05 10:44:41.936 [TRACE] [internal.util.MatterWebsocketService] - MdnsScanner: Removing query 4539836750DC622C-C9E0378F02F49B87._matter._tcp.local
2024-12-05 10:44:41.976 [TRACE] [internal.util.MatterWebsocketService] - MessageExchange: Message « id: 20460/37973/175712369 type: 0/16 acked: 34230695 reqAck: false duplicate: false payload:
2024-12-05 10:44:42.337 [TRACE] [internal.util.MatterWebsocketService] - MessageExchange: Message « id: 20460/37973/175712368 type: 1/5 acked: 34230695 reqAck: true duplicate: false payload: 152500b7ba360115350124000137012402032403052504fbff18360204000401040204030404040505f8ff05f9ff05faff05fbff05fcff05fdff04000400040004000400040004000400040004000400040018181815350124000137012402032403052504fcff18240200181815350124000137012402032403052504fdff1824020518181535012400013701240203240306240400182802181815350124000137012402032403062504f8ff18360218181815350124000137012402032403062504f9ff18360218181815350124000137012402032403062504faff18360218181815350124000137012402032403062504fbff183602040005f8ff05f9ff05faff05fbff05fcff05fdff040004000400040004000400040018181815350124000137012402032403062504fcff18240200181815350124000137012402032403062504fdff182402051818153501240001370124020324031d2404001836021525000a0124010218181818153501240001370124020324031d2404011836020403040404050406041d0439181818153501240001370124020324031d240402183602181818153501240001370124020324031d240403183602181818153501240001370124020324031d2504f8ff183602181818153501240001370124020324031d2504f9ff183602181818153501240001370124020324031d2504faff183602181818153501240001370124020324031d2504fbff183602040004010402040305f8ff05f9ff05faff05fbff05fcff05fdff0400040004000400040004000400040004000400181818153501240001370124020324031d2504fcff182402001818153501240001370124020324031d2504fdff1824020118181535012400013701240203240339240403182c020d4d617474657220506c7567204118181535012400013701240203240339240405182c02001818153501240001370124020324033924040a182c020831342e332e302e371818153501240001370124020324033924040f182c021144383a31333a32413a34423a30423a30341818153501240001370124020324033924041118290218181535012400013701240203240339240412182c021144383a31333a32413a34423a30423a3034181815350124000137012402032403392504f8ff18360218181815350124000137012402032403392504f9ff18360218181815350124000137012402032403392504faff18360218181815350124000137012402032403392504fbff18360204030405040a040f0411041205f8ff05f9ff05faff05fbff05fcff05fdff04000400040004000400040004000400040004000400040018181815350124000137012402032403392504fcff18240200181815350124000137012402032403392504fdff18240201181818280324ff0118
2024-12-05 10:44:42.338 [TRACE] [internal.util.MatterWebsocketService] - InteractionMessenger: Received DataReport chunk with 32 attributes and 0 events, suppressResponse: undefined, moreChunkedMessages: false, subscriptionId: 47799
2024-12-05 10:44:42.338 [TRACE] [internal.util.MatterWebsocketService] - ExchangeManager: Message » id: 52720/37973/34230696 type: 1/1 acked: 175712368 reqAck: true duplicate: false payload: 1524000024ff0c18
2024-12-05 10:44:42.410 [TRACE] [internal.util.MatterWebsocketService] - MessageExchange: Message « id: 20460/37973/175712371 type: 0/16 acked: 34230696 reqAck: false duplicate: false payload:
2024-12-05 10:44:42.428 [TRACE] [internal.util.MatterWebsocketService] - MessageExchange: Message « id: 20460/37973/175712370 type: 1/4 acked: 34230696 reqAck: true duplicate: false payload: 152500b7ba24023c24ff0118
2024-12-05 10:44:42.428 [TRACE] [internal.util.MatterWebsocketService] - ExchangeManager: Message » id: 52720/37973/34230697 type: 0/16 acked: 175712370 reqAck: false duplicate: false payload:
2024-12-05 10:44:42.428 [DEBUG] [internal.util.MatterWebsocketService] - InteractionClient: Subscription successfully initialized with ID 47799 and maxInterval 60s.
2024-12-05 10:44:42.429 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x1d/0xfffa via the AnySchema.
2024-12-05 10:44:42.429 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x1f/0xfffa via the AnySchema.
2024-12-05 10:44:42.429 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x28/0xfffa via the AnySchema.
2024-12-05 10:44:42.429 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x2b/0xfffa via the AnySchema.
2024-12-05 10:44:42.429 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x2c/0xfffa via the AnySchema.
2024-12-05 10:44:42.429 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x30/0xfffa via the AnySchema.
2024-12-05 10:44:42.429 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x31/0xfffa via the AnySchema.
2024-12-05 10:44:42.429 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x32/0xfffa via the AnySchema.
2024-12-05 10:44:42.430 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x33/0xfffa via the AnySchema.
2024-12-05 10:44:42.430 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x34/0xfffa via the AnySchema.
2024-12-05 10:44:42.430 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x38/0xfffa via the AnySchema.
2024-12-05 10:44:42.430 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x3c/0xfffa via the AnySchema.
2024-12-05 10:44:42.430 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x3e/0xfffa via the AnySchema.
2024-12-05 10:44:42.430 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x3f/0xfffa via the AnySchema.
2024-12-05 10:44:42.430 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x3/0xfffa via the AnySchema.
2024-12-05 10:44:42.430 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x1d/0xfffa via the AnySchema.
2024-12-05 10:44:42.430 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x3/0xfffa via the AnySchema.
2024-12-05 10:44:42.430 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x4/0xfffa via the AnySchema.
2024-12-05 10:44:42.430 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x5/0xfffa via the AnySchema.
2024-12-05 10:44:42.430 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x1d/0xfffa via the AnySchema.
2024-12-05 10:44:42.430 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x39/0xfffa via the AnySchema.
2024-12-05 10:44:42.431 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x402/0xfffa via the AnySchema.
2024-12-05 10:44:42.431 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x3/0xfffa via the AnySchema.
2024-12-05 10:44:42.431 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x4/0xfffa via the AnySchema.
2024-12-05 10:44:42.431 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x5/0xfffa via the AnySchema.
2024-12-05 10:44:42.431 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x6/0xfffa via the AnySchema.
2024-12-05 10:44:42.431 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x1d/0xfffa via the AnySchema.
2024-12-05 10:44:42.431 [TRACE] [internal.util.MatterWebsocketService] - AttributeDataDecoder: Decode unknown attribute 0x39/0xfffa via the AnySchema.
2024-12-05 10:44:42.431 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/Descriptor(0x1d)/deviceTypeList(0x0) = [{"deviceType":22,"revision":1}] (version=1)
2024-12-05 10:44:42.431 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/Descriptor(0x1d)/serverList(0x1) = [29,31,40,43,44,48,49,50,51,52,56,60,62,63] (version=1)
2024-12-05 10:44:42.431 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/Descriptor(0x1d)/clientList(0x2) = [31] (version=1)
2024-12-05 10:44:42.431 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/Descriptor(0x1d)/partsList(0x3) = [2,3] (version=1)
2024-12-05 10:44:42.431 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/Descriptor(0x1d)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.431 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/Descriptor(0x1d)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.431 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/Descriptor(0x1d)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.432 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/Descriptor(0x1d)/attributeList(0xfffb) = [0,1,2,3,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.432 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/Descriptor(0x1d)/featureMap(0xfffc) = {"tagList":false} (version=1)
2024-12-05 10:44:42.432 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/Descriptor(0x1d)/clusterRevision(0xfffd) = 1 (version=1)
2024-12-05 10:44:42.432 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/AccessControl(0x1f)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.432 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/AccessControl(0x1f)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.432 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/AccessControl(0x1f)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.432 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/AccessControl(0x1f)/attributeList(0xfffb) = [0,2,3,4,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.432 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/AccessControl(0x1f)/featureMap(0xfffc) = {} (version=1)
2024-12-05 10:44:42.432 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/AccessControl(0x1f)/clusterRevision(0xfffd) = 1 (version=1)
2024-12-05 10:44:42.432 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/BasicInformation(0x28)/dataModelRevision(0x0) = 1 (version=1)
2024-12-05 10:44:42.432 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/BasicInformation(0x28)/vendorName(0x1) = "Tasmota" (version=1)
2024-12-05 10:44:42.432 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/BasicInformation(0x28)/vendorId(0x2) = 65521 (version=1)
2024-12-05 10:44:42.432 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/BasicInformation(0x28)/productName(0x3) = "Matter Plug A" (version=1)
2024-12-05 10:44:42.432 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/BasicInformation(0x28)/productId(0x4) = 32768 (version=1)
2024-12-05 10:44:42.432 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/BasicInformation(0x28)/nodeLabel(0x5) = "Tasmota" (version=1)
2024-12-05 10:44:42.433 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/BasicInformation(0x28)/location(0x6) = "XX" (version=1)
2024-12-05 10:44:42.433 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/BasicInformation(0x28)/hardwareVersion(0x7) = 0 (version=1)
2024-12-05 10:44:42.433 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/BasicInformation(0x28)/hardwareVersionString(0x8) = "ESP32-U4WDH-D v3.1" (version=1)
2024-12-05 10:44:42.433 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/BasicInformation(0x28)/softwareVersion(0x9) = 235077639 (version=1)
2024-12-05 10:44:42.433 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/BasicInformation(0x28)/softwareVersionString(0xa) = "14.3.0.7" (version=1)
2024-12-05 10:44:42.433 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/BasicInformation(0x28)/serialNumber(0xf) = "D8:13:2A:4B:0B:04" (version=1)
2024-12-05 10:44:42.433 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/BasicInformation(0x28)/reachable(0x11) = true (version=1)
2024-12-05 10:44:42.433 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/BasicInformation(0x28)/uniqueId(0x12) = "D8:13:2A:4B:0B:04" (version=1)
2024-12-05 10:44:42.433 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/BasicInformation(0x28)/capabilityMinima(0x13) = {"caseSessionsPerFabric":3,"subscriptionsPerFabric":3} (version=1)
2024-12-05 10:44:42.433 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/BasicInformation(0x28)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.433 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/BasicInformation(0x28)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.433 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/BasicInformation(0x28)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.433 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/BasicInformation(0x28)/attributeList(0xfffb) = [0,1,2,3,4,5,6,7,8,9,10,15,17,18,19,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.433 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/BasicInformation(0x28)/featureMap(0xfffc) = {} (version=1)
2024-12-05 10:44:42.434 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/BasicInformation(0x28)/clusterRevision(0xfffd) = 2 (version=1)
2024-12-05 10:44:42.434 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/LocalizationConfiguration(0x2b)/activeLocale(0x0) = "en" (version=1)
2024-12-05 10:44:42.434 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/LocalizationConfiguration(0x2b)/supportedLocales(0x1) = ["en"] (version=1)
2024-12-05 10:44:42.434 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/LocalizationConfiguration(0x2b)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.434 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/LocalizationConfiguration(0x2b)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.434 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/LocalizationConfiguration(0x2b)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.434 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/LocalizationConfiguration(0x2b)/attributeList(0xfffb) = [0,1,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.434 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/LocalizationConfiguration(0x2b)/featureMap(0xfffc) = {} (version=1)
2024-12-05 10:44:42.434 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/LocalizationConfiguration(0x2b)/clusterRevision(0xfffd) = 1 (version=1)
2024-12-05 10:44:42.434 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/TimeFormatLocalization(0x2c)/hourFormat(0x0) = 1 (version=1)
2024-12-05 10:44:42.434 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/TimeFormatLocalization(0x2c)/activeCalendarType(0x1) = 4 (version=1)
2024-12-05 10:44:42.434 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/TimeFormatLocalization(0x2c)/supportedCalendarTypes(0x2) = [] (version=1)
2024-12-05 10:44:42.435 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/TimeFormatLocalization(0x2c)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.435 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/TimeFormatLocalization(0x2c)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.435 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/TimeFormatLocalization(0x2c)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.435 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/TimeFormatLocalization(0x2c)/attributeList(0xfffb) = [0,1,2,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.435 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/TimeFormatLocalization(0x2c)/featureMap(0xfffc) = {"calendarFormat":false} (version=1)
2024-12-05 10:44:42.435 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/TimeFormatLocalization(0x2c)/clusterRevision(0xfffd) = 1 (version=1)
2024-12-05 10:44:42.435 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GeneralCommissioning(0x30)/breadcrumb(0x0) = 0 (version=1)
2024-12-05 10:44:42.435 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GeneralCommissioning(0x30)/basicCommissioningInfo(0x1) = {"failSafeExpiryLengthSeconds":60,"maxCumulativeFailsafeSeconds":900} (version=1)
2024-12-05 10:44:42.435 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GeneralCommissioning(0x30)/regulatoryConfig(0x2) = 2 (version=1)
2024-12-05 10:44:42.435 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GeneralCommissioning(0x30)/locationCapability(0x3) = 2 (version=1)
2024-12-05 10:44:42.435 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GeneralCommissioning(0x30)/supportsConcurrentConnection(0x4) = false (version=1)
2024-12-05 10:44:42.435 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GeneralCommissioning(0x30)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.435 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GeneralCommissioning(0x30)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GeneralCommissioning(0x30)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GeneralCommissioning(0x30)/attributeList(0xfffb) = [0,1,2,3,4,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GeneralCommissioning(0x30)/featureMap(0xfffc) = {} (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GeneralCommissioning(0x30)/clusterRevision(0xfffd) = 1 (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/NetworkCommissioning(0x31)/connectMaxTimeSeconds(0x3) = 30 (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/NetworkCommissioning(0x31)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/NetworkCommissioning(0x31)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/NetworkCommissioning(0x31)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/NetworkCommissioning(0x31)/attributeList(0xfffb) = [3,4,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/NetworkCommissioning(0x31)/featureMap(0xfffc) = {"wiFiNetworkInterface":false,"threadNetworkInterface":false,"ethernetNetworkInterface":true} (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/NetworkCommissioning(0x31)/clusterRevision(0xfffd) = 1 (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/DiagnosticLogs(0x32)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/DiagnosticLogs(0x32)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/DiagnosticLogs(0x32)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/DiagnosticLogs(0x32)/attributeList(0xfffb) = [65528,65529,65530,65531,65532,65533,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/DiagnosticLogs(0x32)/featureMap(0xfffc) = {} (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/DiagnosticLogs(0x32)/clusterRevision(0xfffd) = 1 (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GeneralDiagnostics(0x33)/networkInterfaces(0x0) = [{"name":"wifi","isOperational":true,"offPremiseServicesReachableIPv4":true,"offPremiseServicesReachableIPv6":null,"hardwareAddress":"d8132a4b0b04","iPv4Addresses":["c0a803ce"],"iPv6Addresses":["fe80000000000000da132afffe4b0b04","fd22c1e8c6677767da132afffe4b0b04"],"type":1}] (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GeneralDiagnostics(0x33)/rebootCount(0x1) = 42 (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GeneralDiagnostics(0x33)/upTime(0x2) = 8051 (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GeneralDiagnostics(0x33)/testEventTriggersEnabled(0x8) = false (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GeneralDiagnostics(0x33)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GeneralDiagnostics(0x33)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GeneralDiagnostics(0x33)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GeneralDiagnostics(0x33)/attributeList(0xfffb) = [0,1,2,8,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GeneralDiagnostics(0x33)/featureMap(0xfffc) = {"dataModelTest":false} (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GeneralDiagnostics(0x33)/clusterRevision(0xfffd) = 1 (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/SoftwareDiagnostics(0x34)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/SoftwareDiagnostics(0x34)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/SoftwareDiagnostics(0x34)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.436 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/SoftwareDiagnostics(0x34)/attributeList(0xfffb) = [65528,65529,65530,65531,65532,65533,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/SoftwareDiagnostics(0x34)/featureMap(0xfffc) = {"watermarks":false} (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/SoftwareDiagnostics(0x34)/clusterRevision(0xfffd) = 1 (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/TimeSynchronization(0x38)/utcTime(0x0) = "1733391879000000" (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/TimeSynchronization(0x38)/granularity(0x1) = 3 (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/TimeSynchronization(0x38)/localTime(0x7) = "1733395479000000" (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/TimeSynchronization(0x38)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/TimeSynchronization(0x38)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/TimeSynchronization(0x38)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/TimeSynchronization(0x38)/attributeList(0xfffb) = [0,1,7,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/TimeSynchronization(0x38)/featureMap(0xfffc) = {"timeZone":false,"ntpClient":false,"ntpServer":false,"timeSyncClient":false} (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/TimeSynchronization(0x38)/clusterRevision(0xfffd) = 2 (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/AdministratorCommissioning(0x3c)/windowStatus(0x0) = 0 (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/AdministratorCommissioning(0x3c)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/AdministratorCommissioning(0x3c)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/AdministratorCommissioning(0x3c)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/AdministratorCommissioning(0x3c)/attributeList(0xfffb) = [0,1,2,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/AdministratorCommissioning(0x3c)/featureMap(0xfffc) = {"basic":false} (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/AdministratorCommissioning(0x3c)/clusterRevision(0xfffd) = 1 (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/OperationalCredentials(0x3e)/nocs(0x0) = [{"noc":"153001010724020137032414001826048dfe022d26050d35b04137062415012711879bf4028f37e0c91824070124080130094104f25989d76abd1adb6fa1e1e3cddda537e6e4215dfe5146d5760d9e93aadcc61cc43252cc27a4d01c8512414a607cd65674b0618cf508c8f101381006dfc347cf370a35012801182402013603040204011830041474df3e783564fc0a9f239ef5ee773bcc7046677c3005146e1cd41f73ac7857b2157e38b03fac74f2b315a118300b406849c7e19e85cb8686dfd6ac6d6c952953bb86184b3c1e54cfd667c43fd4ce0ddfb4c0c5b7e532c57b60ea889e51838e72119f29ff0c0b32ca8cd9349b5ad60118","fabricIndex":2}] (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/OperationalCredentials(0x3e)/fabrics(0x1) = [{"rootPublicKey":"04b3c15bb0b2b34c80184c054af722ca006349b365a9c92b256ec56134d384001339220f50732a49aff702e100aad4201333356ce991e2b820e18ad5268385a2a1","vendorId":65521,"fabricId":"1","nodeId":"14546687883776138119","label":"","fabricIndex":2}] (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/OperationalCredentials(0x3e)/supportedFabrics(0x2) = 5 (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/OperationalCredentials(0x3e)/commissionedFabrics(0x3) = 2 (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/OperationalCredentials(0x3e)/currentFabricIndex(0x5) = 2 (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/OperationalCredentials(0x3e)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/OperationalCredentials(0x3e)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/OperationalCredentials(0x3e)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/OperationalCredentials(0x3e)/attributeList(0xfffb) = [0,1,2,3,4,5,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/OperationalCredentials(0x3e)/featureMap(0xfffc) = {} (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/OperationalCredentials(0x3e)/clusterRevision(0xfffd) = 1 (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GroupKeyManagement(0x3f)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GroupKeyManagement(0x3f)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GroupKeyManagement(0x3f)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GroupKeyManagement(0x3f)/attributeList(0xfffb) = [65528,65529,65530,65531,65532,65533,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.437 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GroupKeyManagement(0x3f)/featureMap(0xfffc) = {"cacheAndSync":false} (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x0/GroupKeyManagement(0x3f)/clusterRevision(0xfffd) = 2 (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x1/Identify(0x3)/identifyTime(0x0) = 0 (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x1/Identify(0x3)/identifyType(0x1) = 0 (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x1/Identify(0x3)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x1/Identify(0x3)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x1/Identify(0x3)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x1/Identify(0x3)/attributeList(0xfffb) = [0,1,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x1/Identify(0x3)/featureMap(0xfffc) = {} (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x1/Identify(0x3)/clusterRevision(0xfffd) = 4 (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x1/Descriptor(0x1d)/deviceTypeList(0x0) = [{"deviceType":14,"revision":1}] (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x1/Descriptor(0x1d)/serverList(0x1) = [3,29] (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x1/Descriptor(0x1d)/clientList(0x2) = [30] (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x1/Descriptor(0x1d)/partsList(0x3) = [2,3] (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x1/Descriptor(0x1d)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x1/Descriptor(0x1d)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x1/Descriptor(0x1d)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x1/Descriptor(0x1d)/attributeList(0xfffb) = [0,1,2,3,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x1/Descriptor(0x1d)/featureMap(0xfffc) = {"tagList":false} (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x1/Descriptor(0x1d)/clusterRevision(0xfffd) = 1 (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Identify(0x3)/identifyTime(0x0) = 0 (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Identify(0x3)/identifyType(0x1) = 0 (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Identify(0x3)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Identify(0x3)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Identify(0x3)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Identify(0x3)/attributeList(0xfffb) = [0,1,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Identify(0x3)/featureMap(0xfffc) = {} (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Identify(0x3)/clusterRevision(0xfffd) = 4 (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Groups(0x4)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.438 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Groups(0x4)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Groups(0x4)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Groups(0x4)/attributeList(0xfffb) = [0,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Groups(0x4)/featureMap(0xfffc) = {"groupNames":false} (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Groups(0x4)/clusterRevision(0xfffd) = 4 (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/unknown(0x5)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/unknown(0x5)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/unknown(0x5)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/unknown(0x5)/attributeList(0xfffb) = [0,1,2,3,4,5,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/unknown(0x5)/featureMap(0xfffc) = {} (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/unknown(0x5)/clusterRevision(0xfffd) = 5 (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Descriptor(0x1d)/deviceTypeList(0x0) = [{"deviceType":770,"revision":2}] (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Descriptor(0x1d)/serverList(0x1) = [3,4,5,29,57,1026] (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Descriptor(0x1d)/clientList(0x2) = [] (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Descriptor(0x1d)/partsList(0x3) = [] (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Descriptor(0x1d)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Descriptor(0x1d)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Descriptor(0x1d)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Descriptor(0x1d)/attributeList(0xfffb) = [0,1,2,3,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Descriptor(0x1d)/featureMap(0xfffc) = {"tagList":false} (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/Descriptor(0x1d)/clusterRevision(0xfffd) = 1 (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/BridgedDeviceBasicInformation(0x39)/productName(0x3) = "Matter Plug A" (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/BridgedDeviceBasicInformation(0x39)/nodeLabel(0x5) = "" (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/BridgedDeviceBasicInformation(0x39)/softwareVersionString(0xa) = "14.3.0.7" (version=1)
2024-12-05 10:44:42.439 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/BridgedDeviceBasicInformation(0x39)/serialNumber(0xf) = "D8:13:2A:4B:0B:04" (version=1)
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/BridgedDeviceBasicInformation(0x39)/reachable(0x11) = true (version=1)
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/BridgedDeviceBasicInformation(0x39)/uniqueId(0x12) = "D8:13:2A:4B:0B:04" (version=1)
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/BridgedDeviceBasicInformation(0x39)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/BridgedDeviceBasicInformation(0x39)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/BridgedDeviceBasicInformation(0x39)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/BridgedDeviceBasicInformation(0x39)/attributeList(0xfffb) = [3,5,10,15,17,18,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/BridgedDeviceBasicInformation(0x39)/featureMap(0xfffc) = {} (version=1)
2024-12-05 10:44:42.440 [DEBUG] [internal.util.MatterWebsocketService] - ClusterServer: Event accessControlEntryChanged should be supported by cluster AccessControl (31) but not present and ignored.
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/BridgedDeviceBasicInformation(0x39)/clusterRevision(0xfffd) = 1 (version=1)
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/TemperatureMeasurement(0x402)/measuredValue(0x0) = 6669 (version=1)
2024-12-05 10:44:42.440 [DEBUG] [internal.util.MatterWebsocketService] - ClusterServer: Event accessControlExtensionChanged should be supported by cluster AccessControl (31) but not present and ignored.
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/TemperatureMeasurement(0x402)/minMeasuredValue(0x1) = -5000 (version=1)
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/TemperatureMeasurement(0x402)/maxMeasuredValue(0x2) = 15000 (version=1)
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/TemperatureMeasurement(0x402)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/TemperatureMeasurement(0x402)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/TemperatureMeasurement(0x402)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/TemperatureMeasurement(0x402)/attributeList(0xfffb) = [0,1,2,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/TemperatureMeasurement(0x402)/featureMap(0xfffc) = {} (version=1)
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x2/TemperatureMeasurement(0x402)/clusterRevision(0xfffd) = 4 (version=1)
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Identify(0x3)/identifyTime(0x0) = 0 (version=1)
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Identify(0x3)/identifyType(0x1) = 0 (version=1)
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Identify(0x3)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Identify(0x3)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Identify(0x3)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.440 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Identify(0x3)/attributeList(0xfffb) = [0,1,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Identify(0x3)/featureMap(0xfffc) = {} (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Identify(0x3)/clusterRevision(0xfffd) = 4 (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Groups(0x4)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Groups(0x4)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Groups(0x4)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Groups(0x4)/attributeList(0xfffb) = [0,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Groups(0x4)/featureMap(0xfffc) = {"groupNames":false} (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Groups(0x4)/clusterRevision(0xfffd) = 4 (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/unknown(0x5)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/unknown(0x5)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/unknown(0x5)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/unknown(0x5)/attributeList(0xfffb) = [0,1,2,3,4,5,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/unknown(0x5)/featureMap(0xfffc) = {} (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/unknown(0x5)/clusterRevision(0xfffd) = 5 (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/OnOff(0x6)/onOff(0x0) = false (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/OnOff(0x6)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/OnOff(0x6)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/OnOff(0x6)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/OnOff(0x6)/attributeList(0xfffb) = [0,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/OnOff(0x6)/featureMap(0xfffc) = {"lighting":false,"deadFrontBehavior":false,"offOnly":false} (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/OnOff(0x6)/clusterRevision(0xfffd) = 5 (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Descriptor(0x1d)/deviceTypeList(0x0) = [{"deviceType":266,"revision":2}] (version=1)
2024-12-05 10:44:42.441 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Descriptor(0x1d)/serverList(0x1) = [3,4,5,6,29,57] (version=1)
2024-12-05 10:44:42.442 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Descriptor(0x1d)/clientList(0x2) = [] (version=1)
2024-12-05 10:44:42.442 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Descriptor(0x1d)/partsList(0x3) = [] (version=1)
2024-12-05 10:44:42.442 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Descriptor(0x1d)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.442 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Descriptor(0x1d)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.442 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Descriptor(0x1d)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.442 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Descriptor(0x1d)/attributeList(0xfffb) = [0,1,2,3,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.442 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Descriptor(0x1d)/featureMap(0xfffc) = {"tagList":false} (version=1)
2024-12-05 10:44:42.442 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/Descriptor(0x1d)/clusterRevision(0xfffd) = 1 (version=1)
2024-12-05 10:44:42.442 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/BridgedDeviceBasicInformation(0x39)/productName(0x3) = "Matter Plug A" (version=1)
2024-12-05 10:44:42.442 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/BridgedDeviceBasicInformation(0x39)/nodeLabel(0x5) = "" (version=1)
2024-12-05 10:44:42.442 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/BridgedDeviceBasicInformation(0x39)/softwareVersionString(0xa) = "14.3.0.7" (version=1)
2024-12-05 10:44:42.442 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/BridgedDeviceBasicInformation(0x39)/serialNumber(0xf) = "D8:13:2A:4B:0B:04" (version=1)
2024-12-05 10:44:42.442 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/BridgedDeviceBasicInformation(0x39)/reachable(0x11) = true (version=1)
2024-12-05 10:44:42.442 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/BridgedDeviceBasicInformation(0x39)/uniqueId(0x12) = "D8:13:2A:4B:0B:04" (version=1)
2024-12-05 10:44:42.442 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/BridgedDeviceBasicInformation(0x39)/generatedCommandList(0xfff8) = [] (version=1)
2024-12-05 10:44:42.442 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/BridgedDeviceBasicInformation(0x39)/acceptedCommandList(0xfff9) = [] (version=1)
2024-12-05 10:44:42.442 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/BridgedDeviceBasicInformation(0x39)/unknown(0xfffa) = [] (version=1)
2024-12-05 10:44:42.442 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/BridgedDeviceBasicInformation(0x39)/attributeList(0xfffb) = [3,5,10,15,17,18,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0,0,0] (version=1)
2024-12-05 10:44:42.442 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/BridgedDeviceBasicInformation(0x39)/featureMap(0xfffc) = {} (version=1)
2024-12-05 10:44:42.442 [TRACE] [internal.util.MatterWebsocketService] - InteractionClient: Received attribute update: 0x3/BridgedDeviceBasicInformation(0x39)/clusterRevision(0xfffd) = 1 (version=1)
2024-12-05 10:44:42.442 [TRACE] [internal.util.MatterWebsocketService] - PairedNode: Creating device 0 {"29":{"deviceTypeList":[{"deviceType":22,"revision":1}],"serverList":[29,31,40,43,44,48,49,50,51,52,56,60,62,63],"clientList":[31],"partsList":[2,3],"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[0,1,2,3,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0],"featureMap":{"tagList":false},"clusterRevision":1},"31":{"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[0,2,3,4,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0],"featureMap":{},"clusterRevision":1},"40":{"dataModelRevision":1,"vendorName":"Tasmota","vendorId":65521,"productName":"Matter Plug A","productId":32768,"nodeLabel":"Tasmota","location":"XX","hardwareVersion":0,"hardwareVersionString":"ESP32-U4WDH-D v3.1","softwareVersion":235077639,"softwareVersionString":"14.3.0.7","serialNumber":"D8:13:2A:4B:0B:04","reachable":true,"uniqueId":"D8:13:2A:4B:0B:04","capabilityMinima":{"caseSessionsPerFabric":3,"subscriptionsPerFabric":3},"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[0,1,2,3,4,5,6,7,8,9,10,15,17,18,19,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"featureMap":{},"clusterRevision":2},"43":{"activeLocale":"en","supportedLocales":["en"],"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[0,1,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0],"featureMap":{},"clusterRevision":1},"44":{"hourFormat":1,"activeCalendarType":4,"supportedCalendarTypes":[],"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[0,1,2,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0],"featureMap":{"calendarFormat":false},"clusterRevision":1},"48":{"breadcrumb":0,"basicCommissioningInfo":{"failSafeExpiryLengthSeconds":60,"maxCumulativeFailsafeSeconds":900},"regulatoryConfig":2,"locationCapability":2,"supportsConcurrentConnection":false,"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[0,1,2,3,4,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0,0],"featureMap":{},"clusterRevision":1},"49":{"connectMaxTimeSeconds":30,"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[3,4,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0],"featureMap":{"wiFiNetworkInterface":false,"threadNetworkInterface":false,"ethernetNetworkInterface":true},"clusterRevision":1},"50":{"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[65528,65529,65530,65531,65532,65533,0,0,0,0,0,0],"featureMap":{},"clusterRevision":1},"51":{"networkInterfaces":[{"name":"wifi","isOperational":true,"offPremiseServicesReachableIPv4":true,"offPremiseServicesReachableIPv6":null,"hardwareAddress":"d8132a4b0b04","iPv4Addresses":["c0a803ce"],"iPv6Addresses":["fe80000000000000da132afffe4b0b04","fd22c1e8c6677767da132afffe4b0b04"],"type":1}],"rebootCount":42,"upTime":8051,"testEventTriggersEnabled":false,"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[0,1,2,8,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0],"featureMap":{"dataModelTest":false},"clusterRevision":1},"52":{"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[65528,65529,65530,65531,65532,65533,0,0,0,0,0,0],"featureMap":{"watermarks":false},"clusterRevision":1},"56":{"utcTime":"1733391879000000","granularity":3,"localTime":"1733395479000000","generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[0,1,7,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0],"featureMap":{"timeZone":false,"ntpClient":false,"ntpServer":false,"timeSyncClient":false},"clusterRevision":2},"60":{"windowStatus":0,"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[0,1,2,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0],"featureMap":{"basic":false},"clusterRevision":1},"62":{"nocs":[{"noc":"153001010724020137032414001826048dfe022d26050d35b04137062415012711879bf4028f37e0c91824070124080130094104f25989d76abd1adb6fa1e1e3cddda537e6e4215dfe5146d5760d9e93aadcc61cc43252cc27a4d01c8512414a607cd65674b0618cf508c8f101381006dfc347cf370a35012801182402013603040204011830041474df3e783564fc0a9f239ef5ee773bcc7046677c3005146e1cd41f73ac7857b2157e38b03fac74f2b315a118300b406849c7e19e85cb8686dfd6ac6d6c952953bb86184b3c1e54cfd667c43fd4ce0ddfb4c0c5b7e532c57b60ea889e51838e72119f29ff0c0b32ca8cd9349b5ad60118","fabricIndex":2}],"fabrics":[{"rootPublicKey":"04b3c15bb0b2b34c80184c054af722ca006349b365a9c92b256ec56134d384001339220f50732a49aff702e100aad4201333356ce991e2b820e18ad5268385a2a1","vendorId":65521,"fabricId":"1","nodeId":"14546687883776138119","label":"","fabricIndex":2}],"supportedFabrics":5,"commissionedFabrics":2,"currentFabricIndex":2,"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[0,1,2,3,4,5,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0,0,0],"featureMap":{},"clusterRevision":1},"63":{"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[65528,65529,65530,65531,65532,65533,0,0,0,0,0,0],"featureMap":{"cacheAndSync":false},"clusterRevision":2}}
2024-12-05 10:44:42.442 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x1d
2024-12-05 10:44:42.442 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x1f
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x28
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x2b
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x2c
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x30
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x31
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x32
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0x0 to cluster 0x32
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x33
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x34
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x38
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x3c
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x3e
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x3f
2024-12-05 10:44:42.443 [TRACE] [internal.util.MatterWebsocketService] - PairedNode: Creating device 1 {"3":{"identifyTime":0,"identifyType":0,"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[0,1,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0],"featureMap":{},"clusterRevision":4},"29":{"deviceTypeList":[{"deviceType":14,"revision":1}],"serverList":[3,29],"clientList":[30],"partsList":[2,3],"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[0,1,2,3,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0],"featureMap":{"tagList":false},"clusterRevision":1}}
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x3
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x1d
2024-12-05 10:44:42.443 [TRACE] [internal.util.MatterWebsocketService] - PairedNode: Creating device 2 {"3":{"identifyTime":0,"identifyType":0,"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[0,1,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0],"featureMap":{},"clusterRevision":4},"4":{"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[0,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0],"featureMap":{"groupNames":false},"clusterRevision":4},"5":{"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[0,1,2,3,4,5,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0,0,0],"featureMap":{},"clusterRevision":5},"29":{"deviceTypeList":[{"deviceType":770,"revision":2}],"serverList":[3,4,5,29,57,1026],"clientList":[],"partsList":[],"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[0,1,2,3,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0],"featureMap":{"tagList":false},"clusterRevision":1},"57":{"productName":"Matter Plug A","nodeLabel":"","softwareVersionString":"14.3.0.7","serialNumber":"D8:13:2A:4B:0B:04","reachable":true,"uniqueId":"D8:13:2A:4B:0B:04","generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[3,5,10,15,17,18,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0,0,0],"featureMap":{},"clusterRevision":1},"1026":{"measuredValue":6669,"minMeasuredValue":-5000,"maxMeasuredValue":15000,"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[0,1,2,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0],"featureMap":{},"clusterRevision":4}}
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x3
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x4
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0x0 to cluster 0x5
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0x1 to cluster 0x5
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0x2 to cluster 0x5
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0x3 to cluster 0x5
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0x4 to cluster 0x5
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0x5 to cluster 0x5
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x5
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x1d
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x39
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0x0 to cluster 0x39
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x402
2024-12-05 10:44:42.443 [TRACE] [internal.util.MatterWebsocketService] - PairedNode: Creating device 3 {"3":{"identifyTime":0,"identifyType":0,"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[0,1,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0],"featureMap":{},"clusterRevision":4},"4":{"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[0,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0],"featureMap":{"groupNames":false},"clusterRevision":4},"5":{"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[0,1,2,3,4,5,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0,0,0],"featureMap":{},"clusterRevision":5},"6":{"onOff":false,"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[0,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0],"featureMap":{"lighting":false,"deadFrontBehavior":false,"offOnly":false},"clusterRevision":5},"29":{"deviceTypeList":[{"deviceType":266,"revision":2}],"serverList":[3,4,5,6,29,57],"clientList":[],"partsList":[],"generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[0,1,2,3,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0],"featureMap":{"tagList":false},"clusterRevision":1},"57":{"productName":"Matter Plug A","nodeLabel":"","softwareVersionString":"14.3.0.7","serialNumber":"D8:13:2A:4B:0B:04","reachable":true,"uniqueId":"D8:13:2A:4B:0B:04","generatedCommandList":[],"acceptedCommandList":[],"Unknown (0xfffa)":[],"attributeList":[3,5,10,15,17,18,65528,65529,65530,65531,65532,65533,0,0,0,0,0,0,0,0,0,0,0,0],"featureMap":{},"clusterRevision":1}}
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x3
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x4
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0x0 to cluster 0x5
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0x1 to cluster 0x5
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0x2 to cluster 0x5
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0x3 to cluster 0x5
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0x4 to cluster 0x5
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0x5 to cluster 0x5
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x5
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x6
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x1d
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0xfffa to cluster 0x39
2024-12-05 10:44:42.443 [DEBUG] [internal.util.MatterWebsocketService] - ClusterClient: Added unknown attribute 0x0 to cluster 0x39
2024-12-05 10:44:42.444 [TRACE] [internal.util.MatterWebsocketService] - PairedNode: Node 14546687883776138119: Endpoints from PartsLists [[0,[2,3]],[1,[2,3]],[2,[]],[3,[]]]
2024-12-05 10:44:42.444 [TRACE] [internal.util.MatterWebsocketService] - PairedNode: Node 14546687883776138119: Endpoint usages {"2":[0,1],"3":[0,1]}
2024-12-05 10:44:42.444 [DEBUG] [internal.util.MatterWebsocketService] - PairedNode: Node 14546687883776138119: Error waiting for device rediscovery, retrying Endpoint structure for Node 14546687883776138119 could not be parsed!
2024-12-05 10:44:42.444 [TRACE] [internal.util.MatterWebsocketService] - none: at PairedNode.structureEndpoints (webpack://matter-server/./node_modules/@project-chip/matter.js/dist/cjs/device/PairedNode.js?:615:17)
2024-12-05 10:44:42.444 [TRACE] [internal.util.MatterWebsocketService] - none: at PairedNode.initializeEndpointStructure (webpack://matter-server/./node_modules/@project-chip/matter.js/dist/cjs/device/PairedNode.js?:594:10)
2024-12-05 10:44:42.444 [TRACE] [internal.util.MatterWebsocketService] - none: at PairedNode.initialize (webpack://matter-server/./node_modules/@project-chip/matter.js/dist/cjs/device/PairedNode.js?:333:20)
2024-12-05 10:44:42.444 [TRACE] [internal.util.MatterWebsocketService] - none: at async PairedNode.reconnect (webpack://matter-server/./node_modules/@project-chip/matter.js/dist/cjs/device/PairedNode.js?:240:7)
2024-12-05 10:44:42.444 [TRACE] [internal.util.MatterWebsocketService] - none: at async StandardTimer.eval [as callback] (webpack://matter-server/./node_modules/@project-chip/matter.js/dist/cjs/device/PairedNode.js?:551:100)
2024-12-05 10:44:42.444 [DEBUG] [internal.util.MatterWebsocketService] - PairedNode: Node 14546687883776138119: Reconnecting in 120s ...
Indeed, it is always better to use unitHint in my view.