From 709460bf663df3f38b9338708296908da70e35e2 Mon Sep 17 00:00:00 2001 From: renzhe Date: Sat, 18 Nov 2023 10:39:23 +0800 Subject: [PATCH] add tunneling cluster --- src/zcl/definition/cluster.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/src/zcl/definition/cluster.ts b/src/zcl/definition/cluster.ts index 59a1d95e4e..b749afde48 100644 --- a/src/zcl/definition/cluster.ts +++ b/src/zcl/definition/cluster.ts @@ -3598,6 +3598,29 @@ const Cluster: { ], }, }, + }, + Tunneling: { + ID: 0x0704, + attributes: { + }, + commands: { + TransferData: { + ID: 2, + parameters: [ + {name: 'TunnelID', type: DataType.uint16}, + {name: 'Data', type: BuffaloZclDataType.BUFFER}, + ], + }, + }, + commandsResponse: { + TransferDataResp: { + ID: 1, + parameters: [ + {name: 'TunnelID', type: DataType.uint16}, + {name: 'Data', type: BuffaloZclDataType.BUFFER}, + ], + }, + }, }, telecommunicationsInformation: { ID: 2304,