zigbee-herdsman-converters 14.0.352 → 14.0.353
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/devices/kwikset.js +15 -0
- package/devices/tuya.js +4 -3
- package/devices/xiaomi.js +1 -0
- package/npm-shrinkwrap.json +1 -1
- package/package.json +1 -1
package/devices/kwikset.js
CHANGED
|
@@ -35,6 +35,21 @@ module.exports = [
|
|
|
35
35
|
},
|
|
36
36
|
exposes: [e.lock(), e.battery()],
|
|
37
37
|
},
|
|
38
|
+
{
|
|
39
|
+
zigbeeModel: ['SMARTCODE_DEADBOLT_10_W3'],
|
|
40
|
+
model: '99140-031',
|
|
41
|
+
vendor: 'Kwikset',
|
|
42
|
+
description: 'SmartCode traditional electronic deadbolt',
|
|
43
|
+
fromZigbee: [fz.lock, fz.lock_operation_event, fz.battery],
|
|
44
|
+
toZigbee: [tz.lock],
|
|
45
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
46
|
+
const endpoint = device.getEndpoint(2);
|
|
47
|
+
await reporting.bind(endpoint, coordinatorEndpoint, ['closuresDoorLock', 'genPowerCfg']);
|
|
48
|
+
await reporting.lockState(endpoint);
|
|
49
|
+
await reporting.batteryPercentageRemaining(endpoint);
|
|
50
|
+
},
|
|
51
|
+
exposes: [e.lock(), e.battery()],
|
|
52
|
+
},
|
|
38
53
|
{
|
|
39
54
|
zigbeeModel: ['SMARTCODE_DEADBOLT_5'],
|
|
40
55
|
model: '99100-045',
|
package/devices/tuya.js
CHANGED
|
@@ -10,7 +10,8 @@ const ea = exposes.access;
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
const TS011Fplugs = ['_TZ3000_5f43h46b', '_TZ3000_cphmq0q7', '_TZ3000_dpo1ysak', '_TZ3000_ew3ldmgx', '_TZ3000_gjnozsaz',
|
|
13
|
-
'_TZ3000_jvzvulen', '_TZ3000_mraovvmm', '_TZ3000_nfnmi125', '_TZ3000_ps3dmato', '_TZ3000_w0qqde0g', '_TZ3000_u5u4cakc'
|
|
13
|
+
'_TZ3000_jvzvulen', '_TZ3000_mraovvmm', '_TZ3000_nfnmi125', '_TZ3000_ps3dmato', '_TZ3000_w0qqde0g', '_TZ3000_u5u4cakc',
|
|
14
|
+
'_TZ3000_rdtixbnu'];
|
|
14
15
|
|
|
15
16
|
module.exports = [
|
|
16
17
|
{
|
|
@@ -1189,7 +1190,7 @@ module.exports = [
|
|
|
1189
1190
|
exposes: [e.humidity(), e.temperature(), e.battery()],
|
|
1190
1191
|
},
|
|
1191
1192
|
{
|
|
1192
|
-
fingerprint: [{modelID: 'TS0011', manufacturerName: '_TZ3000_l8fsgo6p'}],
|
|
1193
|
+
fingerprint: [{modelID: 'TS0011', manufacturerName: '_TZ3000_l8fsgo6p'}, {modelID: 'TS0011', manufacturerName: '_TZ3000_ji4araar'}],
|
|
1193
1194
|
zigbeeModel: ['TS0011'],
|
|
1194
1195
|
model: 'TS0011',
|
|
1195
1196
|
vendor: 'TuYa',
|
|
@@ -1209,7 +1210,7 @@ module.exports = [
|
|
|
1209
1210
|
},
|
|
1210
1211
|
},
|
|
1211
1212
|
{
|
|
1212
|
-
fingerprint: [{modelID: 'TS0011', manufacturerName: '
|
|
1213
|
+
fingerprint: [{modelID: 'TS0011', manufacturerName: '_TZ3000_qmi1cfuq'},
|
|
1213
1214
|
{modelID: 'TS0011', manufacturerName: '_TZ3000_txpirhfq'}],
|
|
1214
1215
|
model: 'TS0011_switch_module',
|
|
1215
1216
|
vendor: 'TuYa',
|
package/devices/xiaomi.js
CHANGED
|
@@ -1725,6 +1725,7 @@ module.exports = [
|
|
|
1725
1725
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
1726
1726
|
await device.getEndpoint(1).write('aqaraOpple', {'mode': 1}, {manufacturerCode: 0x115f, disableResponse: true});
|
|
1727
1727
|
},
|
|
1728
|
+
ota: ota.zigbeeOTA,
|
|
1728
1729
|
},
|
|
1729
1730
|
{
|
|
1730
1731
|
zigbeeModel: ['lumi.magnet.agl02'],
|
package/npm-shrinkwrap.json
CHANGED