zigbee-herdsman-converters 14.0.504 → 14.0.507
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/converters/toZigbee.js +1 -1
- package/devices/legrand.js +1 -1
- package/devices/lidl.js +11 -0
- package/devices/miboxer.js +1 -1
- package/devices/moes.js +1 -1
- package/devices/m/303/274ller_licht.js +1 -1
- package/devices/neo.js +1 -1
- package/devices/nue_3a.js +1 -0
- package/devices/philips.js +16 -0
- package/devices/rtx.js +1 -1
- package/devices/tuya.js +19 -6
- package/devices/villeroy_boch.js +11 -0
- package/package.json +1 -1
package/converters/toZigbee.js
CHANGED
|
@@ -6558,7 +6558,7 @@ const converters = {
|
|
|
6558
6558
|
{sendWhen: 'active'});
|
|
6559
6559
|
break;
|
|
6560
6560
|
case 'keep_time':
|
|
6561
|
-
await entity.write('ssIasZone', {61441: {value: {
|
|
6561
|
+
await entity.write('ssIasZone', {61441: {value: {30: 0, 60: 1, 120: 2}[value], type: 0x20}}, {sendWhen: 'active'});
|
|
6562
6562
|
break;
|
|
6563
6563
|
default: // Unknown key
|
|
6564
6564
|
throw new Error(`Unhandled key ${key}`);
|
package/devices/legrand.js
CHANGED
|
@@ -146,7 +146,7 @@ module.exports = [
|
|
|
146
146
|
const endpoint = device.getEndpoint(1);
|
|
147
147
|
await reporting.bind(endpoint, coordinatorEndpoint, ['genPowerCfg', 'genOnOff', 'genLevelCtrl']);
|
|
148
148
|
const endpoint2 = device.getEndpoint(2);
|
|
149
|
-
await reporting.bind(endpoint2, coordinatorEndpoint, ['
|
|
149
|
+
await reporting.bind(endpoint2, coordinatorEndpoint, ['genOnOff', 'genLevelCtrl']);
|
|
150
150
|
},
|
|
151
151
|
endpoint: (device) => {
|
|
152
152
|
return {left: 1, right: 2};
|
package/devices/lidl.js
CHANGED
|
@@ -550,6 +550,17 @@ module.exports = [
|
|
|
550
550
|
device.getEndpoint(1).saveClusterAttributeKeyValue('lightingColorCtrl', {colorCapabilities: 29});
|
|
551
551
|
},
|
|
552
552
|
},
|
|
553
|
+
{
|
|
554
|
+
fingerprint: [{modelID: 'TS0505B', manufacturerName: '_TZ3210_hxtfthp5'}],
|
|
555
|
+
model: '14158804L',
|
|
556
|
+
vendor: 'Lidl',
|
|
557
|
+
description: 'Livarno Home LED desk lamp RGBW',
|
|
558
|
+
...extend.light_onoff_brightness_colortemp_color({disableColorTempStartup: true, colorTempRange: [153, 500]}),
|
|
559
|
+
meta: {applyRedFix: true, enhancedHue: false},
|
|
560
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
561
|
+
device.getEndpoint(1).saveClusterAttributeKeyValue('lightingColorCtrl', {colorCapabilities: 29});
|
|
562
|
+
},
|
|
563
|
+
},
|
|
553
564
|
{
|
|
554
565
|
fingerprint: [{modelID: 'TS0505B', manufacturerName: '_TZ3000_quqaeew6'}],
|
|
555
566
|
model: 'HG07834A',
|
package/devices/miboxer.js
CHANGED
|
@@ -49,7 +49,7 @@ module.exports = [
|
|
|
49
49
|
extend: extend.light_onoff_brightness_colortemp_color({disableColorTempStartup: true, colorTempRange: [153, 500]}),
|
|
50
50
|
},
|
|
51
51
|
{
|
|
52
|
-
fingerprint: [{manufacturerName: '_TZ3000_xwh1e22x'}],
|
|
52
|
+
fingerprint: [{modelID: 'TS1002', manufacturerName: '_TZ3000_xwh1e22x'}],
|
|
53
53
|
model: 'FUT089Z',
|
|
54
54
|
vendor: 'MiBoxer',
|
|
55
55
|
description: 'RGB+CCT Remote',
|
package/devices/moes.js
CHANGED
|
@@ -165,7 +165,7 @@ module.exports = [
|
|
|
165
165
|
},
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
|
-
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_tz32mtza'}],
|
|
168
|
+
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_tz32mtza'}, {modelID: 'TS0601', manufacturerName: '_TZE200_vm1gyrso'}],
|
|
169
169
|
model: 'ZTS-EU_3gang',
|
|
170
170
|
vendor: 'Moes',
|
|
171
171
|
description: 'Wall touch light switch (3 gang)',
|
|
@@ -110,7 +110,7 @@ module.exports = [
|
|
|
110
110
|
{
|
|
111
111
|
fingerprint: [{manufacturerName: '_TZ3000_bdbb0fon'}],
|
|
112
112
|
zigbeeModel: ['ZBT-Remote-ALL-RGBW', 'TS1001'],
|
|
113
|
-
model: 'MLI-404011',
|
|
113
|
+
model: 'MLI-404011/MLI-404049',
|
|
114
114
|
description: 'Tint remote control',
|
|
115
115
|
vendor: 'Müller Licht',
|
|
116
116
|
fromZigbee: [fz.command_on, fz.command_off, fz.command_toggle, fz.legacy.tint404011_brightness_updown_click,
|
package/devices/neo.js
CHANGED
|
@@ -35,7 +35,7 @@ module.exports = [
|
|
|
35
35
|
},
|
|
36
36
|
},
|
|
37
37
|
{
|
|
38
|
-
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_t1blo2bj'}],
|
|
38
|
+
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_t1blo2bj'}, {modelID: 'TS0202', manufacturerName: '_TZ3000_kmh5qpmb'}],
|
|
39
39
|
zigbeeModel: ['1blo2bj'],
|
|
40
40
|
model: 'NAS-AB02B2',
|
|
41
41
|
vendor: 'Neo',
|
package/devices/nue_3a.js
CHANGED
|
@@ -142,6 +142,7 @@ module.exports = [
|
|
|
142
142
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
143
143
|
await extend.light_onoff_brightness().configure(device, coordinatorEndpoint, logger);
|
|
144
144
|
await reporting.bind(device.getEndpoint(1), coordinatorEndpoint, ['genOnOff', 'genLevelCtrl']);
|
|
145
|
+
await reporting.brightness(device.getEndpoint(1));
|
|
145
146
|
},
|
|
146
147
|
},
|
|
147
148
|
{
|
package/devices/philips.js
CHANGED
|
@@ -1397,6 +1397,13 @@ module.exports = [
|
|
|
1397
1397
|
extend: hueExtend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
|
|
1398
1398
|
ota: ota.zigbeeOTA,
|
|
1399
1399
|
},
|
|
1400
|
+
{
|
|
1401
|
+
zigbeeModel: ['929003054101'],
|
|
1402
|
+
model: '929003054101',
|
|
1403
|
+
vendor: 'Philips',
|
|
1404
|
+
description: 'Hue Wellner white ambiance E27 806lm with Bluetooth',
|
|
1405
|
+
extend: extend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
|
|
1406
|
+
},
|
|
1400
1407
|
{
|
|
1401
1408
|
zigbeeModel: ['3261330P6'],
|
|
1402
1409
|
model: '3261330P6',
|
|
@@ -1406,6 +1413,15 @@ module.exports = [
|
|
|
1406
1413
|
extend: hueExtend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
|
|
1407
1414
|
ota: ota.zigbeeOTA,
|
|
1408
1415
|
},
|
|
1416
|
+
{
|
|
1417
|
+
zigbeeModel: ['929003055501'],
|
|
1418
|
+
model: '929003055501',
|
|
1419
|
+
vendor: 'Philips',
|
|
1420
|
+
description: 'Hue white ambiance Still',
|
|
1421
|
+
meta: {turnsOffAtBrightness1: true},
|
|
1422
|
+
extend: hueExtend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
|
|
1423
|
+
ota: ota.zigbeeOTA,
|
|
1424
|
+
},
|
|
1409
1425
|
{
|
|
1410
1426
|
zigbeeModel: ['LTC003'],
|
|
1411
1427
|
model: '3261331P7',
|
package/devices/rtx.js
CHANGED
|
@@ -6,7 +6,7 @@ const ea = exposes.access;
|
|
|
6
6
|
|
|
7
7
|
module.exports = [
|
|
8
8
|
{
|
|
9
|
-
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_akjefhj5'}],
|
|
9
|
+
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_akjefhj5'}, {modelID: 'TS0601', manufacturerName: '_TZE200_2wg5qrjy'}],
|
|
10
10
|
model: 'ZVG1',
|
|
11
11
|
vendor: 'RTX',
|
|
12
12
|
description: 'Zigbee smart water valve',
|
package/devices/tuya.js
CHANGED
|
@@ -13,7 +13,7 @@ const utils = require('../lib/utils');
|
|
|
13
13
|
const TS011Fplugs = ['_TZ3000_5f43h46b', '_TZ3000_cphmq0q7', '_TZ3000_dpo1ysak', '_TZ3000_ew3ldmgx', '_TZ3000_gjnozsaz',
|
|
14
14
|
'_TZ3000_jvzvulen', '_TZ3000_mraovvmm', '_TZ3000_nfnmi125', '_TZ3000_ps3dmato', '_TZ3000_w0qqde0g', '_TZ3000_u5u4cakc',
|
|
15
15
|
'_TZ3000_rdtixbnu', '_TZ3000_typdpbpg', '_TZ3000_kx0pris5', '_TZ3000_amdymr7l', '_TZ3000_z1pnpsdo', '_TZ3000_ksw8qtmt',
|
|
16
|
-
'_TZ3000_nzkqcvvs', '_TZ3000_1h2x4akh', '_TZ3000_9vo5icau'];
|
|
16
|
+
'_TZ3000_nzkqcvvs', '_TZ3000_1h2x4akh', '_TZ3000_9vo5icau', '_TZ3000_cehuw1lw'];
|
|
17
17
|
|
|
18
18
|
const tzLocal = {
|
|
19
19
|
TS0504B_color: {
|
|
@@ -211,6 +211,7 @@ module.exports = [
|
|
|
211
211
|
{manufacturerName: '_TZ3000_q6a3tepg'}, {modelID: 'TS000F', manufacturerName: '_TZ3000_m9af2l6g'},
|
|
212
212
|
{modelID: 'TS0001', manufacturerName: '_TZ3000_npzfdcof'},
|
|
213
213
|
{modelID: 'TS0001', manufacturerName: '_TZ3000_5ng23zjs'},
|
|
214
|
+
{modelID: 'TS0001', manufacturerName: '_TZ3000_rmjr4ufz'},
|
|
214
215
|
{modelID: 'TS0001', manufacturerName: '_TZ3000_v7gnj3ad'},
|
|
215
216
|
{modelID: 'TS0001', manufacturerName: '_TZ3000_mx3vgyea'}],
|
|
216
217
|
model: 'WHD02',
|
|
@@ -365,7 +366,6 @@ module.exports = [
|
|
|
365
366
|
{modelID: 'TS0202', manufacturerName: '_TYZB01_dl7cejts'},
|
|
366
367
|
{modelID: 'TS0202', manufacturerName: '_TYZB01_qjqgmqxr'},
|
|
367
368
|
{modelID: 'TS0202', manufacturerName: '_TZ3000_mmtwjmaq'},
|
|
368
|
-
{modelID: 'TS0202', manufacturerName: '_TZ3000_kmh5qpmb'},
|
|
369
369
|
{modelID: 'TS0202', manufacturerName: '_TYZB01_zwvaj5wy'},
|
|
370
370
|
{modelID: 'TS0202', manufacturerName: '_TZ3000_bsvqrxru'},
|
|
371
371
|
{modelID: 'TS0202', manufacturerName: '_TYZB01_tv3wxhcz'},
|
|
@@ -390,8 +390,7 @@ module.exports = [
|
|
|
390
390
|
},
|
|
391
391
|
},
|
|
392
392
|
{
|
|
393
|
-
fingerprint: [{modelID: 'TS0202', manufacturerName: '
|
|
394
|
-
{modelID: 'TS0202', manufacturerName: '_TZ3000_msl6wxk9'}],
|
|
393
|
+
fingerprint: [{modelID: 'TS0202', manufacturerName: '_TZ3000_msl6wxk9'}],
|
|
395
394
|
model: 'ZM-35H-Q',
|
|
396
395
|
vendor: 'TuYa',
|
|
397
396
|
description: 'Motion Sensor',
|
|
@@ -399,7 +398,19 @@ module.exports = [
|
|
|
399
398
|
toZigbee: [tz.ZM35HQ_attr],
|
|
400
399
|
exposes: [e.occupancy(), e.battery_low(), e.tamper(), e.battery(),
|
|
401
400
|
exposes.enum('sensitivity', ea.ALL, ['low', 'medium', 'high']).withDescription('PIR sensor sensitivity'),
|
|
402
|
-
exposes.enum('keep_time', ea.ALL, [
|
|
401
|
+
exposes.enum('keep_time', ea.ALL, [30, 60, 120]).withDescription('PIR keep time in seconds'),
|
|
402
|
+
],
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
fingerprint: [{modelID: 'TS0202', manufacturerName: '_TZ3000_mcxw5ehu'}],
|
|
406
|
+
model: 'IH012-RT01',
|
|
407
|
+
vendor: 'TuYa',
|
|
408
|
+
description: 'Motion sensor',
|
|
409
|
+
fromZigbee: [fz.ias_occupancy_alarm_1, fz.ignore_basic_report, fz.ZM35HQ_attr],
|
|
410
|
+
toZigbee: [tz.ZM35HQ_attr],
|
|
411
|
+
exposes: [e.occupancy(), e.battery_low(), e.tamper(),
|
|
412
|
+
exposes.enum('sensitivity', ea.ALL, ['low', 'medium', 'high']).withDescription('PIR sensor sensitivity'),
|
|
413
|
+
exposes.enum('keep_time', ea.ALL, [30, 60, 120]).withDescription('PIR keep time in seconds'),
|
|
403
414
|
],
|
|
404
415
|
},
|
|
405
416
|
{
|
|
@@ -700,6 +711,7 @@ module.exports = [
|
|
|
700
711
|
{modelID: 'TS0502B', manufacturerName: '_TZ3210_zwqnazkb'},
|
|
701
712
|
{modelID: 'TS0502B', manufacturerName: '_TZ3210_ijsj2evj'},
|
|
702
713
|
{modelID: 'TS0502B', manufacturerName: '_TZ3210_pgq2qvyv'},
|
|
714
|
+
{modelID: 'TS0502B', manufacturerName: '_TZ3210_nvaik6gk'},
|
|
703
715
|
],
|
|
704
716
|
model: 'TS0502B',
|
|
705
717
|
vendor: 'TuYa',
|
|
@@ -2249,7 +2261,8 @@ module.exports = [
|
|
|
2249
2261
|
toZigbee: [],
|
|
2250
2262
|
},
|
|
2251
2263
|
{
|
|
2252
|
-
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_ikvncluo'}
|
|
2264
|
+
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_ikvncluo'},
|
|
2265
|
+
{modelID: 'TS0601', manufacturerName: '_TZE200_lyetpprm'}],
|
|
2253
2266
|
model: 'TS0601_smart_human_presense_sensor',
|
|
2254
2267
|
vendor: 'TuYa',
|
|
2255
2268
|
description: 'Smart Human presence sensor',
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
const extend = require('../lib/extend');
|
|
2
|
+
|
|
3
|
+
module.exports = [
|
|
4
|
+
{
|
|
5
|
+
zigbeeModel: ['5991711'],
|
|
6
|
+
model: 'C5850000',
|
|
7
|
+
vendor: 'Villeroy & Boch',
|
|
8
|
+
description: 'Subway 3.0 Zigbee home Aautomation kit ',
|
|
9
|
+
extend: extend.light_onoff_brightness_colortemp({colorTempRange: [160, 450]}),
|
|
10
|
+
},
|
|
11
|
+
];
|