zigbee-herdsman-converters 14.0.631 → 14.0.632
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/devices/lidl.js +5 -0
- package/devices/moes.js +1 -0
- package/devices/philips.js +7 -0
- package/devices/xiaomi.js +8 -0
- package/package.json +1 -1
package/devices/lidl.js
CHANGED
|
@@ -407,6 +407,11 @@ module.exports = [
|
|
|
407
407
|
description: 'Silvercrest smart button',
|
|
408
408
|
fromZigbee: [fz.command_on, fz.command_off, fz.command_step, fz.command_stop, fz.battery],
|
|
409
409
|
toZigbee: [],
|
|
410
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
411
|
+
const endpoint = device.getEndpoint(1);
|
|
412
|
+
await reporting.bind(endpoint, coordinatorEndpoint, ['genPowerCfg']);
|
|
413
|
+
await reporting.batteryPercentageRemaining(endpoint);
|
|
414
|
+
},
|
|
410
415
|
exposes: [e.action(['on', 'off', 'brightness_stop', 'brightness_step_up', 'brightness_step_down']), e.battery()],
|
|
411
416
|
},
|
|
412
417
|
{
|
package/devices/moes.js
CHANGED
|
@@ -416,6 +416,7 @@ module.exports = [
|
|
|
416
416
|
model: 'MS-108ZR',
|
|
417
417
|
vendor: 'Moes',
|
|
418
418
|
description: 'Zigbee + RF curtain switch module',
|
|
419
|
+
meta: {coverInverted: true},
|
|
419
420
|
fromZigbee: [fz.tuya_cover_options, fz.cover_position_tilt],
|
|
420
421
|
toZigbee: [tz.cover_state, tz.moes_cover_calibration, tz.cover_position_tilt, tz.tuya_cover_reversal],
|
|
421
422
|
exposes: [e.cover_position(), exposes.numeric('calibration_time', ea.ALL).withValueMin(0).withValueMax(100),
|
package/devices/philips.js
CHANGED
|
@@ -2806,4 +2806,11 @@ module.exports = [
|
|
|
2806
2806
|
description: 'Hue white ambiance ceiling black Enrave',
|
|
2807
2807
|
extend: hueExtend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
|
|
2808
2808
|
},
|
|
2809
|
+
{
|
|
2810
|
+
zigbeeModel: ['1740447P0'],
|
|
2811
|
+
model: '8718696166079',
|
|
2812
|
+
vendor: 'Philips',
|
|
2813
|
+
description: 'Hue Tuar outdoor wall light',
|
|
2814
|
+
extend: hueExtend.light_onoff_brightness(),
|
|
2815
|
+
},
|
|
2809
2816
|
];
|
package/devices/xiaomi.js
CHANGED
|
@@ -635,6 +635,10 @@ module.exports = [
|
|
|
635
635
|
},
|
|
636
636
|
onEvent: preventReset,
|
|
637
637
|
ota: ota.zigbeeOTA,
|
|
638
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
639
|
+
device.powerSource = 'Mains (single phase)';
|
|
640
|
+
device.save();
|
|
641
|
+
},
|
|
638
642
|
},
|
|
639
643
|
{
|
|
640
644
|
zigbeeModel: ['lumi.ctrl_neutral2'],
|
|
@@ -698,6 +702,10 @@ module.exports = [
|
|
|
698
702
|
},
|
|
699
703
|
onEvent: preventReset,
|
|
700
704
|
ota: ota.zigbeeOTA,
|
|
705
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
706
|
+
device.powerSource = 'Mains (single phase)';
|
|
707
|
+
device.save();
|
|
708
|
+
},
|
|
701
709
|
},
|
|
702
710
|
{
|
|
703
711
|
zigbeeModel: ['lumi.remote.b286acn02'],
|