zigbee-herdsman-converters 21.14.0 → 21.15.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 +22 -0
- package/devices/centralite.js +1 -1
- package/devices/centralite.js.map +1 -1
- package/devices/osram.d.ts.map +1 -1
- package/devices/osram.js +1 -0
- package/devices/osram.js.map +1 -1
- package/devices/philips.d.ts.map +1 -1
- package/devices/philips.js +7 -0
- package/devices/philips.js.map +1 -1
- package/devices/salus_controls.js +1 -1
- package/devices/salus_controls.js.map +1 -1
- package/devices/sonoff.js +10 -10
- package/devices/sonoff.js.map +1 -1
- package/devices/tuya.d.ts.map +1 -1
- package/devices/tuya.js +22 -11
- package/devices/tuya.js.map +1 -1
- package/lib/lumi.js +2 -2
- package/lib/lumi.js.map +1 -1
- package/package.json +1 -1
package/lib/lumi.js
CHANGED
|
@@ -2584,7 +2584,7 @@ exports.fromZigbee = {
|
|
|
2584
2584
|
result['window_open'] = (0, utils_1.getFromLookup)(value, { 1: true, 0: false });
|
|
2585
2585
|
break;
|
|
2586
2586
|
case 0x0275:
|
|
2587
|
-
result['valve_alarm'] = (0, utils_1.getFromLookup)(value, { 1: true, 0: false });
|
|
2587
|
+
result['valve_alarm'] = (0, utils_1.getFromLookup)(value, { 1: true, 0: false, 4: true });
|
|
2588
2588
|
break;
|
|
2589
2589
|
case 247: {
|
|
2590
2590
|
// @ts-expect-error ignore
|
|
@@ -3687,7 +3687,7 @@ exports.toZigbee = {
|
|
|
3687
3687
|
break;
|
|
3688
3688
|
case 'child_lock':
|
|
3689
3689
|
await entity.write('manuSpecificLumi', {
|
|
3690
|
-
0x0277: { value: (0, utils_1.getFromLookup)(value, {
|
|
3690
|
+
0x0277: { value: (0, utils_1.getFromLookup)(value, { UNLOCK: 0, LOCK: 1 }), type: 0x20 },
|
|
3691
3691
|
}, { manufacturerCode: exports.manufacturerCode });
|
|
3692
3692
|
break;
|
|
3693
3693
|
case 'away_preset_temperature':
|