zigbee-herdsman-converters
Version:
Collection of device converters to be used with zigbee-herdsman
24 lines (22 loc) • 912 B
JavaScript
const exposes = require('../lib/exposes');
const fz = {...require('../converters/fromZigbee'), legacy: require('../lib/legacy').fromZigbee};
const tz = require('../converters/toZigbee');
const reporting = require('../lib/reporting');
const e = exposes.presets;
module.exports = [
{
zigbeeModel: ['BE468'],
model: 'BE468',
vendor: 'Schlage',
description: 'Connect smart deadbolt',
fromZigbee: [fz.lock, fz.lock_operation_event, fz.battery],
toZigbee: [tz.lock],
configure: async (device, coordinatorEndpoint, logger) => {
const endpoint = device.endpoints[0];
await reporting.bind(endpoint, coordinatorEndpoint, ['closuresDoorLock', 'genPowerCfg']);
await reporting.lockState(endpoint);
await reporting.batteryPercentageRemaining(endpoint);
},
exposes: [e.lock(), e.battery()],
},
];