zigbee-herdsman-converters
Version:
Collection of device converters to be used with zigbee-herdsman
141 lines • 6.58 kB
JavaScript
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 exposes = __importStar(require("../lib/exposes"));
const tuya = __importStar(require("../lib/tuya"));
const e = exposes.presets;
const ea = exposes.access;
exports.definitions = [
{
// Since a lot of Tuya devices use the same modelID, but use different datapoints
// it's necessary to provide a fingerprint instead of a zigbeeModel
fingerprint: [{ modelID: "TS0601", manufacturerName: "_TZE284_ajhu0zqb" }],
model: "SZW08",
vendor: "Lincukoo",
description: "Water leakage sensor with 2 in 1",
fromZigbee: [tuya.fz.datapoints],
toZigbee: [tuya.tz.datapoints],
onEvent: tuya.onEventSetTime, // Add this if you are getting no converter for 'commandMcuSyncTime'
configure: tuya.configureMagicPacket,
exposes: [
e.enum("alarm_status", ea.STATE, ["normal", "alarm"]).withDescription("device alarm status"),
e.enum("mode", ea.STATE_SET, ["leakage", "shortage"]).withDescription("work mode of the alarm"),
e.enum("alarm_ringtone", ea.STATE_SET, ["mute", "ring1", "ring2", "ring3"]).withDescription("Ringtone of the alarm"),
e.battery(),
],
meta: {
// All datapoints go in here
tuyaDatapoints: [
[4, "battery", tuya.valueConverter.raw],
[102, "alarm_status", tuya.valueConverterBasic.lookup({ normal: 0, alarm: 1 })],
[103, "alarm_ringtone", tuya.valueConverterBasic.lookup({ mute: 0, ring1: 1, ring2: 2, ring3: 3 })],
[101, "mode", tuya.valueConverterBasic.lookup({ leakage: 0, shortage: 1 })],
],
},
},
{
fingerprint: [{ modelID: "TS0601", manufacturerName: "_TZE204_lw5ny7tp" }],
model: "SZLR08",
vendor: "Lincukoo",
description: "24GHz millimeter wave radar",
configure: tuya.configureMagicPacket,
fromZigbee: [tuya.fz.datapoints],
toZigbee: [tuya.tz.datapoints],
onEvent: tuya.onEventSetTime,
exposes: [
e.presence(),
e.illuminance(),
e
.numeric("installation_height", ea.STATE_SET)
.withValueMin(1.5)
.withValueMax(6)
.withValueStep(0.75)
.withUnit("m")
.withDescription("Maximum range"),
e
.numeric("radar_sensitivity", ea.STATE_SET)
.withValueMin(68)
.withValueMax(90)
.withValueStep(1)
.withDescription("Sensitivity of the radar"),
e.numeric("fading_time", ea.STATE_SET).withValueMin(3).withValueMax(1799).withValueStep(1).withDescription("Fading time").withUnit("s"),
e.binary("relay_switch", ea.STATE_SET, "ON", "OFF").withDescription("Relay switch"),
e.binary("radar_switch", ea.STATE_SET, "ON", "OFF").withDescription("Radar switch"),
e.binary("indicator", ea.STATE_SET, "ON", "OFF").withDescription("LED indicator"),
e.enum("relay_mode", ea.STATE_SET, ["auto", "manual"]).withDescription("control mode of the relay"),
e.enum("radar_mode", ea.STATE_SET, ["people_on", "people_off"]).withDescription("radar mode for the relay controlling"),
],
meta: {
tuyaDatapoints: [
[1, "presence", tuya.valueConverter.trueFalse1],
[20, "illuminance", tuya.valueConverter.raw],
[13, "installation_height", tuya.valueConverter.divideBy100],
[16, "radar_sensitivity", tuya.valueConverter.raw],
[103, "fading_time", tuya.valueConverter.raw],
[101, "indicator", tuya.valueConverter.onOff],
[104, "relay_switch", tuya.valueConverter.onOff],
[102, "radar_switch", tuya.valueConverter.onOff], // toggle to enable presence notifications in app is ignored
[106, "relay_mode", tuya.valueConverterBasic.lookup({ auto: 0, manual: 1 })],
[107, "radar_mode", tuya.valueConverterBasic.lookup({ people_on: 0, people_off: 1 })],
],
},
},
{
fingerprint: [{ modelID: "TS0601", manufacturerName: "_TZE284_9ovska9w" }],
model: "SZLM04U",
vendor: "Lincukoo",
description: "Motion and brightness sensor",
configure: tuya.configureMagicPacket,
fromZigbee: [tuya.fz.datapoints],
toZigbee: [tuya.tz.datapoints],
onEvent: tuya.onEventSetTime,
exposes: [
e.occupancy(),
e.illuminance(),
e.battery(),
e.binary("usb_power", ea.STATE, "ON", "OFF").withDescription("check usb power plug in or not"),
],
meta: {
tuyaDatapoints: [
[1, "occupancy", tuya.valueConverter.trueFalse0],
[101, "illuminance", tuya.valueConverter.raw],
[4, "battery", tuya.valueConverter.raw],
[102, "usb_power", tuya.valueConverter.onOff],
],
},
},
];
//# sourceMappingURL=lincukoo.js.map
;