zigbee-herdsman-converters 25.78.0 → 25.79.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 +19 -0
- package/dist/devices/iris.d.ts.map +1 -1
- package/dist/devices/iris.js +1 -0
- package/dist/devices/iris.js.map +1 -1
- package/dist/devices/lumi.js +2 -2
- package/dist/devices/lumi.js.map +1 -1
- package/dist/devices/lytko.d.ts.map +1 -1
- package/dist/devices/lytko.js +132 -6
- package/dist/devices/lytko.js.map +1 -1
- package/dist/devices/paulmann.d.ts.map +1 -1
- package/dist/devices/paulmann.js +1 -0
- package/dist/devices/paulmann.js.map +1 -1
- package/dist/devices/philips.d.ts.map +1 -1
- package/dist/devices/philips.js +7 -0
- package/dist/devices/philips.js.map +1 -1
- package/dist/devices/tuya.d.ts.map +1 -1
- package/dist/devices/tuya.js +60 -1
- package/dist/devices/tuya.js.map +1 -1
- package/dist/devices/yandex.d.ts.map +1 -1
- package/dist/devices/yandex.js +155 -29
- package/dist/devices/yandex.js.map +1 -1
- package/dist/models-index.json +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tuya.d.ts","sourceRoot":"","sources":["../../src/devices/tuya.ts"],"names":[],"mappings":"AAaA,OAAO,KAAK,EAAC,oBAAoB,EAA4D,MAAM,cAAc,CAAC;AAmhClH,eAAO,MAAM,WAAW,EAAE,oBAAoB,
|
|
1
|
+
{"version":3,"file":"tuya.d.ts","sourceRoot":"","sources":["../../src/devices/tuya.ts"],"names":[],"mappings":"AAaA,OAAO,KAAK,EAAC,oBAAoB,EAA4D,MAAM,cAAc,CAAC;AAmhClH,eAAO,MAAM,WAAW,EAAE,oBAAoB,EAmjoB7C,CAAC"}
|
package/dist/devices/tuya.js
CHANGED
|
@@ -4180,6 +4180,7 @@ exports.definitions = [
|
|
|
4180
4180
|
"_TZ3000_ug1vtuzn",
|
|
4181
4181
|
"_TZ3000_eo3dttwe",
|
|
4182
4182
|
"_TZ3000_jwcixnrz",
|
|
4183
|
+
"_TZ3000_u2bbagu4",
|
|
4183
4184
|
]),
|
|
4184
4185
|
model: "TS0215A_remote",
|
|
4185
4186
|
vendor: "Tuya",
|
|
@@ -13773,7 +13774,7 @@ exports.definitions = [
|
|
|
13773
13774
|
],
|
|
13774
13775
|
},
|
|
13775
13776
|
{
|
|
13776
|
-
fingerprint: tuya.fingerprint("TS0001", ["_TZ3210_dse8ogfy", "_TZ3210_j4pdtz9v", "_TZ3210_7vgttna6"]),
|
|
13777
|
+
fingerprint: tuya.fingerprint("TS0001", ["_TZ3210_dse8ogfy", "_TZ3210_j4pdtz9v", "_TZ3210_7vgttna6", "_TZ3210_a04acm9s"]),
|
|
13777
13778
|
model: "TS0001_fingerbot",
|
|
13778
13779
|
vendor: "Tuya",
|
|
13779
13780
|
description: "Zigbee fingerbot plus",
|
|
@@ -21194,5 +21195,63 @@ exports.definitions = [
|
|
|
21194
21195
|
},
|
|
21195
21196
|
exposes: [e.battery(), e.action(["on_1", "off_1", "on_2", "off_2"])],
|
|
21196
21197
|
},
|
|
21198
|
+
{
|
|
21199
|
+
fingerprint: tuya.fingerprint("ZP-301Z", ["_TZE284_d4h8j2n6"]),
|
|
21200
|
+
model: "ZP-301Z",
|
|
21201
|
+
vendor: "Arteco",
|
|
21202
|
+
description: "PIR motion sensor light with night light function",
|
|
21203
|
+
extend: [tuya.modernExtend.tuyaBase({ dp: true })],
|
|
21204
|
+
exposes: [
|
|
21205
|
+
e.presence().withDescription("Human presence detected"),
|
|
21206
|
+
e.numeric("battery_value", ea.STATE).withDescription("battery value in %").withUnit("%"),
|
|
21207
|
+
e.illuminance(),
|
|
21208
|
+
e
|
|
21209
|
+
.numeric("brightness_value", ea.STATE_SET)
|
|
21210
|
+
.withDescription("When the light brightness is activated after the lights are turned on")
|
|
21211
|
+
.withUnit("%")
|
|
21212
|
+
.withValueMin(5)
|
|
21213
|
+
.withValueMax(100)
|
|
21214
|
+
.withValueStep(1),
|
|
21215
|
+
e
|
|
21216
|
+
.numeric("presence_time", ea.STATE_SET)
|
|
21217
|
+
.withDescription("How long to wait before turning on the lights after detecting a person and meeting the light conditions")
|
|
21218
|
+
.withValueMin(0)
|
|
21219
|
+
.withValueMax(60)
|
|
21220
|
+
.withUnit("s")
|
|
21221
|
+
.withValueStep(1),
|
|
21222
|
+
e
|
|
21223
|
+
.numeric("presence_delay", ea.STATE_SET)
|
|
21224
|
+
.withDescription("How long after no one is detected will the lights turn off")
|
|
21225
|
+
.withValueMin(5)
|
|
21226
|
+
.withValueMax(120)
|
|
21227
|
+
.withUnit("s")
|
|
21228
|
+
.withValueStep(1),
|
|
21229
|
+
e
|
|
21230
|
+
.numeric("illuminance_trigger", ea.STATE_SET)
|
|
21231
|
+
.withDescription("Detection is only allowed when the illuminance is less than the current value.")
|
|
21232
|
+
.withValueMin(0)
|
|
21233
|
+
.withValueMax(10000)
|
|
21234
|
+
.withValueStep(1),
|
|
21235
|
+
e
|
|
21236
|
+
.numeric("detection_cycle", ea.STATE_SET)
|
|
21237
|
+
.withDescription("How often is the battery level and illuminance detected")
|
|
21238
|
+
.withValueMin(10)
|
|
21239
|
+
.withValueMax(1200)
|
|
21240
|
+
.withValueStep(5)
|
|
21241
|
+
.withUnit("s"),
|
|
21242
|
+
],
|
|
21243
|
+
meta: {
|
|
21244
|
+
tuyaDatapoints: [
|
|
21245
|
+
[1, "presence", tuya.valueConverter.trueFalse1],
|
|
21246
|
+
[14, "battery_value", tuya.valueConverter.raw],
|
|
21247
|
+
[20, "illuminance", tuya.valueConverter.raw],
|
|
21248
|
+
[100, "brightness_value", tuya.valueConverter.raw],
|
|
21249
|
+
[101, "illuminance_trigger", tuya.valueConverter.raw],
|
|
21250
|
+
[102, "presence_time", tuya.valueConverter.raw],
|
|
21251
|
+
[103, "presence_delay", tuya.valueConverter.raw],
|
|
21252
|
+
[104, "detection_cycle", tuya.valueConverter.raw],
|
|
21253
|
+
],
|
|
21254
|
+
},
|
|
21255
|
+
},
|
|
21197
21256
|
];
|
|
21198
21257
|
//# sourceMappingURL=tuya.js.map
|