zigbee-herdsman-converters
Version:
Collection of device converters to be used with zigbee-herdsman
387 lines • 21.3 kB
JavaScript
"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const zigbee_herdsman_1 = require("zigbee-herdsman");
const exposes = __importStar(require("../lib/exposes"));
const fromZigbee_1 = __importDefault(require("../converters/fromZigbee"));
const toZigbee_1 = __importDefault(require("../converters/toZigbee"));
const globalStore = __importStar(require("../lib/store"));
const reporting = __importStar(require("../lib/reporting"));
const e = exposes.presets;
const ea = exposes.access;
const constants = __importStar(require("../lib/constants"));
const modernExtend_1 = require("../lib/modernExtend");
const fzLocal = {
thermostat_3156105: {
cluster: 'hvacThermostat',
type: ['attributeReport', 'readResponse'],
convert: (model, msg, publish, options, meta) => {
if (msg.data.hasOwnProperty('runningState')) {
if (msg.data['runningState'] == 1) {
msg.data['runningState'] = 0;
}
else if (msg.data['runningState'] == 5) {
msg.data['runningState'] = 4;
}
else if (msg.data['runningState'] == 7) {
msg.data['runningState'] = 6;
}
else if (msg.data['runningState'] == 13) {
msg.data['runningState'] = 9;
}
}
if (msg.data.hasOwnProperty('ctrlSeqeOfOper')) {
if (msg.data['ctrlSeqeOfOper'] == 6) {
msg.data['ctrlSeqeOfOper'] = 4;
}
}
return fromZigbee_1.default.thermostat.convert(model, msg, publish, options, meta);
},
},
};
const definitions = [
{
zigbeeModel: ['4256251-RZHAC'],
model: '4256251-RZHAC',
vendor: 'Centralite',
description: 'White Swiss power outlet switch with power meter',
fromZigbee: [fromZigbee_1.default.on_off, fromZigbee_1.default.electrical_measurement],
toZigbee: [toZigbee_1.default.on_off],
exposes: [e.switch(), e.power(), e.voltage(), e.current()],
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff', 'haElectricalMeasurement']);
await reporting.onOff(endpoint);
await reporting.rmsVoltage(endpoint);
await reporting.rmsCurrent(endpoint);
await reporting.activePower(endpoint);
},
},
{
zigbeeModel: ['4256050-ZHAC'],
model: '4256050-ZHAC',
vendor: 'Centralite',
description: '3-Series smart dimming outlet',
fromZigbee: [fromZigbee_1.default.restorable_brightness, fromZigbee_1.default.on_off, fromZigbee_1.default.electrical_measurement],
toZigbee: [toZigbee_1.default.light_onoff_restorable_brightness],
exposes: [e.light_brightness(), e.power(), e.voltage(), e.current()],
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff', 'genLevelCtrl', 'haElectricalMeasurement']);
await reporting.onOff(endpoint);
// 4256050-ZHAC doesn't support reading 'acVoltageMultiplier' or 'acVoltageDivisor'
await endpoint.read('haElectricalMeasurement', ['acCurrentMultiplier', 'acCurrentDivisor']);
await endpoint.read('haElectricalMeasurement', ['acPowerMultiplier', 'acPowerDivisor']);
await reporting.rmsVoltage(endpoint, { change: 2 }); // Voltage reports in V
await reporting.rmsCurrent(endpoint, { change: 10 }); // Current reports in mA
await reporting.activePower(endpoint, { change: 2 }); // Power reports in 0.1W
},
},
{
zigbeeModel: ['4256050-RZHAC'],
model: '4256050-RZHAC',
vendor: 'Centralite',
description: '3-Series smart outlet appliance module',
fromZigbee: [fromZigbee_1.default.on_off, fromZigbee_1.default.electrical_measurement],
toZigbee: [toZigbee_1.default.on_off],
exposes: [e.switch(), e.power(), e.voltage(), e.current()],
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff', 'haElectricalMeasurement']);
await reporting.onOff(endpoint);
// 4256050-RZHAC doesn't support reading 'acVoltageMultiplier' or 'acVoltageDivisor'
await endpoint.read('haElectricalMeasurement', ['acCurrentMultiplier', 'acCurrentDivisor']);
await endpoint.read('haElectricalMeasurement', ['acPowerMultiplier', 'acPowerDivisor']);
await reporting.rmsVoltage(endpoint, { change: 2 }); // Voltage reports in V
await reporting.rmsCurrent(endpoint, { change: 10 }); // Current reports in mA
await reporting.activePower(endpoint, { change: 2 }); // Power reports in 0.1W
},
},
{
zigbeeModel: ['4257050-ZHAC'],
model: '4257050-ZHAC',
vendor: 'Centralite',
description: '3-Series smart dimming outlet',
fromZigbee: [fromZigbee_1.default.restorable_brightness, fromZigbee_1.default.on_off, fromZigbee_1.default.electrical_measurement],
toZigbee: [toZigbee_1.default.light_onoff_restorable_brightness],
exposes: [e.light_brightness(), e.power(), e.voltage(), e.current()],
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff', 'genLevelCtrl', 'haElectricalMeasurement']);
await reporting.onOff(endpoint);
// 4257050-ZHAC doesn't support reading 'acVoltageMultiplier' or 'acVoltageDivisor'
await endpoint.read('haElectricalMeasurement', ['acCurrentMultiplier', 'acCurrentDivisor']);
await endpoint.read('haElectricalMeasurement', ['acPowerMultiplier', 'acPowerDivisor']);
await reporting.rmsVoltage(endpoint, { change: 2 }); // Voltage reports in V
await reporting.rmsCurrent(endpoint, { change: 10 }); // Current reports in mA
await reporting.activePower(endpoint, { change: 2 }); // Power reports in 0.1W
},
},
{
zigbeeModel: ['4257050-RZHAC'],
model: '4257050-RZHAC',
vendor: 'Centralite',
description: '3-Series smart outlet',
fromZigbee: [fromZigbee_1.default.on_off, fromZigbee_1.default.electrical_measurement],
toZigbee: [toZigbee_1.default.on_off],
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff', 'haElectricalMeasurement']);
await reporting.onOff(endpoint);
try {
await reporting.readEletricalMeasurementMultiplierDivisors(endpoint);
}
catch (exception) {
// For some this fails so set manually
// https://github.com/Koenkk/zigbee2mqtt/issues/3575
endpoint.saveClusterAttributeKeyValue('haElectricalMeasurement', {
acCurrentDivisor: 1000, acCurrentMultiplier: 1, acPowerMultiplier: 1, acPowerDivisor: 10
});
}
await reporting.rmsVoltage(endpoint, { change: 2 }); // Voltage reports in V
await reporting.rmsCurrent(endpoint, { change: 10 }); // Current reports in mA
await reporting.activePower(endpoint, { change: 2 }); // Power reports in 0.1W
},
exposes: [e.switch(), e.power(), e.current(), e.voltage()],
},
{
zigbeeModel: ['3323-G'],
model: '3323-G',
vendor: 'Centralite',
description: 'Micro-door sensor',
fromZigbee: [fromZigbee_1.default.ias_contact_alarm_1, fromZigbee_1.default.temperature],
toZigbee: [],
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ['msTemperatureMeasurement']);
await reporting.temperature(endpoint);
},
exposes: [e.contact(), e.battery_low(), e.tamper(), e.temperature()],
},
{
zigbeeModel: ['3328-G'],
model: '3328-G',
vendor: 'Centralite',
description: '3-Series micro motion sensor',
fromZigbee: [fromZigbee_1.default.ias_occupancy_alarm_2, fromZigbee_1.default.temperature],
toZigbee: [],
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ['msTemperatureMeasurement']);
await reporting.temperature(endpoint);
},
exposes: [e.occupancy(), e.battery_low(), e.tamper(), e.temperature()],
},
{
zigbeeModel: ['3400-D', '3400'],
model: '3400-D',
vendor: 'Centralite',
description: '3-Series security keypad',
meta: { battery: { voltageToPercentage: '3V_2100' } },
fromZigbee: [fromZigbee_1.default.command_arm_with_transaction, fromZigbee_1.default.temperature, fromZigbee_1.default.battery, fromZigbee_1.default.ias_ace_occupancy_with_timeout],
toZigbee: [toZigbee_1.default.arm_mode],
exposes: [e.battery(), e.temperature(), e.occupancy(),
e.numeric('action_code', ea.STATE).withDescription('Pin code introduced.'),
e.numeric('action_transaction', ea.STATE).withDescription('Last action transaction number.'),
e.text('action_zone', ea.STATE).withDescription('Alarm zone. Default value 0'),
e.action([
'disarm', 'arm_day_zones', 'arm_night_zones', 'arm_all_zones', 'exit_delay', 'emergency'
])],
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
const clusters = ['msTemperatureMeasurement', 'genPowerCfg', 'ssIasZone', 'ssIasAce'];
await reporting.bind(endpoint, coordinatorEndpoint, clusters);
await reporting.temperature(endpoint);
await reporting.batteryVoltage(endpoint);
},
onEvent: async (type, data, device) => {
if (type === 'message' && data.type === 'commandGetPanelStatus' && data.cluster === 'ssIasAce' &&
globalStore.hasValue(device.getEndpoint(1), 'panelStatus')) {
const payload = {
panelstatus: globalStore.getValue(device.getEndpoint(1), 'panelStatus'),
secondsremain: 0x00, audiblenotif: 0x00, alarmstatus: 0x00,
};
await device.getEndpoint(1).commandResponse('ssIasAce', 'getPanelStatusRsp', payload, {}, data.meta.zclTransactionSequenceNumber);
}
},
},
{
zigbeeModel: ['3420'],
model: '3420-G',
vendor: 'Centralite',
description: '3-Series night light repeater',
extend: [(0, modernExtend_1.light)()],
},
{
fingerprint: [{ modelID: '3157100', manufacturerName: 'Centralite' }, { modelID: '3157100-E', manufacturerName: 'Centralite' }],
model: '3157100',
vendor: 'Centralite',
description: '3-Series pearl touch thermostat',
fromZigbee: [fromZigbee_1.default.battery, fromZigbee_1.default.thermostat, fromZigbee_1.default.fan, fromZigbee_1.default.ignore_time_read],
toZigbee: [toZigbee_1.default.thermostat_local_temperature, toZigbee_1.default.thermostat_local_temperature_calibration,
toZigbee_1.default.thermostat_occupied_heating_setpoint, toZigbee_1.default.thermostat_occupied_cooling_setpoint,
toZigbee_1.default.thermostat_setpoint_raise_lower, toZigbee_1.default.thermostat_remote_sensing,
toZigbee_1.default.thermostat_control_sequence_of_operation, toZigbee_1.default.thermostat_system_mode,
toZigbee_1.default.thermostat_relay_status_log, toZigbee_1.default.fan_mode, toZigbee_1.default.thermostat_running_state, toZigbee_1.default.thermostat_temperature_setpoint_hold],
exposes: [e.battery(),
e.binary('temperature_setpoint_hold', ea.ALL, true, false)
.withDescription('Prevent changes. `false` = run normally. `true` = prevent from making changes.'),
e.climate().withSetpoint('occupied_heating_setpoint', 7, 30, 1).withLocalTemperature()
.withSystemMode(['off', 'heat', 'cool', 'emergency_heating'])
.withRunningState(['idle', 'heat', 'cool', 'fan_only']).withFanMode(['auto', 'on'])
.withSetpoint('occupied_cooling_setpoint', 7, 30, 1)
.withLocalTemperatureCalibration(-2.5, 2.5, 0.1)],
meta: { battery: { voltageToPercentage: '3V_1500_2800' } },
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ['genPowerCfg', 'hvacThermostat', 'hvacFanCtrl']);
await reporting.batteryVoltage(endpoint);
await reporting.thermostatRunningState(endpoint);
await reporting.thermostatTemperature(endpoint);
await reporting.fanMode(endpoint);
await reporting.thermostatTemperatureSetpointHold(endpoint);
},
},
{
zigbeeModel: ['3156105'],
model: '3156105',
vendor: 'Centralite',
description: 'HA thermostat',
fromZigbee: [fromZigbee_1.default.battery, fzLocal.thermostat_3156105, fromZigbee_1.default.fan, fromZigbee_1.default.ignore_time_read],
toZigbee: [toZigbee_1.default.thermostat_local_temperature,
toZigbee_1.default.thermostat_occupied_heating_setpoint, toZigbee_1.default.thermostat_occupied_cooling_setpoint,
toZigbee_1.default.thermostat_setpoint_raise_lower, toZigbee_1.default.thermostat_remote_sensing,
toZigbee_1.default.thermostat_control_sequence_of_operation, toZigbee_1.default.thermostat_system_mode,
toZigbee_1.default.thermostat_relay_status_log, toZigbee_1.default.fan_mode, toZigbee_1.default.thermostat_running_state, toZigbee_1.default.thermostat_temperature_setpoint_hold],
exposes: [e.battery(),
e.binary('temperature_setpoint_hold', ea.ALL, true, false)
.withDescription('Prevent changes. `false` = run normally. `true` = prevent from making changes.'),
e.climate().withSetpoint('occupied_heating_setpoint', 7, 30, 1).withLocalTemperature()
.withSystemMode(['off', 'heat', 'cool', 'emergency_heating'])
.withRunningState(['idle', 'heat', 'cool', 'fan_only']).withFanMode(['auto', 'on'])
.withSetpoint('occupied_cooling_setpoint', 7, 30, 1)],
meta: { battery: { voltageToPercentage: '3V_1500_2800' } },
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ['genPowerCfg', 'hvacThermostat', 'hvacFanCtrl']);
await reporting.batteryVoltage(endpoint);
await reporting.thermostatRunningState(endpoint);
await reporting.thermostatTemperature(endpoint);
await reporting.fanMode(endpoint);
await reporting.thermostatTemperatureSetpointHold(endpoint);
},
},
{
zigbeeModel: ['4200-C'],
model: '4200-C',
vendor: 'Centralite',
description: 'Smart outlet',
extend: [(0, modernExtend_1.onOff)({ powerOnBehavior: false })],
},
{
zigbeeModel: ['3310-G'],
model: '3310-G',
vendor: 'Centralite',
description: 'Temperature and humidity sensor',
fromZigbee: [fromZigbee_1.default.temperature, fromZigbee_1.default._3310_humidity, fromZigbee_1.default.battery],
exposes: [e.temperature(), e.humidity(), e.battery()],
toZigbee: [],
meta: { battery: { voltageToPercentage: '3V_2500' } },
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
const binds = ['msTemperatureMeasurement', 'manuSpecificCentraliteHumidity', 'genPowerCfg'];
await reporting.bind(endpoint, coordinatorEndpoint, binds);
await reporting.temperature(endpoint);
const payload = [{
attribute: 'measuredValue',
minimumReportInterval: 10,
maximumReportInterval: constants.repInterval.HOUR,
reportableChange: 10,
}];
await endpoint.configureReporting('manuSpecificCentraliteHumidity', payload, { manufacturerCode: zigbee_herdsman_1.Zcl.ManufacturerCode.CENTRALITE_SYSTEMS_INC });
await reporting.batteryVoltage(endpoint);
},
},
{
zigbeeModel: ['3200-fr'],
model: '3200-fr',
vendor: 'Centralite',
description: 'Smart outlet',
fromZigbee: [fromZigbee_1.default.on_off, fromZigbee_1.default.electrical_measurement],
toZigbee: [toZigbee_1.default.on_off],
exposes: [e.switch(), e.power(), e.voltage(), e.current()],
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff', 'haElectricalMeasurement']);
await reporting.onOff(endpoint);
await endpoint.read('haElectricalMeasurement', ['acCurrentMultiplier', 'acCurrentDivisor']);
await endpoint.read('haElectricalMeasurement', ['acPowerMultiplier', 'acPowerDivisor']);
await reporting.rmsVoltage(endpoint, { change: 2 });
await reporting.rmsCurrent(endpoint, { change: 10 });
await reporting.activePower(endpoint, { change: 2 });
},
},
{
zigbeeModel: ['3200-de'],
model: '3200-de',
vendor: 'Centralite',
description: 'Smart outlet',
fromZigbee: [fromZigbee_1.default.on_off, fromZigbee_1.default.electrical_measurement],
toZigbee: [toZigbee_1.default.on_off],
exposes: [e.switch(), e.power(), e.voltage(), e.current()],
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff', 'haElectricalMeasurement']);
await reporting.onOff(endpoint);
await endpoint.read('haElectricalMeasurement', ['acCurrentMultiplier', 'acCurrentDivisor']);
await endpoint.read('haElectricalMeasurement', ['acPowerMultiplier', 'acPowerDivisor']);
await reporting.rmsVoltage(endpoint, { change: 2 });
await reporting.rmsCurrent(endpoint, { change: 10 });
await reporting.activePower(endpoint, { change: 2 });
},
},
{
zigbeeModel: ['3315-Geu'],
model: '3315-Geu',
vendor: 'Centralite',
description: 'Water sensor',
fromZigbee: [fromZigbee_1.default.temperature, fromZigbee_1.default.ias_water_leak_alarm_1, fromZigbee_1.default.battery],
exposes: [e.temperature(), e.water_leak(), e.battery_low(), e.tamper(), e.battery()],
toZigbee: [],
meta: { battery: { voltageToPercentage: '3V_2500' } },
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ['msTemperatureMeasurement', 'genPowerCfg']);
await reporting.temperature(endpoint);
await reporting.batteryVoltage(endpoint);
},
},
];
exports.default = definitions;
module.exports = definitions;
//# sourceMappingURL=centralite.js.map