zigbee-herdsman-converters 14.0.417 → 14.0.418
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 +18 -0
- package/devices/philips.js +1 -1
- package/devices/schneider_electric.js +1 -0
- package/devices/tuya.js +1 -1
- package/npm-shrinkwrap.json +1 -1
- package/package.json +1 -1
package/devices/kwikset.js
CHANGED
|
@@ -83,4 +83,22 @@ module.exports = [
|
|
|
83
83
|
},
|
|
84
84
|
exposes: [e.lock(), e.battery()],
|
|
85
85
|
},
|
|
86
|
+
{
|
|
87
|
+
zigbeeModel: ['SMARTCODE_LEVER_5'],
|
|
88
|
+
model: '99120-021',
|
|
89
|
+
vendor: 'Kwikset',
|
|
90
|
+
description: '912 SmartCode traditional electronic lever',
|
|
91
|
+
fromZigbee: [fz.lock, fz.lock_operation_event, fz.battery, fz.lock_programming_event, fz.lock_pin_code_response],
|
|
92
|
+
toZigbee: [tz.lock, tz.pincode_lock],
|
|
93
|
+
meta: {pinCodeCount: 30},
|
|
94
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
95
|
+
const endpoint = device.getEndpoint(2);
|
|
96
|
+
console.log(device);
|
|
97
|
+
console.log(endpoint.clusters);
|
|
98
|
+
await reporting.bind(endpoint, coordinatorEndpoint, ['closuresDoorLock', 'genPowerCfg']);
|
|
99
|
+
await reporting.lockState(endpoint);
|
|
100
|
+
await reporting.batteryPercentageRemaining(endpoint);
|
|
101
|
+
},
|
|
102
|
+
exposes: [e.lock(), e.battery(), e.pincode()],
|
|
103
|
+
},
|
|
86
104
|
];
|
package/devices/philips.js
CHANGED
|
@@ -379,6 +379,7 @@ module.exports = [
|
|
|
379
379
|
endpoint: (device) => {
|
|
380
380
|
return {'top': 21, 'bottom': 22};
|
|
381
381
|
},
|
|
382
|
+
whiteLabel: [{vendor: 'Elko', model: 'EKO07117'}],
|
|
382
383
|
meta: {multiEndpoint: true},
|
|
383
384
|
exposes: [e.action(['on_top', 'off_top', 'on_bottom', 'off_bottom', 'brightness_move_up_top', 'brightness_stop_top',
|
|
384
385
|
'brightness_move_down_top', 'brightness_stop_top', 'brightness_move_up_bottom', 'brightness_stop_bottom',
|
package/devices/tuya.js
CHANGED
|
@@ -1306,7 +1306,7 @@ module.exports = [
|
|
|
1306
1306
|
description: 'PIR sensor',
|
|
1307
1307
|
fromZigbee: [fz.battery, fz.ignore_basic_report, fz.ias_occupancy_alarm_1],
|
|
1308
1308
|
toZigbee: [],
|
|
1309
|
-
whiteLabel: [{vendor: 'Samotech', model: 'SM301Z'}],
|
|
1309
|
+
whiteLabel: [{vendor: 'Samotech', model: 'SM301Z'}, {vendor: 'Nedis', model: 'ZBSM10WT'}],
|
|
1310
1310
|
exposes: [e.battery(), e.occupancy(), e.battery_low(), e.tamper()],
|
|
1311
1311
|
},
|
|
1312
1312
|
{
|
package/npm-shrinkwrap.json
CHANGED