UNPKG

zigbee-herdsman-converters

Version:

Collection of device converters to be used with zigbee-herdsman

34 lines (31 loc) 1.98 kB
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'); module.exports = [ { zigbeeModel: ['Zen-01'], model: 'Zen-01-W', vendor: 'Zen', description: 'Thermostat', fromZigbee: [fz.battery, fz.legacy.thermostat_att_report], toZigbee: [tz.factory_reset, tz.thermostat_local_temperature, tz.thermostat_local_temperature_calibration, tz.thermostat_occupancy, tz.thermostat_occupied_heating_setpoint, tz.thermostat_occupied_cooling_setpoint, tz.thermostat_unoccupied_heating_setpoint, tz.thermostat_setpoint_raise_lower, tz.thermostat_running_state, tz.thermostat_remote_sensing, tz.thermostat_control_sequence_of_operation, tz.thermostat_system_mode, tz.thermostat_weekly_schedule, tz.thermostat_clear_weekly_schedule, tz.thermostat_relay_status_log], exposes: [exposes.climate().withSetpoint('occupied_heating_setpoint', 10, 30, 0.5).withLocalTemperature() .withSystemMode(['off', 'auto', 'heat']).withRunningState(['idle', 'heat', 'cool']) .withLocalTemperatureCalibration().withPiHeatingDemand()], configure: async (device, coordinatorEndpoint, logger) => { const endpoint = device.getEndpoint(3) || device.getEndpoint(1); const binds = ['genBasic', 'genIdentify', 'genPowerCfg', 'genTime', 'hvacThermostat', 'hvacUserInterfaceCfg']; await reporting.bind(endpoint, coordinatorEndpoint, binds); await reporting.thermostatSystemMode(endpoint); await reporting.batteryVoltage(endpoint); await reporting.thermostatTemperature(endpoint); await reporting.thermostatRunningState(endpoint); await reporting.thermostatOccupiedHeatingSetpoint(endpoint); }, }, ];