zigbee-herdsman-converters 25.96.0 → 25.97.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -0
- package/dist/devices/lincukoo.js +1 -1
- package/dist/devices/lincukoo.js.map +1 -1
- package/dist/devices/lumi.d.ts.map +1 -1
- package/dist/devices/lumi.js +2 -0
- package/dist/devices/lumi.js.map +1 -1
- package/dist/devices/moes.d.ts.map +1 -1
- package/dist/devices/moes.js +56 -0
- package/dist/devices/moes.js.map +1 -1
- package/dist/devices/nodon.js +1 -1
- package/dist/devices/schneider_electric.d.ts.map +1 -1
- package/dist/devices/schneider_electric.js +152 -33
- package/dist/devices/schneider_electric.js.map +1 -1
- package/dist/devices/tuya.d.ts.map +1 -1
- package/dist/devices/tuya.js +66 -0
- package/dist/devices/tuya.js.map +1 -1
- package/dist/lib/lumi.js +1 -1
- package/dist/lib/lumi.js.map +1 -1
- package/dist/models-index.json +1 -1
- package/package.json +2 -2
package/dist/devices/tuya.js
CHANGED
|
@@ -12398,6 +12398,40 @@ Ensure all 12 segments are defined and separated by spaces.`),
|
|
|
12398
12398
|
],
|
|
12399
12399
|
},
|
|
12400
12400
|
},
|
|
12401
|
+
{
|
|
12402
|
+
fingerprint: tuya.fingerprint("TS0601", ["_TZE200_juzago6i"]),
|
|
12403
|
+
model: "TS0601-PIR-Sensor",
|
|
12404
|
+
vendor: "Tuya",
|
|
12405
|
+
description: "PIR 24GHz human presence sensor",
|
|
12406
|
+
extend: [m.battery(), tuya.modernExtend.tuyaBase({ dp: true })],
|
|
12407
|
+
exposes: [
|
|
12408
|
+
e.presence(),
|
|
12409
|
+
e.illuminance(),
|
|
12410
|
+
e.numeric("detection_distance", ea.STATE_SET).withValueMin(1).withValueMax(6).withUnit("m").withDescription("Maximum detection distance"),
|
|
12411
|
+
e
|
|
12412
|
+
.numeric("fading_time", ea.STATE_SET)
|
|
12413
|
+
.withValueMin(10)
|
|
12414
|
+
.withValueMax(180)
|
|
12415
|
+
.withValueStep(10)
|
|
12416
|
+
.withUnit("s")
|
|
12417
|
+
.withDescription("Presence keep time"),
|
|
12418
|
+
e.enum("last_time", ea.STATE, ["pir", "none"]).withDescription("Last trigger type"),
|
|
12419
|
+
e.numeric("static_detection_sensitivity", ea.STATE_SET).withValueMin(1).withValueMax(10).withDescription("Static detection sensitivity"),
|
|
12420
|
+
e.numeric("motion_detection_sensitivity", ea.STATE_SET).withValueMin(1).withValueMax(10).withDescription("Motion detection sensitivity"),
|
|
12421
|
+
],
|
|
12422
|
+
meta: {
|
|
12423
|
+
tuyaDatapoints: [
|
|
12424
|
+
[1, "presence", tuya.valueConverter.trueFalse0],
|
|
12425
|
+
[4, "battery", tuya.valueConverter.raw],
|
|
12426
|
+
[12, "illuminance", tuya.valueConverter.raw],
|
|
12427
|
+
[101, "detection_distance", tuya.valueConverter.raw],
|
|
12428
|
+
[103, "fading_time", tuya.valueConverter.raw],
|
|
12429
|
+
[104, "last_time", tuya.valueConverterBasic.lookup({ pir: 0, none: 1 })],
|
|
12430
|
+
[105, "static_detection_sensitivity", tuya.valueConverter.raw],
|
|
12431
|
+
[106, "motion_detection_sensitivity", tuya.valueConverter.raw],
|
|
12432
|
+
],
|
|
12433
|
+
},
|
|
12434
|
+
},
|
|
12401
12435
|
{
|
|
12402
12436
|
fingerprint: tuya.fingerprint("TS110E", ["_TZ3210_zxbtub8r"]),
|
|
12403
12437
|
model: "TS110E_1gang_1",
|
|
@@ -22543,5 +22577,37 @@ Ensure all 12 segments are defined and separated by spaces.`),
|
|
|
22543
22577
|
],
|
|
22544
22578
|
},
|
|
22545
22579
|
},
|
|
22580
|
+
{
|
|
22581
|
+
fingerprint: tuya.fingerprint("TS0601", ["_TZE200_qcasmfan"]),
|
|
22582
|
+
model: "GSKS-ZB",
|
|
22583
|
+
vendor: "GISE",
|
|
22584
|
+
description: "Smoke sensor",
|
|
22585
|
+
extend: [tuya.modernExtend.tuyaBase({ dp: true })],
|
|
22586
|
+
exposes: [e.battery(), e.tamper(), e.smoke()],
|
|
22587
|
+
meta: {
|
|
22588
|
+
tuyaDatapoints: [
|
|
22589
|
+
[1, "smoke", tuya.valueConverter.trueFalse0],
|
|
22590
|
+
[4, "tamper", tuya.valueConverter.raw],
|
|
22591
|
+
[15, "battery", tuya.valueConverter.raw],
|
|
22592
|
+
],
|
|
22593
|
+
},
|
|
22594
|
+
},
|
|
22595
|
+
{
|
|
22596
|
+
fingerprint: tuya.fingerprint("TS0601", ["_TZE204_byzdayie"]),
|
|
22597
|
+
model: "DDS238-1-Z1",
|
|
22598
|
+
vendor: "TOMZN",
|
|
22599
|
+
description: "Single phase DIN-rail energy meter with switch function",
|
|
22600
|
+
extend: [tuya.modernExtend.tuyaBase({ dp: true })],
|
|
22601
|
+
exposes: [tuya.exposes.switch(), e.current(), e.power(), e.voltage(), e.energy()],
|
|
22602
|
+
meta: {
|
|
22603
|
+
tuyaDatapoints: [
|
|
22604
|
+
[1, "state", tuya.valueConverter.onOff],
|
|
22605
|
+
[17, "energy", tuya.valueConverter.divideBy1000],
|
|
22606
|
+
[18, "current", tuya.valueConverter.divideBy1000],
|
|
22607
|
+
[19, "power", tuya.valueConverter.divideBy10],
|
|
22608
|
+
[20, "voltage", tuya.valueConverter.divideBy10],
|
|
22609
|
+
],
|
|
22610
|
+
},
|
|
22611
|
+
},
|
|
22546
22612
|
];
|
|
22547
22613
|
//# sourceMappingURL=tuya.js.map
|