zigbee-herdsman-converters
Version:
Collection of device converters to be used with zigbee-herdsman
221 lines • 9.54 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 exposes = __importStar(require("../lib/exposes"));
const m = __importStar(require("../lib/modernExtend"));
const reporting = __importStar(require("../lib/reporting"));
const e = exposes.presets;
exports.definitions = [
{
zigbeeModel: ["SPE600"],
model: "SPE600",
vendor: "Salus Controls",
description: "Smart plug (EU socket)",
extend: [m.onOff(), m.electricityMeter({ cluster: "metering" })],
ota: { manufacturerName: "SalusControls" },
},
{
zigbeeModel: ["SP600"],
model: "SP600",
vendor: "Salus Controls",
description: "Smart plug (UK socket)",
extend: [m.onOff(), m.electricityMeter({ cluster: "metering", fzMetering: fz.SP600_power })],
ota: { manufacturerName: "SalusControls" },
},
{
zigbeeModel: ["SX885ZB"],
model: "SX885ZB",
vendor: "Salus Controls",
description: "miniSmartPlug",
extend: [m.onOff(), m.electricityMeter({ cluster: "metering" })],
ota: { manufacturerName: "SalusControls" },
},
{
zigbeeModel: ["SR600"],
model: "SR600",
vendor: "Salus Controls",
description: "Relay switch",
extend: [m.onOff({ ota: { manufacturerName: "SalusControls" } })],
},
{
zigbeeModel: ["SW600"],
model: "SW600",
vendor: "Salus Controls",
description: "Door or window contact sensor",
fromZigbee: [fz.ias_contact_alarm_1],
toZigbee: [],
exposes: [e.contact(), e.battery_low(), e.tamper()],
ota: { manufacturerName: "SalusControls" },
},
{
zigbeeModel: ["WLS600"],
model: "WLS600",
vendor: "Salus Controls",
description: "Water leakage sensor",
fromZigbee: [fz.ias_water_leak_alarm_1],
toZigbee: [],
exposes: [e.water_leak(), e.battery_low(), e.tamper()],
ota: { manufacturerName: "SalusControls" },
},
{
zigbeeModel: ["OS600"],
model: "OS600",
vendor: "Salus Controls",
description: "Door or window contact sensor",
fromZigbee: [fz.ias_contact_alarm_1],
toZigbee: [],
exposes: [e.contact(), e.battery_low(), e.tamper()],
ota: { manufacturerName: "SalusControls" },
},
{
zigbeeModel: ["SS909ZB", "PS600"],
model: "PS600",
vendor: "Salus Controls",
description: "Pipe temperature sensor",
fromZigbee: [fz.temperature, fz.battery],
toZigbee: [],
meta: { battery: { voltageToPercentage: { min: 2500, max: 3000 } } },
exposes: [e.battery(), e.temperature()],
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(9);
await reporting.bind(endpoint, coordinatorEndpoint, ["msTemperatureMeasurement", "genPowerCfg"]);
await reporting.temperature(endpoint);
await reporting.batteryVoltage(endpoint);
},
ota: { manufacturerName: "SalusControls" },
},
{
zigbeeModel: ["RE600"],
model: "RE600",
vendor: "Salus Controls",
description: "Router Zigbee",
fromZigbee: [],
toZigbee: [],
exposes: [],
ota: { manufacturerName: "SalusControls" },
},
{
zigbeeModel: ["FC600"],
model: "FC600",
vendor: "Salus Controls",
description: "Fan coil thermostat",
extend: [
m.deviceAddCustomCluster("manuSpecificSalus", {
ID: 0xfc04,
manufacturerCode: zigbee_herdsman_1.Zcl.ManufacturerCode.COMPUTIME,
attributes: {
frostSetpoint: { ID: 0x0000, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
minFrostSetpoint: { ID: 0x0001, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
maxFrostSetpoint: { ID: 0x0002, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
timeDisplayFormat: { ID: 0x0003, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
attr4: { ID: 0x0004, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
attr5: { ID: 0x0005, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
attr6: { ID: 0x0006, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
attr7: { ID: 0x0007, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
autoCoolingSetpoint: { ID: 0x0008, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
autoHeatingSetpoint: { ID: 0x0009, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
holdType: { ID: 0x000a, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
shortCycleProtection: { ID: 0x000b, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
coolingFanDelay: { ID: 0x000c, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
ruleCoolingSetpoint: { ID: 0x000d, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
ruleHeatingSetpoint: { ID: 0x000e, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
attr15: { ID: 0x000f, type: zigbee_herdsman_1.Zcl.DataType.BOOLEAN },
},
commands: {
resetDevice: {
ID: 0x01,
parameters: [],
},
},
commandsResponse: {},
}),
m.enumLookup({
name: "preset",
lookup: { schedule: 0, temporary_override: 1, permanent_override: 2, standby: 7, eco: 10 },
cluster: "manuSpecificSalus",
attribute: "holdType",
description: "Operation mode",
reporting: { min: 0, max: 3600, change: 0 },
}),
],
fromZigbee: [fz.thermostat, fz.fan],
toZigbee: [
tz.thermostat_local_temperature,
tz.thermostat_local_temperature_calibration,
tz.thermostat_occupancy,
tz.thermostat_occupied_heating_setpoint,
tz.thermostat_unoccupied_heating_setpoint,
tz.thermostat_setpoint_raise_lower,
tz.thermostat_control_sequence_of_operation,
tz.thermostat_system_mode,
tz.thermostat_running_mode,
tz.thermostat_weekly_schedule,
tz.thermostat_clear_weekly_schedule,
tz.thermostat_relay_status_log,
tz.thermostat_running_state,
tz.thermostat_keypad_lockout,
tz.fan_mode,
],
exposes: [
e
.climate()
.withSetpoint("occupied_heating_setpoint", 5, 40, 0.5)
.withLocalTemperature()
.withSystemMode(["off", "heat", "cool", "auto"])
.withRunningMode(["off", "cool", "heat"])
.withRunningState(["idle", "heat", "cool"])
.withLocalTemperatureCalibration(-3, 3, 0.5)
.withFanMode(["off", "low", "medium", "high", "auto"]),
e.keypad_lockout(),
],
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(9);
const binds = ["genBasic", "genTime", "hvacThermostat", "hvacFanCtrl", "hvacUserInterfaceCfg"];
await reporting.bind(endpoint, coordinatorEndpoint, binds);
await reporting.thermostatTemperature(endpoint);
await reporting.thermostatOccupiedHeatingSetpoint(endpoint);
await reporting.thermostatSystemMode(endpoint);
await reporting.fanMode(endpoint);
await reporting.thermostatRunningMode(endpoint);
await reporting.thermostatRunningState(endpoint);
},
ota: { manufacturerName: "SalusControls" },
},
];
//# sourceMappingURL=salus_controls.js.map