zigbee-herdsman-converters 15.0.93 → 15.0.94
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/gledopto.js +1 -1
- package/devices/philips.js +1 -1
- package/devices/tlwglobal.js +28 -0
- package/devices/zemismart.js +1 -1
- package/package.json +1 -1
package/devices/gledopto.js
CHANGED
|
@@ -307,7 +307,7 @@ module.exports = [
|
|
|
307
307
|
vendor: 'Gledopto',
|
|
308
308
|
ota: ota.zigbeeOTA,
|
|
309
309
|
description: 'Zigbee LED Controller W (pro)',
|
|
310
|
-
extend: gledoptoExtend.light_onoff_brightness({noConfigure: true}),
|
|
310
|
+
extend: gledoptoExtend.light_onoff_brightness({noConfigure: true, disablePowerOnBehavior: false}),
|
|
311
311
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
312
312
|
await extend.light_onoff_brightness().configure(device, coordinatorEndpoint, logger);
|
|
313
313
|
await configureReadModelID(device, coordinatorEndpoint, logger);
|
package/devices/philips.js
CHANGED
|
@@ -620,7 +620,7 @@ module.exports = [
|
|
|
620
620
|
extend: philips.extend.light_onoff_brightness_colortemp_color_gradient({colorTempRange: [153, 500]}),
|
|
621
621
|
},
|
|
622
622
|
{
|
|
623
|
-
zigbeeModel: ['LCG002', '929003047701', '929003047701', '929003526202_01', '929003526202_02', '929003526202_03'],
|
|
623
|
+
zigbeeModel: ['LCG002', '929003047701', '929003047701', '929003526202_01', '929003526202_02', '929003526202_03', '929003526101'],
|
|
624
624
|
model: '929001953101',
|
|
625
625
|
vendor: 'Philips',
|
|
626
626
|
description: 'Hue White and Color Ambiance GU10',
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
const extend = require('../lib/extend');
|
|
2
|
+
|
|
3
|
+
module.exports = [
|
|
4
|
+
// Tested working with firmare 2.5.3_r58: dimming, on/off, and effects give no
|
|
5
|
+
// errors (although the stop effect and the finish effect do nothing).
|
|
6
|
+
{
|
|
7
|
+
zigbeeModel: ['K10-1220Z'],
|
|
8
|
+
model: 'K10-1220Z',
|
|
9
|
+
vendor: 'TLW Global',
|
|
10
|
+
description: '12V LED smart driver 15W with 6-port micro plug connector',
|
|
11
|
+
extend: extend.light_onoff_brightness(),
|
|
12
|
+
},
|
|
13
|
+
// K10-1230Z and K10-1250Z untested, but assumed to be consistent with K10-1220W
|
|
14
|
+
{
|
|
15
|
+
zigbeeModel: ['K10-1230Z'],
|
|
16
|
+
model: 'K10-1230Z',
|
|
17
|
+
vendor: 'TLW Global',
|
|
18
|
+
description: '12V LED smart driver 30W with 6-port micro plug connector',
|
|
19
|
+
extend: extend.light_onoff_brightness(),
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
zigbeeModel: ['K10-1250Z'],
|
|
23
|
+
model: 'K10-1250Z',
|
|
24
|
+
vendor: 'TLW Global',
|
|
25
|
+
description: '12V LED smart driver 50W with 6-port micro plug connector',
|
|
26
|
+
extend: extend.light_onoff_brightness(),
|
|
27
|
+
},
|
|
28
|
+
];
|
package/devices/zemismart.js
CHANGED
|
@@ -124,7 +124,7 @@ module.exports = [
|
|
|
124
124
|
'button_6_hold', 'button_6_single', 'button_6_double'])],
|
|
125
125
|
},
|
|
126
126
|
{
|
|
127
|
-
fingerprint: tuya.fingerprint('TS011F', ['_TZ3000_zigisuyh', '_TZ3000_v4mevirn', '_TZ3000_mlswgkc3']),
|
|
127
|
+
fingerprint: tuya.fingerprint('TS011F', ['_TZ3000_zigisuyh', '_TZ3000_v4mevirn', '_TZ3000_mlswgkc3', '_TZ3000_dlug3kbc']),
|
|
128
128
|
model: 'ZIGBEE-B09-UK',
|
|
129
129
|
vendor: 'Zemismart',
|
|
130
130
|
description: 'Zigbee smart outlet universal socket with USB port',
|