zigbee-herdsman-converters 18.43.0 → 18.44.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 +16 -0
- package/devices/lumi.d.ts.map +1 -1
- package/devices/lumi.js +2 -0
- package/devices/lumi.js.map +1 -1
- package/devices/schneider_electric.d.ts.map +1 -1
- package/devices/schneider_electric.js +15 -0
- package/devices/schneider_electric.js.map +1 -1
- package/devices/third_reality.d.ts.map +1 -1
- package/devices/third_reality.js +10 -0
- package/devices/third_reality.js.map +1 -1
- package/devices/tuya.d.ts.map +1 -1
- package/devices/tuya.js +30 -0
- package/devices/tuya.js.map +1 -1
- package/devices/wirenboard.d.ts.map +1 -1
- package/devices/wirenboard.js +206 -58
- package/devices/wirenboard.js.map +1 -1
- package/lib/modernExtend.d.ts +4 -3
- package/lib/modernExtend.d.ts.map +1 -1
- package/lib/modernExtend.js +27 -36
- package/lib/modernExtend.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [18.44.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v18.43.0...v18.44.0) (2024-03-05)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* Add status LED switch for WB-MSW-ZIGBEE v.4 and refactor to modern extend ([#7074](https://github.com/Koenkk/zigbee-herdsman-converters/issues/7074)) ([5bdb3e2](https://github.com/Koenkk/zigbee-herdsman-converters/commit/5bdb3e266b0e3a242c7c745a66ee9b0de49a6ce7))
|
|
9
|
+
* **add:** EA4161C-BI ([#7158](https://github.com/Koenkk/zigbee-herdsman-converters/issues/7158)) ([d768c10](https://github.com/Koenkk/zigbee-herdsman-converters/commit/d768c10ac1c9b680b3470fbbc4677aec1ea97737))
|
|
10
|
+
* **add:** TRZB3 ([#7157](https://github.com/Koenkk/zigbee-herdsman-converters/issues/7157)) ([55a7640](https://github.com/Koenkk/zigbee-herdsman-converters/commit/55a76407eac371c1e9c101017057d1bed4ecf5d4))
|
|
11
|
+
* Support `indicator_mode` for Schneider Electric EKO09716 ([#7162](https://github.com/Koenkk/zigbee-herdsman-converters/issues/7162)) ([fcbee33](https://github.com/Koenkk/zigbee-herdsman-converters/commit/fcbee3340f0e01a44c9f4e27417b08e61e4a94f4))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* Fix power source for Aqara WS-USC01 ([#7159](https://github.com/Koenkk/zigbee-herdsman-converters/issues/7159)) ([c9ccc92](https://github.com/Koenkk/zigbee-herdsman-converters/commit/c9ccc9215c12f98018df1f99e37c398dc7a9795d))
|
|
17
|
+
* **ignore:** update dependencies ([#7151](https://github.com/Koenkk/zigbee-herdsman-converters/issues/7151)) ([2748f64](https://github.com/Koenkk/zigbee-herdsman-converters/commit/2748f64c59d7d27f12c7f9abd064add387e765f0))
|
|
18
|
+
|
|
3
19
|
## [18.43.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v18.42.0...v18.43.0) (2024-03-04)
|
|
4
20
|
|
|
5
21
|
|
package/devices/lumi.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lumi.d.ts","sourceRoot":"","sources":["../src/devices/lumi.ts"],"names":[],"mappings":"AAuBA,OAAO,EAAC,UAAU,EAAU,MAAM,cAAc,CAAC;AAsBjD,QAAA,MAAM,WAAW,EAAE,UAAU,
|
|
1
|
+
{"version":3,"file":"lumi.d.ts","sourceRoot":"","sources":["../src/devices/lumi.ts"],"names":[],"mappings":"AAuBA,OAAO,EAAC,UAAU,EAAU,MAAM,cAAc,CAAC;AAsBjD,QAAA,MAAM,WAAW,EAAE,UAAU,EAsqG5B,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
package/devices/lumi.js
CHANGED
|
@@ -430,6 +430,8 @@ const definitions = [
|
|
|
430
430
|
const endpoint1 = device.getEndpoint(1);
|
|
431
431
|
// set "event" mode
|
|
432
432
|
await endpoint1.write('manuSpecificLumi', { 'mode': 1 }, { manufacturerCode: manufacturerCode, disableResponse: true });
|
|
433
|
+
device.powerSource = 'Mains (single phase)';
|
|
434
|
+
device.save();
|
|
433
435
|
},
|
|
434
436
|
extend: [lumiZigbeeOTA()],
|
|
435
437
|
},
|