zigbee-herdsman-converters 23.4.0 → 23.6.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.
Files changed (50) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/dist/converters/toZigbee.js +1 -1
  3. package/dist/converters/toZigbee.js.map +1 -1
  4. package/dist/devices/efekta.d.ts.map +1 -1
  5. package/dist/devices/efekta.js +273 -10
  6. package/dist/devices/efekta.js.map +1 -1
  7. package/dist/devices/envilar.d.ts.map +1 -1
  8. package/dist/devices/envilar.js +7 -0
  9. package/dist/devices/envilar.js.map +1 -1
  10. package/dist/devices/imou.d.ts.map +1 -1
  11. package/dist/devices/imou.js +7 -0
  12. package/dist/devices/imou.js.map +1 -1
  13. package/dist/devices/index.d.ts +3 -12
  14. package/dist/devices/index.d.ts.map +1 -1
  15. package/dist/devices/index.js +6 -1
  16. package/dist/devices/index.js.map +1 -1
  17. package/dist/devices/owon.d.ts.map +1 -1
  18. package/dist/devices/owon.js +36 -0
  19. package/dist/devices/owon.js.map +1 -1
  20. package/dist/devices/philips.d.ts.map +1 -1
  21. package/dist/devices/philips.js +8 -1
  22. package/dist/devices/philips.js.map +1 -1
  23. package/dist/devices/robb.d.ts.map +1 -1
  24. package/dist/devices/robb.js +7 -0
  25. package/dist/devices/robb.js.map +1 -1
  26. package/dist/devices/samotech.js +2 -2
  27. package/dist/devices/samotech.js.map +1 -1
  28. package/dist/devices/shinasystem.js +3 -3
  29. package/dist/devices/shinasystem.js.map +1 -1
  30. package/dist/devices/sprut.d.ts +3 -0
  31. package/dist/devices/sprut.d.ts.map +1 -0
  32. package/dist/devices/sprut.js +119 -0
  33. package/dist/devices/sprut.js.map +1 -0
  34. package/dist/devices/tuya.d.ts.map +1 -1
  35. package/dist/devices/tuya.js +28 -5
  36. package/dist/devices/tuya.js.map +1 -1
  37. package/dist/index.d.ts.map +1 -1
  38. package/dist/index.js +16 -5
  39. package/dist/index.js.map +1 -1
  40. package/dist/lib/constants.d.ts.map +1 -1
  41. package/dist/lib/constants.js +2 -0
  42. package/dist/lib/constants.js.map +1 -1
  43. package/dist/lib/modernExtend.d.ts +4 -1
  44. package/dist/lib/modernExtend.d.ts.map +1 -1
  45. package/dist/lib/modernExtend.js +13 -4
  46. package/dist/lib/modernExtend.js.map +1 -1
  47. package/dist/lib/types.d.ts +1 -1
  48. package/dist/lib/types.d.ts.map +1 -1
  49. package/dist/models-index.json +1 -1
  50. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,49 @@
1
1
  # Changelog
2
2
 
