zigbee-herdsman-converters 23.22.0 → 23.23.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 +14 -0
- package/dist/devices/lumi.d.ts.map +1 -1
- package/dist/devices/lumi.js +29 -0
- package/dist/devices/lumi.js.map +1 -1
- package/dist/devices/tuya.d.ts.map +1 -1
- package/dist/devices/tuya.js +4 -2
- package/dist/devices/tuya.js.map +1 -1
- package/dist/models-index.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [23.23.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v23.22.0...v23.23.0) (2025-04-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **add:** 07527L ([#9136](https://github.com/Koenkk/zigbee-herdsman-converters/issues/9136)) ([2642539](https://github.com/Koenkk/zigbee-herdsman-converters/commit/26425398822805e3386163d5dd2eb5114acd6dc7))
|
|
9
|
+
* **add:** HS09 ([#9137](https://github.com/Koenkk/zigbee-herdsman-converters/issues/9137)) ([7e94c08](https://github.com/Koenkk/zigbee-herdsman-converters/commit/7e94c0835f1371d3692a34b9d289ee5ad3d6a049))
|
|
10
|
+
* **add:** WS-K02E ([#9139](https://github.com/Koenkk/zigbee-herdsman-converters/issues/9139)) ([3529740](https://github.com/Koenkk/zigbee-herdsman-converters/commit/3529740657aea2241fe647062327a0be616cb519))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **detect:** Detect `_TZ3002_m3pafcnk` as Tuya TS0726_multi_3_gang https://github.com/Koenkk/zigbee-herdsman-converters/issues/9138 ([faecab0](https://github.com/Koenkk/zigbee-herdsman-converters/commit/faecab07bf7c0a8c8055dee129730b4b118b8317))
|
|
16
|
+
|
|
3
17
|
## [23.22.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v23.21.0...v23.22.0) (2025-04-06)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lumi.d.ts","sourceRoot":"","sources":["../../src/devices/lumi.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAC,oBAAoB,EAAC,MAAM,cAAc,CAAC;AAwDvD,eAAO,MAAM,WAAW,EAAE,oBAAoB,
|
|
1
|
+
{"version":3,"file":"lumi.d.ts","sourceRoot":"","sources":["../../src/devices/lumi.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAC,oBAAoB,EAAC,MAAM,cAAc,CAAC;AAwDvD,eAAO,MAAM,WAAW,EAAE,oBAAoB,EAg5I7C,CAAC"}
|
package/dist/devices/lumi.js
CHANGED
|
@@ -4434,5 +4434,34 @@ exports.definitions = [
|
|
|
4434
4434
|
lumiSwitchMode(),
|
|
4435
4435
|
],
|
|
4436
4436
|
},
|
|
4437
|
+
{
|
|
4438
|
+
zigbeeModel: ["lumi.switch.agl004"],
|
|
4439
|
+
model: "WS-K02E",
|
|
4440
|
+
vendor: "Aqara",
|
|
4441
|
+
description: "Light Switch H2 US (double rocker)",
|
|
4442
|
+
fromZigbee: [fz.on_off, lumi.fromZigbee.lumi_action_multistate, lumi.fromZigbee.lumi_specific],
|
|
4443
|
+
extend: [
|
|
4444
|
+
lumiZigbeeOTA(),
|
|
4445
|
+
lumiPreventReset(),
|
|
4446
|
+
m.deviceEndpoints({ endpoints: { top: 1, center: 2, bottom: 3, wireless: 4 } }),
|
|
4447
|
+
m.bindCluster({ endpointNames: ["top", "wireless"], cluster: "manuSpecificLumi", clusterType: "input" }),
|
|
4448
|
+
m.bindCluster({ endpointNames: ["top"], cluster: "genOnOff", clusterType: "input" }),
|
|
4449
|
+
lumiPower(),
|
|
4450
|
+
lumiOnOff({
|
|
4451
|
+
operationMode: true,
|
|
4452
|
+
powerOutageMemory: "enum",
|
|
4453
|
+
lockRelay: true,
|
|
4454
|
+
endpointNames: ["top"],
|
|
4455
|
+
}),
|
|
4456
|
+
lumiAction({
|
|
4457
|
+
actionLookup: { hold: 0, single: 1, double: 2, release: 255 },
|
|
4458
|
+
endpointNames: ["top", "wireless"],
|
|
4459
|
+
}),
|
|
4460
|
+
lumiMultiClick({ description: "Multi-click mode for wireless button", endpointName: "wireless" }),
|
|
4461
|
+
lumiLedDisabledNight(),
|
|
4462
|
+
lumiFlipIndicatorLight(),
|
|
4463
|
+
lumiSwitchMode(),
|
|
4464
|
+
],
|
|
4465
|
+
},
|
|
4437
4466
|
];
|
|
4438
4467
|
//# sourceMappingURL=lumi.js.map
|