zigbee-herdsman-converters 18.46.0 → 18.47.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 +17 -0
- package/converters/toZigbee.js +2 -2
- package/converters/toZigbee.js.map +1 -1
- package/devices/ikea.d.ts.map +1 -1
- package/devices/ikea.js +7 -0
- package/devices/ikea.js.map +1 -1
- package/devices/lumi.d.ts.map +1 -1
- package/devices/lumi.js +203 -222
- package/devices/lumi.js.map +1 -1
- package/devices/philips.d.ts.map +1 -1
- package/devices/philips.js +5 -0
- package/devices/philips.js.map +1 -1
- package/devices/schneider_electric.d.ts.map +1 -1
- package/devices/schneider_electric.js +6 -0
- package/devices/schneider_electric.js.map +1 -1
- package/devices/tuya.js +1 -1
- package/devices/tuya.js.map +1 -1
- package/lib/lumi.d.ts +8 -0
- package/lib/lumi.d.ts.map +1 -1
- package/lib/lumi.js +139 -22
- package/lib/lumi.js.map +1 -1
- package/lib/modernExtend.d.ts +1 -0
- package/lib/modernExtend.d.ts.map +1 -1
- package/lib/modernExtend.js +4 -1
- package/lib/modernExtend.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [18.47.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v18.46.0...v18.47.0) (2024-03-08)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* Add additional exposes for 8719514440937/8719514440999 ([#7177](https://github.com/Koenkk/zigbee-herdsman-converters/issues/7177)) ([cb5f0d4](https://github.com/Koenkk/zigbee-herdsman-converters/commit/cb5f0d4a323dfb49737fb7e1cab1e06d4e6cb84a))
|
|
9
|
+
* **add:** E2202 ([#7163](https://github.com/Koenkk/zigbee-herdsman-converters/issues/7163)) ([f370b34](https://github.com/Koenkk/zigbee-herdsman-converters/commit/f370b346d9d33c87018e326ada31d24cfead4240))
|
|
10
|
+
* Added OTA support for various Schneider Electric devices ([#7178](https://github.com/Koenkk/zigbee-herdsman-converters/issues/7178)) ([1499b09](https://github.com/Koenkk/zigbee-herdsman-converters/commit/1499b098bf8f124894d20535ab97dc9171f021de))
|
|
11
|
+
* **add:** ZNQBKG42LM, ZNQBKG43LM, ZNQBKG44LM, ZNQBKG45LM ([#7160](https://github.com/Koenkk/zigbee-herdsman-converters/issues/7160)) ([c1c6095](https://github.com/Koenkk/zigbee-herdsman-converters/commit/c1c609520c4e5bc0bd396bc2a958a75250623f5c))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* **detect:** Detect `_TZ3000_b3mgfu0d` as TuYa TS004F ([#7175](https://github.com/Koenkk/zigbee-herdsman-converters/issues/7175)) ([07fe9d6](https://github.com/Koenkk/zigbee-herdsman-converters/commit/07fe9d61d64cdd93b015bed38cbf1f108073d7af))
|
|
17
|
+
* Fix alarm for HESZB-120 ([#7179](https://github.com/Koenkk/zigbee-herdsman-converters/issues/7179)) ([0d46740](https://github.com/Koenkk/zigbee-herdsman-converters/commit/0d4674053d3d579998b6861bdfe6a4206c975d83))
|
|
18
|
+
* Fix battery modernExtend ([#7180](https://github.com/Koenkk/zigbee-herdsman-converters/issues/7180)) ([332da4b](https://github.com/Koenkk/zigbee-herdsman-converters/commit/332da4b263d2d531d87831c8b62dcf4cf4a37506))
|
|
19
|
+
|
|
3
20
|
## [18.46.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v18.45.0...v18.46.0) (2024-03-07)
|
|
4
21
|
|
|
5
22
|
|
package/converters/toZigbee.js
CHANGED
|
@@ -516,10 +516,10 @@ const converters2 = {
|
|
|
516
516
|
convertSet: async (entity, key, value, meta) => {
|
|
517
517
|
const alarmState = (value === 'alarm' || value === 'OFF' ? 0 : 1);
|
|
518
518
|
let info;
|
|
519
|
-
// For Develco SMSZB-120, introduced change in fw 4.0.5, tested backward with 4.0.4
|
|
519
|
+
// For Develco SMSZB-120 and HESZB-120, introduced change in fw 4.0.5, tested backward with 4.0.4
|
|
520
520
|
if (Array.isArray(meta.mapped))
|
|
521
521
|
throw new Error(`Not supported for groups`);
|
|
522
|
-
if (['SMSZB-120'].includes(meta.mapped.model)) {
|
|
522
|
+
if (['SMSZB-120', 'HESZB-120'].includes(meta.mapped.model)) {
|
|
523
523
|
info = ((alarmState) << 7) + ((alarmState) << 6);
|
|
524
524
|
}
|
|
525
525
|
else {
|