3
+ ## [23.6.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v23.5.0...v23.6.0) (2025-03-11)
4
+
5
+
6
+ ### Features
7
+
8
+ * **add:** _TZ3000_mw1pqqqt ([#8963](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8963)) ([24835d1](https://github.com/Koenkk/zigbee-herdsman-converters/commit/24835d183f2f61cd0fbefe6abeb24ce973be39c8))
9
+ * **add:** EFEKTA_T1_v2_LR, EFEKTA_T1_v2 ([#8971](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8971)) ([093effd](https://github.com/Koenkk/zigbee-herdsman-converters/commit/093effd688036d9ac8b81277c304151af1626682))
10
+ * **add:** PCT512 ([#8972](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8972)) ([7264783](https://github.com/Koenkk/zigbee-herdsman-converters/commit/7264783ba0b8e3f6e6e1dde0e1c518a419b423ff))
11
+ * Samotech SM309-S SM308-S: add external switch type ([#8970](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8970)) ([5afcc0a](https://github.com/Koenkk/zigbee-herdsman-converters/commit/5afcc0a95c492b63e5ea55ab91821032337f66d5))
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * **detect:** Detect `_TZ3000_qhyadm57` as Tuya TS0726_switch_4g_2s ([#8967](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8967)) ([e1dbf5b](https://github.com/Koenkk/zigbee-herdsman-converters/commit/e1dbf5b04f2af347902c6b1a6b5a382063b4fe81))
17
+ * **detect:** Detect `_TZE200_hojryzzd` as Tuya TS0601_cover_1 ([#8969](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8969)) ([e0a230c](https://github.com/Koenkk/zigbee-herdsman-converters/commit/e0a230c80c6c0e1c60f626b4621d1081478bf16a))
18
+ * **ignore:** Small improvements ([#8974](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8974)) ([9717391](https://github.com/Koenkk/zigbee-herdsman-converters/commit/9717391e42d037d7953407735f9fededd6b57903))
19
+
20
+ ## [23.5.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v23.4.0...v23.5.0) (2025-03-10)
21
+
22
+
23
+ ### Features
24
+
25
+ * **add:** 7848 ([#8944](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8944)) ([e72841c](https://github.com/Koenkk/zigbee-herdsman-converters/commit/e72841c8df3284ebe64f4ce9adde254b08950dcc))
26
+ * **add:** 915005732902 ([#8954](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8954)) ([c95e3a3](https://github.com/Koenkk/zigbee-herdsman-converters/commit/c95e3a36289d8159d2afaef97544a753d4848053))
27
+ * **add:** Bed.box ([#8932](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8932)) ([df36445](https://github.com/Koenkk/zigbee-herdsman-converters/commit/df364453a178142b013ec29644942175bca90eb7))
28
+ * **add:** ROB_200-011-1 ([#8953](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8953)) ([23ccd31](https://github.com/Koenkk/zigbee-herdsman-converters/commit/23ccd31474a3412e6dbc28281241d00593ae03a7))
29
+ * **add:** ZD1-EN https://github.com/Koenkk/zigbee2mqtt/issues/26652 ([d64c84b](https://github.com/Koenkk/zigbee-herdsman-converters/commit/d64c84bbebb4c910baf7d3e3c2d533bbd7d2d169))
30
+ * **add:** ZN2S-US1-SD https://github.com/Koenkk/zigbee2mqtt/discussions/26609 ([cf7ea54](https://github.com/Koenkk/zigbee-herdsman-converters/commit/cf7ea54a72a1835f3f5871beee47b51466be2e67))
31
+
32
+
33
+ ### Bug Fixes
34
+
35
+ * Add label to modern extends binary function ([#8943](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8943)) ([d101973](https://github.com/Koenkk/zigbee-herdsman-converters/commit/d101973b8f7ce737dc583bcf9b79350dddf6f0cd))
36
+ * **detect:** Detect `_TZE200_gjldowol` as Tuya ZG-204ZL ([#8947](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8947)) ([3796f87](https://github.com/Koenkk/zigbee-herdsman-converters/commit/3796f876f33ed849fd10482b31a969728a1a9450))
37
+ * **detect:** Detect `_TZE204_w1wwxoja` as Tuya TS0601_switch_6_gang ([#8938](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8938)) ([8d21b38](https://github.com/Koenkk/zigbee-herdsman-converters/commit/8d21b389364565c8766538b03c02cb0397a5942c))
38
+ * **detect:** Detect `915005822501` as Philips 7602031P7 ([#8948](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8948)) ([a0abdc2](https://github.com/Koenkk/zigbee-herdsman-converters/commit/a0abdc2de7ab217f8b61f729b28ca0962a044f47))
39
+ * EFEKTA: various fixes ([#8955](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8955)) ([2d9c14c](https://github.com/Koenkk/zigbee-herdsman-converters/commit/2d9c14c7538fd92e98f73403ed34b1942c60325a))
40
+ * Fix duplicate options and toZigbee converters ([#8957](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8957)) ([64dce29](https://github.com/Koenkk/zigbee-herdsman-converters/commit/64dce2936ebd2fcf7cf6319d2249ce76eadc683e))
41
+ * **ignore:** update dependencies ([#8950](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8950)) ([70e1681](https://github.com/Koenkk/zigbee-herdsman-converters/commit/70e16817890bfca458737f4924873aaf748e9947))
42
+ * Re-add on_time and off_wait_time to the light_onoff_brightness converter ([#8942](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8942)) ([d029330](https://github.com/Koenkk/zigbee-herdsman-converters/commit/d029330ad508ca49cb7761990d4d6c1d83a9de4b))
43
+ * ShinaSystem: use metering cluster for power measurements ([#8909](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8909)) ([c05d482](https://github.com/Koenkk/zigbee-herdsman-converters/commit/c05d482f8ea4727d0f97167cd18ee985d73b7535))
44
+ * Tuya TS0012_switch_module and TS0013_switch_module: support countdown ([#8962](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8962)) ([ddcc094](https://github.com/Koenkk/zigbee-herdsman-converters/commit/ddcc09471dfaa23fd49d83488cb8b2968ae87054))
45
+ * Tuya ZWT198/ZWT100-BH: preset inverted ([#8952](https://github.com/Koenkk/zigbee-herdsman-converters/issues/8952)) ([97b106e](https://github.com/Koenkk/zigbee-herdsman-converters/commit/97b106ea4f908280f08cd506efa79dbf31952780))
46
+
3
47
  ## [23.4.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v23.3.0...v23.4.0) (2025-03-06)
4
48
 
5
49
 
@@ -1048,7 +1048,7 @@ exports.light_hue_saturation_move = {
1048
1048
  },
1049
1049
  };
1050
1050
  exports.light_onoff_brightness = {
1051
- key: ["state", "brightness", "brightness_percent"],
1051
+ key: ["state", "brightness", "brightness_percent", "on_time", "off_wait_time"],
1052
1052
  options: [exposes.options.transition()],
1053
1053
  convertSet: async (entity, key, value, meta) => {
1054
1054
  const { message } = meta;