zigbee-herdsman-converters
Version:
Collection of device converters to be used with zigbee-herdsman
340 lines • 12.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 m = __importStar(require("../lib/modernExtend"));
const extend = {
enableDisplay: m.binary({
name: "enable_display",
valueOn: [true, 0],
valueOff: [false, 1],
cluster: "hvacUserInterfaceCfg",
attribute: { ID: 0x0106, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
description: "Whether to enable the device display.",
}),
temperatureDisplayMode: m.enumLookup({
name: "temperature_display_mode",
lookup: { celsius: 0, fahrenheit: 1 },
cluster: "hvacUserInterfaceCfg",
attribute: "tempDisplayMode",
description: "The unit of the temperature displayed on the device screen.",
}),
comfortSmiley: m.binary({
name: "comfort_smiley",
valueOn: [true, 0],
valueOff: [false, 1],
cluster: "hvacUserInterfaceCfg",
attribute: { ID: 0x0002, type: zigbee_herdsman_1.Zcl.DataType.ENUM8 },
description: "Whether to show a comfort indicator on the device screen.",
}),
comfortTemperatureMin: m.numeric({
name: "comfort_temperature_min",
cluster: "hvacUserInterfaceCfg",
attribute: { ID: 0x0102, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
description: "Minimum temperature that is considered comfortable (default 20.00°C).",
unit: "°C",
valueMin: -50.0,
valueMax: 120.0,
valueStep: 0.01,
scale: 100,
}),
comfortTemperatureMax: m.numeric({
name: "comfort_temperature_max",
cluster: "hvacUserInterfaceCfg",
attribute: { ID: 0x0103, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
description: "Maximum temperature that is considered comfortable (default 25.00°C).",
unit: "°C",
valueMin: -50.0,
valueMax: 120.0,
valueStep: 0.01,
scale: 100,
}),
comfortHumidityMin: m.numeric({
name: "comfort_humidity_min",
cluster: "hvacUserInterfaceCfg",
attribute: { ID: 0x0104, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
description: "Minimum relative humidity that is considered comfortable (default 40.00%)",
unit: "%",
valueMin: 0,
valueMax: 100,
scale: 100,
}),
comfortHumidityMax: m.numeric({
name: "comfort_humidity_max",
cluster: "hvacUserInterfaceCfg",
attribute: { ID: 0x0105, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
description: "Maximum relative humidity that is considered comfortable (default 60.00%).",
unit: "%",
valueMin: 0,
valueMax: 100,
scale: 100,
}),
temperatureCalibration: m.numeric({
name: "temperature_calibration",
cluster: "hvacUserInterfaceCfg",
attribute: { ID: 0x0100, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
description: "Offset to add/subtract to the reported temperature (default 0°C).",
unit: "°C",
valueMin: -50.0,
valueMax: 50.0,
valueStep: 0.01,
scale: 100,
}),
humidityCalibration: m.numeric({
name: "humidity_calibration",
cluster: "hvacUserInterfaceCfg",
attribute: { ID: 0x0101, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
description: "Offset to add/subtract to the reported relative humidity (default 0%).",
unit: "%",
valueMin: -50.0,
valueMax: 50.0,
valueStep: 0.01,
scale: 100,
}),
measurementInterval: m.numeric({
name: "measurement_interval",
cluster: "hvacUserInterfaceCfg",
attribute: { ID: 0x0107, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
description: "Configure sensor measurement interval (default 10 seconds).",
unit: "s",
valueMin: 3,
valueMax: 30,
}),
};
/*
ZigbeeTLc devices with the full supported option set:
- Temperature (+calibration)
- Humidity (+calibration)
- Display
- Comfort (Temperature / Humidity)
*/
exports.definitions = [
{
zigbeeModel: ["LYWSD03MMC-z", "LYWSD03MMC-bz"],
// LYWSD03MMC or similar with ZigbeeTLc firmware (alternative is devbis firmware)
model: "LYWSD03MMC-z",
vendor: "Xiaomi",
description: "Temperature and Humidity Monitor (pvxx/ZigbeeTLc)",
extend: [
m.temperature({ reporting: { min: "10_SECONDS", max: "1_HOUR", change: 10 } }),
m.humidity(),
extend.enableDisplay,
extend.temperatureDisplayMode,
extend.comfortSmiley,
extend.comfortTemperatureMin,
extend.comfortTemperatureMax,
extend.comfortHumidityMin,
extend.comfortHumidityMax,
extend.temperatureCalibration,
extend.humidityCalibration,
extend.measurementInterval,
m.battery({
voltage: true,
}),
],
ota: true,
},
{
zigbeeModel: ["MJWSD06MMC-z", "MJWSD06MMC-bz"],
// MJWSD06MMC with ZigbeeTLc firmware, normal device is Bluetooth only
model: "MJWSD06MMC",
vendor: "Xiaomi",
description: "Temperature and Humidity Monitor 3 Mini (pvxx/ZigbeeTLc)",
extend: [
m.temperature({ reporting: { min: "10_SECONDS", max: "1_HOUR", change: 10 } }),
m.humidity(),
extend.enableDisplay,
extend.temperatureDisplayMode,
extend.comfortSmiley,
extend.comfortTemperatureMin,
extend.comfortTemperatureMax,
extend.comfortHumidityMin,
extend.comfortHumidityMax,
extend.temperatureCalibration,
extend.humidityCalibration,
extend.measurementInterval,
m.battery({
voltage: true,
}),
],
ota: true,
},
{
zigbeeModel: ["MHO-C122-z", "MHO-C122-bz"],
// MHO-C122 with ZigbeeTLc firmware, normal device is Bluetooth only
model: "MHO-C122",
vendor: "MiaoMiaoCe",
description: "Temperature and Humidity Monitor (pvxx/ZigbeeTLc)",
extend: [
m.temperature({ reporting: { min: "10_SECONDS", max: "1_HOUR", change: 10 } }),
m.humidity(),
extend.enableDisplay,
extend.temperatureDisplayMode,
extend.comfortSmiley,
extend.comfortTemperatureMin,
extend.comfortTemperatureMax,
extend.comfortHumidityMin,
extend.comfortHumidityMax,
extend.temperatureCalibration,
extend.humidityCalibration,
extend.measurementInterval,
m.battery({
voltage: true,
}),
],
ota: true,
},
{
zigbeeModel: ["MHO-C401-z", "MHO-C401-bz", "MHO-C401N-z", "MHO-C401N-bz"],
// MHO-C401 with ZigbeeTLc firmware, normal device is Bluetooth only
model: "MHO-C401",
vendor: "MiaoMiaoCe",
description: "Temperature and Humidity Monitor (pvxx/ZigbeeTLc)",
extend: [
m.temperature({ reporting: { min: "10_SECONDS", max: "1_HOUR", change: 10 } }),
m.humidity(),
extend.enableDisplay,
extend.temperatureDisplayMode,
extend.comfortSmiley,
extend.comfortTemperatureMin,
extend.comfortTemperatureMax,
extend.comfortHumidityMin,
extend.comfortHumidityMax,
extend.temperatureCalibration,
extend.humidityCalibration,
extend.measurementInterval,
m.battery({
voltage: true,
}),
],
ota: true,
},
{
zigbeeModel: ["CGG1-z", "CGG1-bz", "CGG1N-z", "CGG1N-bz"],
// CGG1 with ZigbeeTLc firmware, normal device is Bluetooth only
model: "CGG1",
vendor: "Qingping",
description: "Temp & RH Monitor (pvxx/ZigbeeTLc)",
extend: [
m.temperature({ reporting: { min: "10_SECONDS", max: "1_HOUR", change: 10 } }),
m.humidity(),
extend.enableDisplay,
extend.temperatureDisplayMode,
extend.comfortSmiley,
extend.comfortTemperatureMin,
extend.comfortTemperatureMax,
extend.comfortHumidityMin,
extend.comfortHumidityMax,
extend.temperatureCalibration,
extend.humidityCalibration,
extend.measurementInterval,
m.battery({
voltage: true,
}),
],
ota: true,
},
/*
ZigbeeTLc devices supporting:
- Temperature (+calibration)
- Humidity (+calibration)
- Display
*/
{
zigbeeModel: ["CGDK2-z", "CGDK2-bz"],
// CGDK2 with ZigbeeTLc firmware, normal device is Bluetooth only
model: "CGDK2",
vendor: "Qingping",
description: "Temp & RH Monitor Lite (pvxx/ZigbeeTLc)",
extend: [
m.temperature({ reporting: { min: "10_SECONDS", max: "1_HOUR", change: 10 } }),
m.humidity(),
extend.enableDisplay,
extend.temperatureDisplayMode,
extend.temperatureCalibration,
extend.humidityCalibration,
extend.measurementInterval,
m.battery({
voltage: true,
}),
],
ota: true,
},
{
zigbeeModel: ["LKTMZL02-z"],
// LKTMZL02 with ZigbeeTLc firmware
model: "LKTMZL02-z",
vendor: "Tuya",
description: "Temperature & Humidity Sensor (pvxx/ZigbeeTLc)",
extend: [
m.temperature({ reporting: { min: "10_SECONDS", max: "1_HOUR", change: 10 } }),
m.humidity(),
extend.enableDisplay,
extend.temperatureDisplayMode,
extend.temperatureCalibration,
extend.humidityCalibration,
extend.measurementInterval,
m.battery({
voltage: true,
}),
],
ota: true,
},
/*
ZigbeeTLc devices supporting:
- Temperature (+calibration)
- Humidity (+calibration)
*/
{
zigbeeModel: ["TS0201-z", "TS0201-bz", "TH03Z-z", "TH03Z-bz", "ZTH01-z", "ZTH01-bz", "ZTH02-z", "ZTH02-bz"],
// TS0201 with ZigbeeTLc firmware
model: "TS0201-z",
vendor: "Tuya",
description: "Temperature & Humidity Sensor (pvxx/ZigbeeTLc)",
extend: [
m.temperature({ reporting: { min: "10_SECONDS", max: "1_HOUR", change: 10 } }),
m.humidity(),
extend.temperatureCalibration,
extend.humidityCalibration,
extend.measurementInterval,
m.battery({
voltage: true,
}),
],
ota: true,
},
];
//# sourceMappingURL=zigbeetlc.js.map