zigbee-herdsman-converters
Version:
Collection of device converters to be used with zigbee-herdsman
449 lines • 21.4 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 () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.definitions = void 0;
const zigbee_herdsman_1 = require("zigbee-herdsman");
const fz = __importStar(require("../converters/fromZigbee"));
const tz = __importStar(require("../converters/toZigbee"));
const constants = __importStar(require("../lib/constants"));
const exposes = __importStar(require("../lib/exposes"));
const m = __importStar(require("../lib/modernExtend"));
const reporting = __importStar(require("../lib/reporting"));
const globalStore = __importStar(require("../lib/store"));
const e = exposes.presets;
const ea = exposes.access;
const fzLocal = {
thermostat_3156105: {
cluster: "hvacThermostat",
type: ["attributeReport", "readResponse"],
convert: (model, msg, publish, options, meta) => {
// Default true so we don't break existing setups
const useTranslation = !!options.heat_pump_mode;
if (useTranslation) {
if (msg.data.runningState !== undefined) {
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.ctrlSeqeOfOper !== undefined) {
if (msg.data.ctrlSeqeOfOper === 6) {
msg.data.ctrlSeqeOfOper = 4;
}
}
return fz.thermostat.convert(model, msg, publish, options, meta);
},
},
};
exports.definitions = [
{
zigbeeModel: ["4256251-RZHAC"],
model: "4256251-RZHAC",
vendor: "Centralite",
description: "White Swiss power outlet switch with power meter",
fromZigbee: [fz.on_off, fz.electrical_measurement],
toZigbee: [tz.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: [fz.restorable_brightness, fz.on_off, fz.electrical_measurement],
toZigbee: [tz.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: [fz.on_off, fz.electrical_measurement],
toZigbee: [tz.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: [fz.restorable_brightness, fz.on_off, fz.electrical_measurement],
toZigbee: [tz.light_onoff_restorable_brightness, tz.ignore_transition],
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: [fz.on_off, fz.electrical_measurement],
toZigbee: [tz.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 {
// 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: [fz.ias_contact_alarm_1, fz.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: [fz.ias_occupancy_alarm_2, fz.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: [fz.command_arm_with_transaction, fz.temperature, fz.battery, fz.ias_ace_occupancy_with_timeout],
toZigbee: [tz.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: [m.light()],
},
{
fingerprint: [
{ modelID: "3157100", manufacturerName: "Centralite" },
{ modelID: "3157100-E", manufacturerName: "Centralite" },
],
model: "3157100",
vendor: "Centralite",
description: "3-Series pearl touch thermostat",
fromZigbee: [fz.battery, fz.thermostat, fz.fan, fz.ignore_time_read],
toZigbee: [
tz.thermostat_local_temperature,
tz.thermostat_local_temperature_calibration,
tz.thermostat_occupied_heating_setpoint,
tz.thermostat_occupied_cooling_setpoint,
tz.thermostat_setpoint_raise_lower,
tz.thermostat_remote_sensing,
tz.thermostat_control_sequence_of_operation,
tz.thermostat_system_mode,
tz.thermostat_relay_status_log,
tz.fan_mode,
tz.thermostat_running_state,
tz.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: [fz.battery, fzLocal.thermostat_3156105, fz.fan, fz.ignore_time_read],
toZigbee: [
tz.thermostat_local_temperature,
tz.thermostat_occupied_heating_setpoint,
tz.thermostat_occupied_cooling_setpoint,
tz.thermostat_setpoint_raise_lower,
tz.thermostat_remote_sensing,
tz.thermostat_control_sequence_of_operation,
tz.thermostat_system_mode,
tz.thermostat_relay_status_log,
tz.fan_mode,
tz.thermostat_running_state,
tz.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),
],
options: [
new exposes.Binary("heat_pump_mode", exposes.access.SET, true, false).withDescription("Set this false if you are NOT using heat pump mode (default true)."),
],
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);
await reporting.thermostatOccupiedHeatingSetpoint(endpoint);
await reporting.thermostatSystemMode(endpoint);
},
},
{
zigbeeModel: ["4200-C"],
model: "4200-C",
vendor: "Centralite",
description: "Smart outlet",
extend: [m.onOff({ powerOnBehavior: false })],
},
{
zigbeeModel: ["3310-G"],
model: "3310-G",
vendor: "Centralite",
description: "Temperature and humidity sensor",
fromZigbee: [fz.temperature, fz._3310_humidity, fz.battery],
exposes: [e.temperature(), e.humidity(), e.battery()],
toZigbee: [],
meta: { battery: { voltageToPercentage: { min: 2500, max: 3000 } } },
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: [fz.on_off, fz.electrical_measurement],
toZigbee: [tz.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: [fz.on_off, fz.electrical_measurement],
toZigbee: [tz.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: [fz.temperature, fz.ias_water_leak_alarm_1, fz.battery],
exposes: [e.temperature(), e.water_leak(), e.battery_low(), e.tamper(), e.battery()],
toZigbee: [],
meta: { battery: { voltageToPercentage: { min: 2500, max: 3000 } } },
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ["msTemperatureMeasurement", "genPowerCfg"]);
await reporting.temperature(endpoint);
await reporting.batteryVoltage(endpoint);
},
},
];
//# sourceMappingURL=centralite.js.map