zigbee-herdsman-converters 25.0.0 → 25.1.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 +20 -0
- package/dist/devices/develco.d.ts.map +1 -1
- package/dist/devices/develco.js +40 -2
- package/dist/devices/develco.js.map +1 -1
- package/dist/devices/lumi.d.ts.map +1 -1
- package/dist/devices/lumi.js +13 -2
- package/dist/devices/lumi.js.map +1 -1
- package/dist/devices/qa.js +1 -1
- package/dist/devices/qa.js.map +1 -1
- package/dist/devices/tuya.d.ts.map +1 -1
- package/dist/devices/tuya.js +11 -19
- package/dist/devices/tuya.js.map +1 -1
- package/dist/lib/philips.js +1 -1
- package/dist/models-index.json +1 -1
- package/package.json +1 -1
package/dist/lib/philips.js
CHANGED
|
@@ -551,7 +551,7 @@ const philipsFz = {
|
|
|
551
551
|
return;
|
|
552
552
|
const buttonLookup = { 1: "button_1", 2: "button_2", 3: "button_3", 4: "button_4", 20: "dial" };
|
|
553
553
|
const button = buttonLookup[msg.data.button];
|
|
554
|
-
const direction = msg.data.
|
|
554
|
+
const direction = msg.data.unknown3 < 127 ? "right" : "left";
|
|
555
555
|
const time = msg.data.time;
|
|
556
556
|
const payload = {};
|
|
557
557
|
if (button === "dial") {
|