zigbee-herdsman-converters 14.0.302 → 14.0.303
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/perenio.js +14 -0
- package/devices/tuya.js +1 -0
- package/lib/exposes.js +1 -0
- package/npm-shrinkwrap.json +1137 -1315
- package/package.json +3 -3
package/devices/perenio.js
CHANGED
|
@@ -18,4 +18,18 @@ module.exports = [
|
|
|
18
18
|
},
|
|
19
19
|
exposes: [e.water_leak(), e.battery_low(), e.tamper(), e.battery()],
|
|
20
20
|
},
|
|
21
|
+
{
|
|
22
|
+
zigbeeModel: ['ZHA-DoorLockSensor'],
|
|
23
|
+
model: 'PECWS01',
|
|
24
|
+
vendor: 'Perenio',
|
|
25
|
+
description: 'Door sensor',
|
|
26
|
+
fromZigbee: [fz.ias_contact_alarm_1, fz.battery, fz.ignore_basic_report, fz.ias_contact_alarm_1_report],
|
|
27
|
+
toZigbee: [],
|
|
28
|
+
exposes: [e.contact(), e.battery()],
|
|
29
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
30
|
+
const endpoint = device.getEndpoint(1);
|
|
31
|
+
await reporting.bind(endpoint, coordinatorEndpoint, ['genPowerCfg']);
|
|
32
|
+
await reporting.batteryPercentageRemaining(endpoint);
|
|
33
|
+
},
|
|
34
|
+
},
|
|
21
35
|
];
|
package/devices/tuya.js
CHANGED
|
@@ -705,6 +705,7 @@ module.exports = [
|
|
|
705
705
|
{modelID: 'TS0601', manufacturerName: '_TZE200_rddyvrci'},
|
|
706
706
|
{modelID: 'TS0601', manufacturerName: '_TZE200_nueqqe6k'},
|
|
707
707
|
{modelID: 'TS0601', manufacturerName: '_TZE200_xaabybja'},
|
|
708
|
+
{modelID: 'TS0601', manufacturerName: '_TZE200_rmymn92d'},
|
|
708
709
|
{modelID: 'zo2pocs\u0000', manufacturerName: '_TYST11_fzo2pocs'},
|
|
709
710
|
// Roller blinds:
|
|
710
711
|
{modelID: 'TS0601', manufacturerName: '_TZE200_sbordckq'},
|