zigbee-herdsman-converters
Version:
Collection of device converters to be used with zigbee-herdsman
25 lines (23 loc) • 1.04 kB
JavaScript
const exposes = require('../lib/exposes');
const fz = {...require('../converters/fromZigbee'), legacy: require('../lib/legacy').fromZigbee};
const reporting = require('../lib/reporting');
const e = exposes.presets;
module.exports = [
{
zigbeeModel: ['3300'],
model: '3300-P',
vendor: 'PEQ',
description: 'Door & window contact sensor',
fromZigbee: [fz.temperature, fz.ias_contact_alarm_1, fz.battery],
toZigbee: [],
meta: {battery: {voltageToPercentage: '3V_2500'}},
configure: async (device, coordinatorEndpoint, logger) => {
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ['msTemperatureMeasurement', 'genPowerCfg']);
await reporting.temperature(endpoint);
await reporting.batteryVoltage(endpoint);
await reporting.batteryPercentageRemaining(endpoint);
},
exposes: [e.temperature(), e.contact(), e.battery_low(), e.tamper(), e.battery()],
},
];