zigbee-herdsman-converters 14.0.260 → 14.0.261
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/xiaomi.js +3 -3
- package/npm-shrinkwrap.json +1 -1
- package/package.json +1 -1
package/devices/xiaomi.js
CHANGED
|
@@ -45,8 +45,8 @@ module.exports = [
|
|
|
45
45
|
model: 'ZNDDMK11LM',
|
|
46
46
|
vendor: 'Xiaomi',
|
|
47
47
|
description: 'Aqara smart lightstrip driver',
|
|
48
|
-
exposes: [e.light_brightness_colortemp(
|
|
49
|
-
e.light_brightness_colortemp(
|
|
48
|
+
exposes: [e.light_brightness_colortemp([153, 370]).withEndpoint('l1'),
|
|
49
|
+
e.light_brightness_colortemp([153, 370]).withEndpoint('l2')],
|
|
50
50
|
endpoint: (device) => {
|
|
51
51
|
return {l1: 1, l2: 2};
|
|
52
52
|
},
|
|
@@ -56,7 +56,7 @@ module.exports = [
|
|
|
56
56
|
await endpoint1.write('aqaraOpple', {0x0509: {value: 1, type: 0x23}}, {manufacturerCode: 0x115f, disableResponse: true});
|
|
57
57
|
await endpoint1.write('aqaraOpple', {0x050f: {value: 3, type: 0x23}}, {manufacturerCode: 0x115f, disableResponse: true});
|
|
58
58
|
},
|
|
59
|
-
extend: extend.
|
|
59
|
+
extend: extend.light_onoff_brightness_colortemp({noConfigure: true}),
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
62
|
zigbeeModel: ['lumi.light.aqcn02'],
|
package/npm-shrinkwrap.json
CHANGED