zigbee-herdsman-converters 25.108.0 → 25.109.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 +31 -0
- package/dist/devices/custom_devices_diy.d.ts.map +1 -1
- package/dist/devices/custom_devices_diy.js +8 -0
- package/dist/devices/custom_devices_diy.js.map +1 -1
- package/dist/devices/danfoss.js +1 -1
- package/dist/devices/danfoss.js.map +1 -1
- package/dist/devices/domraem.d.ts.map +1 -1
- package/dist/devices/domraem.js +8 -1
- package/dist/devices/domraem.js.map +1 -1
- package/dist/devices/ikea.d.ts.map +1 -1
- package/dist/devices/ikea.js +108 -1
- package/dist/devices/ikea.js.map +1 -1
- package/dist/devices/moes.d.ts.map +1 -1
- package/dist/devices/moes.js +246 -1
- package/dist/devices/moes.js.map +1 -1
- package/dist/devices/muller_licht.d.ts.map +1 -1
- package/dist/devices/muller_licht.js +7 -0
- package/dist/devices/muller_licht.js.map +1 -1
- package/dist/devices/nous.js +2 -2
- package/dist/devices/nous.js.map +1 -1
- package/dist/devices/onesti.d.ts.map +1 -1
- package/dist/devices/onesti.js +73 -15
- package/dist/devices/onesti.js.map +1 -1
- package/dist/devices/philips.d.ts.map +1 -1
- package/dist/devices/philips.js +14 -1
- package/dist/devices/philips.js.map +1 -1
- package/dist/devices/shelly.d.ts.map +1 -1
- package/dist/devices/shelly.js +18 -0
- package/dist/devices/shelly.js.map +1 -1
- package/dist/devices/slacky_diy.d.ts.map +1 -1
- package/dist/devices/slacky_diy.js +322 -9
- package/dist/devices/slacky_diy.js.map +1 -1
- package/dist/devices/somfy.js +1 -1
- package/dist/devices/somfy.js.map +1 -1
- package/dist/devices/tuya.d.ts.map +1 -1
- package/dist/devices/tuya.js +53 -0
- package/dist/devices/tuya.js.map +1 -1
- package/dist/devices/yale.d.ts.map +1 -1
- package/dist/devices/yale.js +8 -1
- package/dist/devices/yale.js.map +1 -1
- package/dist/devices/yandex.d.ts.map +1 -1
- package/dist/devices/yandex.js +2 -4
- package/dist/devices/yandex.js.map +1 -1
- package/dist/lib/constants.d.ts.map +1 -1
- package/dist/lib/constants.js +1 -0
- package/dist/lib/constants.js.map +1 -1
- package/dist/models-index.json +1 -1
- package/package.json +1 -1
package/dist/devices/tuya.js
CHANGED
|
@@ -4766,6 +4766,7 @@ exports.definitions = [
|
|
|
4766
4766
|
description: "Donovan Panel Light",
|
|
4767
4767
|
},
|
|
4768
4768
|
tuya.whitelabel("Aldi", "F122SB62H22A4.5W", "LIGHTWAY smart home LED-lamp - filament", ["_TZ3000_g1glzzfk"]),
|
|
4769
|
+
tuya.whitelabel("Sibling", "Light-ZSLL", "Linear ceiling LED luminaire", ["_TZ3000_bumeauzp"]),
|
|
4769
4770
|
tuya.whitelabel("MiBoxer", "FUT035Z+", "Dual white LED controller", [
|
|
4770
4771
|
"_TZ3210_frm6149r",
|
|
4771
4772
|
"_TZ3210_jtifm80b",
|
|
@@ -6020,6 +6021,7 @@ exports.definitions = [
|
|
|
6020
6021
|
{
|
|
6021
6022
|
fingerprint: tuya.fingerprint("TS0001", [
|
|
6022
6023
|
"_TZ3000_tqlv4ug4",
|
|
6024
|
+
"_TZ3210_tqlv4ug4",
|
|
6023
6025
|
"_TZ3000_gjrubzje",
|
|
6024
6026
|
"_TZ3000_tygpxwqa",
|
|
6025
6027
|
"_TZ3000_4rbqgcuv",
|
|
@@ -6473,6 +6475,57 @@ exports.definitions = [
|
|
|
6473
6475
|
],
|
|
6474
6476
|
},
|
|
6475
6477
|
},
|
|
6478
|
+
{
|
|
6479
|
+
fingerprint: tuya.fingerprint("TS0601", ["_TZE284_pzm3wab5"]),
|
|
6480
|
+
model: "ZF24",
|
|
6481
|
+
vendor: "Tuya",
|
|
6482
|
+
description: "Human presence sensor (millimeter wave radar)",
|
|
6483
|
+
extend: [tuya.modernExtend.tuyaBase({ dp: true })],
|
|
6484
|
+
exposes: [
|
|
6485
|
+
e.presence(),
|
|
6486
|
+
e.numeric("distance", ea.STATE).withUnit("m").withDescription("Object distance"),
|
|
6487
|
+
e.illuminance(),
|
|
6488
|
+
e.numeric("move_sensitivity", ea.STATE_SET).withValueMin(1).withValueMax(10).withValueStep(1).withDescription("Mobility sensitivity"),
|
|
6489
|
+
e.numeric("presence_sensitivity", ea.STATE_SET).withValueMin(1).withValueMax(10).withValueStep(1).withDescription("Presence sensitivity"),
|
|
6490
|
+
e
|
|
6491
|
+
.numeric("presence_timeout", ea.STATE_SET)
|
|
6492
|
+
.withValueMin(1)
|
|
6493
|
+
.withValueMax(600)
|
|
6494
|
+
.withValueStep(1)
|
|
6495
|
+
.withUnit("s")
|
|
6496
|
+
.withDescription("Presence state timeout time"),
|
|
6497
|
+
e
|
|
6498
|
+
.numeric("detection_distance_max", ea.STATE_SET)
|
|
6499
|
+
.withValueMin(0.75)
|
|
6500
|
+
.withValueMax(9.0)
|
|
6501
|
+
.withValueStep(0.75)
|
|
6502
|
+
.withUnit("m")
|
|
6503
|
+
.withDescription("Maximum detection distance"),
|
|
6504
|
+
e.binary("state", ea.STATE_SET, "ON", "OFF").withDescription("Function"),
|
|
6505
|
+
e.binary("living_room", ea.STATE_SET, "ON", "OFF").withDescription("Living room"),
|
|
6506
|
+
e.binary("bedroom", ea.STATE_SET, "ON", "OFF").withDescription("Bedroom"),
|
|
6507
|
+
e.binary("bathroom", ea.STATE_SET, "ON", "OFF").withDescription("Bathroom"),
|
|
6508
|
+
e.binary("sleep", ea.STATE_SET, "ON", "OFF").withDescription("Sleep"),
|
|
6509
|
+
e.binary("radar_switch", ea.STATE_SET, "ON", "OFF").withDescription("Radar switch"),
|
|
6510
|
+
],
|
|
6511
|
+
meta: {
|
|
6512
|
+
tuyaDatapoints: [
|
|
6513
|
+
[1, "presence", tuya.valueConverter.trueFalse1],
|
|
6514
|
+
[2, "move_sensitivity", tuya.valueConverter.raw],
|
|
6515
|
+
[4, "detection_distance_max", tuya.valueConverter.divideBy100],
|
|
6516
|
+
[9, "distance", tuya.valueConverter.divideBy100],
|
|
6517
|
+
[101, "presence_timeout", tuya.valueConverter.raw],
|
|
6518
|
+
[102, "illuminance", tuya.valueConverter.raw],
|
|
6519
|
+
[103, "presence_sensitivity", tuya.valueConverter.raw],
|
|
6520
|
+
[104, "state", tuya.valueConverter.onOff],
|
|
6521
|
+
[105, "living_room", tuya.valueConverter.onOff],
|
|
6522
|
+
[106, "bedroom", tuya.valueConverter.onOff],
|
|
6523
|
+
[107, "bathroom", tuya.valueConverter.onOff],
|
|
6524
|
+
[108, "sleep", tuya.valueConverter.onOff],
|
|
6525
|
+
[109, "radar_switch", tuya.valueConverter.onOff],
|
|
6526
|
+
],
|
|
6527
|
+
},
|
|
6528
|
+
},
|
|
6476
6529
|
{
|
|
6477
6530
|
fingerprint: tuya.fingerprint("TS0601", [
|
|
6478
6531
|
"_TZE200_clm4gdw4",
|