UNPKG

zigbee-herdsman-converters

Version:

Collection of device converters to be used with zigbee-herdsman

120 lines 5.43 kB
"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 reporting = __importStar(require("../lib/reporting")); const e = exposes.presets; const ea = exposes.access; exports.definitions = [ { zigbeeModel: ["7377019"], model: "7377019", vendor: "Viessmann", description: "ViCare CO2, temperature and humidity sensor", fromZigbee: [fz.co2, fz.temperature, fz.humidity, fz.battery], toZigbee: [], exposes: [e.battery(), e.co2(), e.temperature(), e.humidity()], }, { zigbeeModel: ["7637435"], model: "ZK03839", vendor: "Viessmann", description: "ViCare climate sensor", fromZigbee: [fz.temperature, fz.humidity, fz.battery], toZigbee: [], exposes: [e.battery(), e.temperature(), e.humidity()], }, { zigbeeModel: ["7963223"], model: "7963223", vendor: "Viessmann", description: "ViCare climate sensor", fromZigbee: [fz.temperature, fz.humidity, fz.battery], toZigbee: [], exposes: [e.battery(), e.temperature(), e.humidity()], }, { zigbeeModel: ["7637434"], model: "ZK03840", vendor: "Viessmann", description: "ViCare radiator thermostat valve", fromZigbee: [fz.viessmann_thermostat, fz.battery, fz.hvac_user_interface], toZigbee: [ tz.thermostat_local_temperature, tz.thermostat_occupied_heating_setpoint, tz.thermostat_control_sequence_of_operation, tz.thermostat_system_mode, tz.thermostat_keypad_lockout, tz.viessmann_window_open, tz.viessmann_window_open_force, tz.viessmann_assembly_mode, tz.thermostat_weekly_schedule, tz.thermostat_clear_weekly_schedule, ], exposes: [ e .climate() .withSetpoint("occupied_heating_setpoint", 7, 30, 1) .withLocalTemperature() .withSystemMode(["heat", "sleep"]) .withWeeklySchedule(["heat"]), e.binary("window_open", ea.STATE_GET, true, false).withDescription("Detected by sudden temperature drop or set manually."), e.binary("window_open_force", ea.ALL, true, false).withDescription("Manually set window_open, ~1 minute to take affect."), e.keypad_lockout(), e.battery(), ], configure: async (device, coordinatorEndpoint) => { const endpoint = device.getEndpoint(1); const options = { manufacturerCode: zigbee_herdsman_1.Zcl.ManufacturerCode.VIESSMANN_ELEKTRONIK_GMBH }; await reporting.bind(endpoint, coordinatorEndpoint, ["genBasic", "genPowerCfg", "genIdentify", "genTime", "hvacThermostat"]); // standard ZCL attributes await reporting.batteryPercentageRemaining(endpoint); await reporting.thermostatTemperature(endpoint); await reporting.thermostatOccupiedHeatingSetpoint(endpoint); await reporting.thermostatPIHeatingDemand(endpoint); // manufacturer attributes await endpoint.configureReporting("hvacThermostat", [{ attribute: "viessmannWindowOpenInternal", minimumReportInterval: 60, maximumReportInterval: 3600, reportableChange: 1 }], options); // read window_open_force, we don't need reporting as it cannot be set physically on the device await endpoint.read("hvacThermostat", ["viessmannWindowOpenForce"], options); // read keypadLockout, we don't need reporting as it cannot be set physically on the device await endpoint.read("hvacUserInterfaceCfg", ["keypadLockout"]); }, }, ]; //# sourceMappingURL=viessmann.js.map