zigbee-herdsman-converters 14.0.544 → 14.0.545
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/hzc_electric.js +18 -0
- package/devices/ikea.js +2 -2
- package/devices/tuya.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
const reporting = require('../lib/reporting');
|
|
2
|
+
const extend = require('../lib/extend');
|
|
3
|
+
|
|
4
|
+
module.exports = [
|
|
5
|
+
{
|
|
6
|
+
zigbeeModel: ['DimmerSwitch-2Gang-ZB3.0'],
|
|
7
|
+
model: 'D086-ZG',
|
|
8
|
+
vendor: 'HZC Electric',
|
|
9
|
+
description: 'Zigbee dual dimmer',
|
|
10
|
+
extend: extend.light_onoff_brightness({noConfigure: true}),
|
|
11
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
12
|
+
await extend.light_onoff_brightness().configure(device, coordinatorEndpoint, logger);
|
|
13
|
+
const endpoint = device.getEndpoint(1);
|
|
14
|
+
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff', 'genLevelCtrl']);
|
|
15
|
+
await reporting.onOff(endpoint);
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
];
|
package/devices/ikea.js
CHANGED
|
@@ -870,10 +870,10 @@ module.exports = [
|
|
|
870
870
|
},
|
|
871
871
|
},
|
|
872
872
|
{
|
|
873
|
-
zigbeeModel: ['TRADFRIbulbE14WScandleopal470lm'],
|
|
873
|
+
zigbeeModel: ['TRADFRIbulbE14WScandleopal470lm', 'TRADFRIbulbE12WScandleopal450lm'],
|
|
874
874
|
model: 'LED1949C5',
|
|
875
875
|
vendor: 'IKEA',
|
|
876
|
-
description: 'TRADFRI LED bulb E14 470 lumen, wireless dimmable white spectrum/chandelier opal white',
|
|
876
|
+
description: 'TRADFRI LED bulb E12/E14 450/470 lumen, wireless dimmable white spectrum/chandelier opal white',
|
|
877
877
|
extend: tradfriExtend.light_onoff_brightness_colortemp(),
|
|
878
878
|
},
|
|
879
879
|
{
|
package/devices/tuya.js
CHANGED
|
@@ -882,6 +882,7 @@ module.exports = [
|
|
|
882
882
|
{modelID: 'TS0502B', manufacturerName: '_TZ3210_qjdimezy'},
|
|
883
883
|
{modelID: 'TS0502B', manufacturerName: '_TZ3210_psgq7ysz'},
|
|
884
884
|
{modelID: 'TS0502B', manufacturerName: '_TZ3000_zw7wr5uo'},
|
|
885
|
+
{modelID: 'TS0502B', manufacturerName: '_TZ3210_ok08rifa'},
|
|
885
886
|
{modelID: 'TS0502B', manufacturerName: '_TZ3210_pz9zmxjj'},
|
|
886
887
|
{modelID: 'TS0502B', manufacturerName: '_TZ3000_fzwhym79'},
|
|
887
888
|
{modelID: 'TS0502B', manufacturerName: '_TZ3000_ogceypug'},
|