zigbee-herdsman-converters
Version:
Collection of device converters to be used with zigbee-herdsman
651 lines • 26.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 () {
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;
const fzLocal = {
thirdreality_acceleration: {
cluster: "3rVirationSpecialcluster",
type: ["attributeReport", "readResponse"],
convert: (model, msg, publish, options, meta) => {
const payload = {};
if (msg.data.xAxis)
payload.x_axis = msg.data.xAxis;
if (msg.data.yAxis)
payload.y_axis = msg.data.yAxis;
if (msg.data.zAxis)
payload.z_axis = msg.data.zAxis;
return payload;
},
},
thirdreality_private_motion_sensor: {
cluster: "r3Specialcluster",
type: "attributeReport",
convert: (model, msg, publish, options, meta) => {
const zoneStatus = msg.data[2];
return { occupancy: (zoneStatus & 1) > 0 };
},
},
};
exports.definitions = [
{
zigbeeModel: ["3RSS009Z"],
model: "3RSS009Z",
vendor: "Third Reality",
description: "Smart switch Gen3",
ota: true,
fromZigbee: [fz.on_off, fz.battery],
toZigbee: [tz.on_off, tz.ignore_transition],
exposes: [e.switch(), e.battery(), e.battery_voltage()],
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await endpoint.read("genPowerCfg", ["batteryPercentageRemaining"]);
device.powerSource = "Battery";
device.save();
},
extend: [
m.deviceAddCustomCluster("3rSwitchGen3SpecialCluster", {
ID: 0xff02,
manufacturerCode: 0x1233,
attributes: {
backOn: { ID: 0x0001, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
backOff: { ID: 0x0002, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
},
commands: {},
commandsResponse: {},
}),
],
},
{
zigbeeModel: ["3RSS008Z"],
model: "3RSS008Z",
vendor: "Third Reality",
description: "RealitySwitch Plus",
fromZigbee: [fz.on_off, fz.battery],
toZigbee: [tz.on_off, tz.ignore_transition],
meta: { battery: { voltageToPercentage: "3V_2100" } },
exposes: [e.switch(), e.battery(), e.battery_voltage()],
},
{
zigbeeModel: ["3RSS007Z"],
model: "3RSS007Z",
vendor: "Third Reality",
description: "Smart light switch",
extend: [m.onOff()],
meta: { disableDefaultResponse: true },
},
{
zigbeeModel: ["3RSL011Z"],
model: "3RSL011Z",
vendor: "Third Reality",
description: "Smart light A19",
extend: [m.light({ colorTemp: { range: undefined } })],
},
{
zigbeeModel: ["3RSL012Z"],
model: "3RSL012Z",
vendor: "Third Reality",
description: "Smart light BR30",
extend: [m.light({ colorTemp: { range: undefined } })],
},
{
zigbeeModel: ["3RWS18BZ"],
model: "3RWS18BZ",
vendor: "Third Reality",
description: "Water sensor",
fromZigbee: [fz.ias_water_leak_alarm_1, fz.battery],
toZigbee: [],
ota: true,
extend: [
m.deviceAddCustomCluster("r3Specialcluster", {
ID: 0xff01,
manufacturerCode: 0x1233,
attributes: {
siren_on_off: { ID: 0x0010, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
siren_mintues: { ID: 0x0011, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
},
commands: {},
commandsResponse: {},
}),
],
exposes: [e.water_leak(), e.battery_low(), e.battery(), e.battery_voltage()],
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await endpoint.read("genPowerCfg", ["batteryPercentageRemaining"]);
device.powerSource = "Battery";
device.save();
},
},
{
zigbeeModel: ["3RMS16BZ"],
model: "3RMS16BZ",
vendor: "Third Reality",
description: "Wireless motion sensor",
fromZigbee: [fz.ias_occupancy_alarm_1, fz.battery],
toZigbee: [],
ota: true,
exposes: [e.occupancy(), e.battery_low(), e.battery(), e.battery_voltage()],
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await endpoint.read("genPowerCfg", ["batteryPercentageRemaining"]);
device.powerSource = "Battery";
device.save();
},
extend: [
m.deviceAddCustomCluster("3rMotionSpecialCluster", {
ID: 0xff01,
manufacturerCode: 0x1233,
attributes: {
coolDownTime: { ID: 0x0001, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
},
commands: {},
commandsResponse: {},
}),
],
},
{
zigbeeModel: ["3RSMR01067Z"],
model: "3RSMR01067Z",
vendor: "Third Reality",
description: "Smart motion sensor R1",
ota: true,
extend: [
m.iasZoneAlarm({ zoneType: "occupancy", zoneAttributes: ["alarm_1", "battery_low"] }),
m.battery({ voltage: true }),
m.deviceAddCustomCluster("3rRadarSpecialCluster", {
ID: 0xff01,
manufacturerCode: 0x1407,
attributes: {
coolDownTime: { ID: 0x0001, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
},
commands: {},
commandsResponse: {},
}),
],
},
{
zigbeeModel: ["3RDS17BZ"],
model: "3RDS17BZ",
vendor: "Third Reality",
description: "Door sensor",
fromZigbee: [fz.ias_contact_alarm_1, fz.battery],
toZigbee: [],
ota: true,
exposes: [e.contact(), e.battery_low(), e.battery(), e.battery_voltage()],
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await endpoint.read("genPowerCfg", ["batteryPercentageRemaining"]);
device.powerSource = "Battery";
device.save();
},
extend: [
m.deviceAddCustomCluster("3rDoorSpecialCluster", {
ID: 0xff01,
manufacturerCode: 0x1233,
attributes: {
delayOpenAttrId: { ID: 0x0000, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
},
commands: {},
commandsResponse: {},
}),
],
},
{
zigbeeModel: ["3RDTS01056Z"],
model: "3RDTS01056Z",
vendor: "Third Reality",
description: "Garage door tilt sensor",
extend: [
m.battery({ percentageReporting: false }),
m.forcePowerSource({ powerSource: "Battery" }),
m.iasZoneAlarm({ zoneType: "contact", zoneAttributes: ["alarm_1", "battery_low"] }),
m.deviceAddCustomCluster("3rGarageDoorSpecialCluster", {
ID: 0xff01,
manufacturerCode: 0x1407,
attributes: {
delayOpenAttrId: { ID: 0x0000, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
zclCabrationAttrId: { ID: 0x0003, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
},
commands: {},
commandsResponse: {},
}),
],
ota: true,
},
{
zigbeeModel: ["3RSP019BZ"],
model: "3RSP019BZ",
vendor: "Third Reality",
description: "Zigbee / BLE smart plug",
extend: [
m.onOff(),
m.deviceAddCustomCluster("3rPlugGen1SpecialCluster", {
ID: 0xff03,
manufacturerCode: 0x1233,
attributes: {
onToOffDelay: { ID: 0x0001, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
offToOnDelay: { ID: 0x0002, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
},
commands: {},
commandsResponse: {},
}),
],
ota: true,
},
{
zigbeeModel: ["3RSB015BZ"],
model: "3RSB015BZ",
vendor: "Third Reality",
description: "Roller shade",
fromZigbee: [fz.cover_position_tilt, fz.battery],
toZigbee: [tz.cover_state, tz.cover_position_tilt],
meta: { battery: { dontDividePercentage: false } },
ota: true,
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ["genPowerCfg", "closuresWindowCovering"]);
await reporting.currentPositionLiftPercentage(endpoint);
try {
await reporting.batteryPercentageRemaining(endpoint);
}
catch {
/* Fails for some*/
}
},
exposes: [e.cover_position(), e.battery()],
extend: [
m.deviceAddCustomCluster("3rRollerShadeSpecialCluster", {
ID: 0xfff1,
manufacturerCode: 0x1233,
attributes: {
infraredOff: { ID: 0x0000, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
},
commands: {},
commandsResponse: {},
}),
],
},
{
zigbeeModel: ["TRZB3"],
model: "TRZB3",
vendor: "Third Reality",
description: "Roller blind motor",
extend: [m.battery()],
fromZigbee: [fz.cover_position_tilt],
toZigbee: [tz.cover_state, tz.cover_position_tilt],
exposes: [e.cover_position()],
},
{
zigbeeModel: ["3RSB02015Z"],
model: "3RSB02015Z",
vendor: "Third Reality",
description: "Smart blind Gen2",
extend: [
m.battery(),
m.windowCovering({ controls: ["lift"] }),
m.commandsWindowCovering({ commands: ["open", "close", "stop"] }),
m.deviceAddCustomCluster("3rSmartBlindGen2SpecialCluster", {
ID: 0xfff1,
manufacturerCode: 0x1233,
attributes: {
infrared_enable: { ID: 0x0000, type: 0x20 },
calibration_distance: { ID: 0x0001, type: 0x28 },
limit_position: { ID: 0x0002, type: 0x21 },
},
commands: {},
commandsResponse: {},
}),
],
},
{
zigbeeModel: ["3RSB22BZ"],
model: "3RSB22BZ",
vendor: "Third Reality",
description: "Smart button",
fromZigbee: [fz.itcmdr_clicks],
ota: true,
exposes: [e.action(["single", "double", "hold", "release"])],
extend: [
m.battery(),
m.forcePowerSource({ powerSource: "Battery" }),
m.deviceAddCustomCluster("3rButtonSpecialCluster", {
ID: 0xff01,
manufacturerCode: 0x1233,
attributes: {
cancelDoubleClick: { ID: 0x0000, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
},
commands: {},
commandsResponse: {},
}),
],
},
{
zigbeeModel: ["3RTHS24BZ"],
model: "3RTHS24BZ",
vendor: "Third Reality",
description: "Temperature and humidity sensor",
extend: [
m.temperature(),
m.humidity(),
m.battery(),
m.forcePowerSource({ powerSource: "Battery" }),
m.deviceAddCustomCluster("3rSpecialCluster", {
ID: 0xff01,
manufacturerCode: 0x1233,
attributes: {
celsiusDegreeCalibration: { ID: 0x0031, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
humidityCalibration: { ID: 0x0032, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
fahrenheitDegreeCalibration: { ID: 0x0033, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
},
commands: {},
commandsResponse: {},
}),
],
ota: true,
},
{
zigbeeModel: ["3RSM0147Z"],
model: "3RSM0147Z",
vendor: "Third Reality",
description: "Soil sensor",
extend: [
m.temperature(),
m.humidity(),
m.battery(),
m.deviceAddCustomCluster("3rSoilSpecialCluster", {
ID: 0xff01,
manufacturerCode: 0x1407,
attributes: {
celsiusDegreeCalibration: { ID: 0x0031, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
humidityCalibration: { ID: 0x0032, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
fahrenheitDegreeCalibration: { ID: 0x0033, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
},
commands: {},
commandsResponse: {},
}),
],
ota: true,
},
{
zigbeeModel: ["3RTHS0224Z"],
model: "3RTHS0224Z",
vendor: "Third Reality",
description: "Temperature and humidity sensor lite",
extend: [
m.temperature(),
m.humidity(),
m.battery(),
m.deviceAddCustomCluster("3rSpecialCluster", {
ID: 0xff01,
manufacturerCode: 0x1407,
attributes: {
celsiusDegreeCalibration: { ID: 0x0031, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
humidityCalibration: { ID: 0x0032, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
fahrenheitDegreeCalibration: { ID: 0x0033, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
},
commands: {},
commandsResponse: {},
}),
],
ota: true,
},
{
zigbeeModel: ["3RWK0148Z"],
model: "3RWK0148Z",
vendor: "Third Reality",
description: "Smart watering kit",
extend: [
m.battery({ percentage: true, voltage: true, lowStatus: true, percentageReporting: true }),
m.onOff({ powerOnBehavior: false }),
m.deviceAddCustomCluster("3rWateringSpecialCluster", {
ID: 0xfff2,
manufacturerCode: 0x1407,
attributes: {
wateringTimes: { ID: 0x0000, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
intervalDay: { ID: 0x0001, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
},
commands: {},
commandsResponse: {},
}),
],
ota: true,
},
{
zigbeeModel: ["3RSP02028BZ"],
model: "3RSP02028BZ",
vendor: "Third Reality",
description: "Zigbee / BLE smart plug with power",
fromZigbee: [fz.on_off, fz.electrical_measurement, fz.metering, fz.power_on_behavior],
toZigbee: [tz.on_off, tz.power_on_behavior],
ota: true,
exposes: [e.switch(), e.power_on_behavior(), e.ac_frequency(), e.power(), e.power_factor(), e.energy(), e.current(), e.voltage()],
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ["genOnOff", "haElectricalMeasurement", "seMetering"]);
await endpoint.read("haElectricalMeasurement", ["acPowerMultiplier", "acPowerDivisor"]);
await reporting.onOff(endpoint);
await reporting.activePower(endpoint, { change: 10 });
await reporting.rmsCurrent(endpoint, { change: 50 });
await reporting.rmsVoltage(endpoint, { change: 5 });
await reporting.readMeteringMultiplierDivisor(endpoint);
endpoint.saveClusterAttributeKeyValue("seMetering", { divisor: 3600000, multiplier: 1 });
endpoint.saveClusterAttributeKeyValue("haElectricalMeasurement", {
acVoltageMultiplier: 1,
acVoltageDivisor: 10,
acCurrentMultiplier: 1,
acCurrentDivisor: 1000,
acPowerMultiplier: 1,
acPowerDivisor: 10,
});
device.save();
},
extend: [
m.deviceAddCustomCluster("3rPlugGen2SpecialCluster", {
ID: 0xff03,
manufacturerCode: 0x1233,
attributes: {
resetSummationDelivered: { ID: 0x0000, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
onToOffDelay: { ID: 0x0001, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
offToOnDelay: { ID: 0x0002, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
},
commands: {},
commandsResponse: {},
}),
],
},
{
zigbeeModel: ["3RSP02064Z", "3RSPE02065Z", "3RSPU01080Z"],
model: "3RSP02064Z",
vendor: "Third Reality",
description: "Smart Plug Gen3",
whiteLabel: [
{ vendor: "Third Reality", model: "3RSPE02065Z", description: "Smart Plug E3", fingerprint: [{ modelID: "3RSPE02065Z" }] },
{ vendor: "Third Reality", model: "3RSPU01080Z", description: "Smart Plug UZ1", fingerprint: [{ modelID: "3RSPU01080Z" }] },
],
extend: [
m.onOff(),
m.electricityMeter({ acFrequency: true, powerFactor: true }),
m.deviceAddCustomCluster("3rDualPlugSpecialcluster", {
ID: 0xff03,
manufacturerCode: 0x1407,
attributes: {
resetSummationDelivered: { ID: 0x0000, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
onToOffDelay: { ID: 0x0001, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
offToOnDelay: { ID: 0x0002, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
},
commands: {},
commandsResponse: {},
}),
],
ota: true,
},
{
zigbeeModel: ["3RDP01072Z", "3RWP01073Z"],
model: "3RDP01072Z",
vendor: "Third Reality",
description: "Smart Dual Plug ZP1",
ota: true,
whiteLabel: [{ vendor: "Third Reality", model: "3RWP01073Z", description: "Smart Wall Plug ZW1", fingerprint: [{ modelID: "3RWP01073Z" }] }],
extend: [
m.deviceEndpoints({ endpoints: { left: 1, right: 2 } }),
m.onOff({ endpointNames: ["left", "right"] }),
m.electricityMeter({ acFrequency: true, powerFactor: true, endpointNames: ["left", "right"], energy: { divisor: 1000 } }),
m.deviceAddCustomCluster("3rDualPlugSpecialcluster", {
ID: 0xff03,
manufacturerCode: 0x1407,
attributes: {
resetSummationDelivered: { ID: 0x0000, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
onToOffDelay: { ID: 0x0001, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
offToOnDelay: { ID: 0x0002, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
},
commands: {},
commandsResponse: {},
}),
],
},
{
zigbeeModel: ["3RVS01031Z"],
model: "3RVS01031Z",
vendor: "Third Reality",
description: "Zigbee vibration sensor",
fromZigbee: [fz.ias_vibration_alarm_1, fz.battery, fzLocal.thirdreality_acceleration],
toZigbee: [],
ota: true,
exposes: [e.vibration(), e.battery_low(), e.battery(), e.battery_voltage(), e.x_axis(), e.y_axis(), e.z_axis()],
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await endpoint.read("genPowerCfg", ["batteryPercentageRemaining"]);
device.powerSource = "Battery";
device.save();
},
extend: [
m.deviceAddCustomCluster("3rVirationSpecialcluster", {
ID: 0xfff1,
manufacturerCode: 0x1233,
attributes: {
coolDownTime: { ID: 0x0004, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
xAxis: { ID: 0x0001, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
yAxis: { ID: 0x0002, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
zAxis: { ID: 0x0003, type: zigbee_herdsman_1.Zcl.DataType.INT16 },
},
commands: {},
commandsResponse: {},
}),
],
},
{
zigbeeModel: ["3RSNL02043Z"],
model: "3RSNL02043Z",
vendor: "Third Reality",
description: "Zigbee multi-function night light",
ota: true,
extend: [
m.light({ color: true }),
m.deviceAddCustomCluster("r3Specialcluster", {
ID: 0xfc00,
manufacturerCode: 0x130d,
attributes: {
coldDownTime: { ID: 0x0003, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
localRoutinTime: { ID: 0x0004, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
luxThreshold: { ID: 0x0005, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
},
commands: {},
commandsResponse: {},
}),
m.illuminance(),
m.forcePowerSource({ powerSource: "Mains (single phase)" }),
],
fromZigbee: [fzLocal.thirdreality_private_motion_sensor, fz.ias_occupancy_alarm_1_report],
exposes: [e.occupancy()],
},
{
zigbeeModel: ["3RCB01057Z"],
model: "3RCB01057Z",
vendor: "Third Reality",
description: "Zigbee color lights",
ota: true,
extend: [m.light({ colorTemp: { range: [154, 500] }, color: { modes: ["xy", "hs"] } })],
},
{
zigbeeModel: ["3RSPE01044BZ"],
model: "3RSPE01044BZ",
vendor: "Third Reality",
description: "Zigbee / BLE smart plug with power",
fromZigbee: [fz.on_off, fz.electrical_measurement, fz.metering, fz.power_on_behavior],
toZigbee: [tz.on_off, tz.power_on_behavior],
ota: true,
exposes: [e.switch(), e.power_on_behavior(), e.ac_frequency(), e.power(), e.power_factor(), e.energy(), e.current(), e.voltage()],
configure: async (device, coordinatorEndpoint) => {
const endpoint = device.getEndpoint(1);
await reporting.bind(endpoint, coordinatorEndpoint, ["genOnOff", "haElectricalMeasurement", "seMetering"]);
await endpoint.read("haElectricalMeasurement", ["acPowerMultiplier", "acPowerDivisor"]);
await reporting.onOff(endpoint);
await reporting.activePower(endpoint, { change: 10 });
await reporting.rmsCurrent(endpoint, { change: 50 });
await reporting.rmsVoltage(endpoint, { change: 5 });
await reporting.readMeteringMultiplierDivisor(endpoint);
endpoint.saveClusterAttributeKeyValue("seMetering", { divisor: 3600000, multiplier: 1 });
endpoint.saveClusterAttributeKeyValue("haElectricalMeasurement", {
acVoltageMultiplier: 1,
acVoltageDivisor: 10,
acCurrentMultiplier: 1,
acCurrentDivisor: 1000,
acPowerMultiplier: 1,
acPowerDivisor: 10,
});
device.save();
},
extend: [
m.deviceAddCustomCluster("3rPlugE2Specialcluster", {
ID: 0xff03,
manufacturerCode: 0x1233,
attributes: {
resetSummationDelivered: { ID: 0x0000, type: zigbee_herdsman_1.Zcl.DataType.UINT8 },
onToOffDelay: { ID: 0x0001, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
offToOnDelay: { ID: 0x0002, type: zigbee_herdsman_1.Zcl.DataType.UINT16 },
},
commands: {},
commandsResponse: {},
}),
],
},
];
//# sourceMappingURL=third_reality.js.map