zigbee-herdsman 6.1.5 → 6.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/adapter/ember/ezsp/consts.d.ts +1 -1
- package/dist/adapter/ember/ezsp/consts.js +1 -1
- package/dist/adapter/ember/ezsp/ezsp.d.ts +5 -3
- package/dist/adapter/ember/ezsp/ezsp.d.ts.map +1 -1
- package/dist/adapter/ember/ezsp/ezsp.js +15 -6
- package/dist/adapter/ember/ezsp/ezsp.js.map +1 -1
- package/dist/zspec/zcl/definition/cluster.d.ts.map +1 -1
- package/dist/zspec/zcl/definition/cluster.js +18 -0
- package/dist/zspec/zcl/definition/cluster.js.map +1 -1
- package/dist/zspec/zcl/definition/clusters-types.d.ts +10 -0
- package/dist/zspec/zcl/definition/clusters-types.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cluster.d.ts","sourceRoot":"","sources":["../../../../src/zspec/zcl/definition/cluster.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,iBAAiB,EAAE,WAAW,EAAC,MAAM,UAAU,CAAC;AAE7D,eAAO,MAAM,QAAQ,EAAE,QAAQ,CAAC,MAAM,CAAC,WAAW,EAAE,QAAQ,CAAC,iBAAiB,CAAC,CAAC,
|
|
1
|
+
{"version":3,"file":"cluster.d.ts","sourceRoot":"","sources":["../../../../src/zspec/zcl/definition/cluster.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,iBAAiB,EAAE,WAAW,EAAC,MAAM,UAAU,CAAC;AAE7D,eAAO,MAAM,QAAQ,EAAE,QAAQ,CAAC,MAAM,CAAC,WAAW,EAAE,QAAQ,CAAC,iBAAiB,CAAC,CAAC,CAg8L/E,CAAC"}
|
|
@@ -5114,6 +5114,13 @@ exports.Clusters = {
|
|
|
5114
5114
|
{ name: "payload", type: enums_1.DataType.UINT8 },
|
|
5115
5115
|
],
|
|
5116
5116
|
},
|
|
5117
|
+
/**
|
|
5118
|
+
* Weather forecast synchronization (check requestWeatherInformation)
|
|
5119
|
+
*/
|
|
5120
|
+
tuyaWeatherSync: {
|
|
5121
|
+
ID: 0x61,
|
|
5122
|
+
parameters: [{ name: "payload", type: enums_1.BuffaloZclDataType.BUFFER }],
|
|
5123
|
+
},
|
|
5117
5124
|
},
|
|
5118
5125
|
commandsResponse: {
|
|
5119
5126
|
/**
|
|
@@ -5213,6 +5220,17 @@ exports.Clusters = {
|
|
|
5213
5220
|
ID: 0x25,
|
|
5214
5221
|
parameters: [{ name: "payloadSize", type: enums_1.DataType.UINT16 }],
|
|
5215
5222
|
},
|
|
5223
|
+
/**
|
|
5224
|
+
* Device can request weather forecast information and expects response respecting given parameters.
|
|
5225
|
+
* This command ID seem to be device speciffic, because there is simmilar structure documented in Tuya Serial Communication Protocol,
|
|
5226
|
+
* but with different ID (0x3a and 0x3b respectively). In this case, I'm not sure if the name should reflect the one from
|
|
5227
|
+
* docs or be also speciffic (providing space for the implementation of the correct one in the future)?
|
|
5228
|
+
*
|
|
5229
|
+
*/
|
|
5230
|
+
tuyaWeatherRequest: {
|
|
5231
|
+
ID: 0x60,
|
|
5232
|
+
parameters: [{ name: "payload", type: enums_1.BuffaloZclDataType.BUFFER }],
|
|
5233
|
+
},
|
|
5216
5234
|
},
|
|
5217
5235
|
},
|
|
5218
5236
|
manuSpecificLumi: {
|