zigbee-herdsman-converters 25.95.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.
@@ -5555,6 +5555,7 @@ Ensure all 12 segments are defined and separated by spaces.`),
5555
5555
  "_TZ3000_ruldv5dt",
5556
5556
  "_TZ3000_fbjdkph9",
5557
5557
  "_TZ3000_zbfya6h0",
5558
+ "_TZ3000_hznzbl0x",
5558
5559
  ]),
5559
5560
  model: "TS0002_basic",
5560
5561
  vendor: "Tuya",
@@ -5568,12 +5569,14 @@ Ensure all 12 segments are defined and separated by spaces.`),
5568
5569
  tuya.whitelabel("Mercator Ikuü", "SSW02", "2 gang switch", ["_TZ3000_fbjdkph9"]),
5569
5570
  tuya.whitelabel("Aubess", "TMZ02", "2 gang switch", ["_TZ3000_lmlsduws"]),
5570
5571
  tuya.whitelabel("RSH", "TS0002_basic_2", "2 gang switch", ["_TZ3000_zbfya6h0"]),
5572
+ tuya.whitelabel("EKAZA", "EKAC-T3092Z", "2 gang switch", ["_TZ3000_hznzbl0x"]),
5571
5573
  ],
5572
5574
  extend: [
5573
5575
  tuya.modernExtend.tuyaOnOff({
5574
5576
  switchType: true,
5575
5577
  endpoints: ["l1", "l2"],
5576
5578
  powerOutageMemory: true,
5579
+ onOffCountdown: (m) => m === "_TZ3000_hznzbl0x",
5577
5580
  }),
5578
5581
  ],
5579
5582
  endpoint: (device) => {
@@ -10112,7 +10115,7 @@ Ensure all 12 segments are defined and separated by spaces.`),
10112
10115
  model: "X5H-GB-B",
10113
10116
  vendor: "Tuya",
10114
10117
  description: "Wall-mount thermostat",
10115
- fromZigbee: [fz.ignore_tuya_set_time, legacy.fromZigbee.x5h_thermostat],
10118
+ fromZigbee: [legacy.fromZigbee.x5h_thermostat],
10116
10119
  toZigbee: [legacy.toZigbee.x5h_thermostat],
10117
10120
  whiteLabel: [
10118
10121
  { vendor: "Beok", model: "TGR85-ZB" },
@@ -12395,6 +12398,40 @@ Ensure all 12 segments are defined and separated by spaces.`),
12395
12398
  ],
12396
12399
  },
12397
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
+ },
12398
12435
  {
12399
12436
  fingerprint: tuya.fingerprint("TS110E", ["_TZ3210_zxbtub8r"]),
12400
12437
  model: "TS110E_1gang_1",
@@ -22540,5 +22577,37 @@ Ensure all 12 segments are defined and separated by spaces.`),
22540
22577
  ],
22541
22578
  },
22542
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
+ },
22543
22612
  ];
22544
22613
  //# sourceMappingURL=tuya.js.map