zigbee-herdsman-converters 14.0.551 → 14.0.554
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/adeo.js +16 -0
- package/devices/envilar.js +2 -2
- package/devices/lidl.js +27 -0
- package/devices/paulmann.js +1 -1
- package/devices/philips.js +1 -1
- package/devices/robb.js +12 -0
- package/devices/schneider_electric.js +3 -2
- package/devices/tuya.js +7 -2
- package/package.json +1 -1
package/devices/adeo.js
CHANGED
|
@@ -6,6 +6,22 @@ const tz = require('../converters/toZigbee');
|
|
|
6
6
|
const e = exposes.presets;
|
|
7
7
|
|
|
8
8
|
module.exports = [
|
|
9
|
+
{
|
|
10
|
+
zigbeeModel: ['LDSENK09'],
|
|
11
|
+
model: 'LDSENK09',
|
|
12
|
+
vendor: 'ADEO',
|
|
13
|
+
description: 'Security system key fob',
|
|
14
|
+
fromZigbee: [fz.command_arm, fz.command_panic],
|
|
15
|
+
toZigbee: [],
|
|
16
|
+
exposes: [e.action(['panic', 'disarm', 'arm_partial_zones', 'arm_all_zones'])],
|
|
17
|
+
onEvent: async (type, data, device) => {
|
|
18
|
+
// Since arm command has a response zigbee-herdsman doesn't send a default response.
|
|
19
|
+
// This causes the remote to repeat the arm command, so send a default response here.
|
|
20
|
+
if (data.type === 'commandArm' && data.cluster === 'ssIasAce') {
|
|
21
|
+
await data.endpoint.defaultResponse(0, 0, 1281, data.meta.zclTransactionSequenceNumber);
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
},
|
|
9
25
|
{
|
|
10
26
|
zigbeeModel: ['ZBEK-4'],
|
|
11
27
|
model: 'IM-CDZDGAAA0005KA_MAN',
|
package/devices/envilar.js
CHANGED
|
@@ -9,8 +9,8 @@ module.exports = [
|
|
|
9
9
|
zigbeeModel: ['ZG50CC-CCT-DRIVER'],
|
|
10
10
|
model: 'ZG50CC-CCT-DRIVER',
|
|
11
11
|
vendor: 'Envilar',
|
|
12
|
-
description: 'Zigbee LED driver',
|
|
13
|
-
extend: extend.
|
|
12
|
+
description: 'Zigbee CCT LED driver',
|
|
13
|
+
extend: extend.light_onoff_brightness_colortemp({colorTempRange: [160, 450]}),
|
|
14
14
|
},
|
|
15
15
|
{
|
|
16
16
|
zigbeeModel: ['ZGR904-S'],
|
package/devices/lidl.js
CHANGED
|
@@ -486,6 +486,14 @@ module.exports = [
|
|
|
486
486
|
device.getEndpoint(1).saveClusterAttributeKeyValue('lightingColorCtrl', {colorCapabilities: 29});
|
|
487
487
|
},
|
|
488
488
|
},
|
|
489
|
+
{
|
|
490
|
+
fingerprint: [{modelID: 'TS0505B', manufactureName: '_TZ3210_umi6vbsz'}],
|
|
491
|
+
model: '100341862',
|
|
492
|
+
vendor: 'Lidl',
|
|
493
|
+
description: 'Livarno Home LED-Flooder',
|
|
494
|
+
extend: extend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 500], disableColorTempStartup: true}),
|
|
495
|
+
meta: {applyRedFix: true, enhancedHue: false},
|
|
496
|
+
},
|
|
489
497
|
{
|
|
490
498
|
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_s8gkrkxk'}],
|
|
491
499
|
model: 'HG06467',
|
|
@@ -539,6 +547,17 @@ module.exports = [
|
|
|
539
547
|
device.getEndpoint(1).saveClusterAttributeKeyValue('lightingColorCtrl', {colorCapabilities: 16});
|
|
540
548
|
},
|
|
541
549
|
},
|
|
550
|
+
{
|
|
551
|
+
fingerprint: [{modelID: 'TS0505B', manufacturerName: '_TZ3210_umi6vbsz'}],
|
|
552
|
+
model: 'HG08010',
|
|
553
|
+
vendor: 'Lidl',
|
|
554
|
+
description: 'Livarno Home outdoor spotlight',
|
|
555
|
+
...extend.light_onoff_brightness_colortemp_color({disableColorTempStartup: true, colorTempRange: [153, 500]}),
|
|
556
|
+
meta: {applyRedFix: true, enhancedHue: false},
|
|
557
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
558
|
+
device.getEndpoint(1).saveClusterAttributeKeyValue('lightingColorCtrl', {colorCapabilities: 29});
|
|
559
|
+
},
|
|
560
|
+
},
|
|
542
561
|
{
|
|
543
562
|
fingerprint: [{modelID: 'TS0505B', manufacturerName: '_TZ3210_p9ao60da'}],
|
|
544
563
|
model: 'HG08008',
|
|
@@ -772,6 +791,14 @@ module.exports = [
|
|
|
772
791
|
extend: extend.light_onoff_brightness_colortemp_color({supportsHS: true, preferHS: true, colorTempRange: [153, 500]}),
|
|
773
792
|
meta: {enhancedHue: false},
|
|
774
793
|
},
|
|
794
|
+
{
|
|
795
|
+
fingerprint: [{modelID: 'TS0505B', manufactureName: '_TZ3000_bwlvyjwk'}],
|
|
796
|
+
model: 'HG08383B',
|
|
797
|
+
vendor: 'Lidl',
|
|
798
|
+
description: 'Livarno outdoor LED light chain',
|
|
799
|
+
extend: extend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 500], disableColorTempStartup: true}),
|
|
800
|
+
meta: {applyRedFix: true, enhancedHue: false},
|
|
801
|
+
},
|
|
775
802
|
{
|
|
776
803
|
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_chyvmhay'}],
|
|
777
804
|
model: '368308_2010',
|
package/devices/paulmann.js
CHANGED
|
@@ -64,7 +64,7 @@ module.exports = [
|
|
|
64
64
|
extend: extend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 370]}),
|
|
65
65
|
},
|
|
66
66
|
{
|
|
67
|
-
zigbeeModel: ['CCT light', 'CCT_light'],
|
|
67
|
+
zigbeeModel: ['CCT light', 'CCT_light', 'CCT light '],
|
|
68
68
|
model: '50064',
|
|
69
69
|
vendor: 'Paulmann',
|
|
70
70
|
description: 'SmartHome led spot',
|
package/devices/philips.js
CHANGED
|
@@ -2417,7 +2417,7 @@ module.exports = [
|
|
|
2417
2417
|
extend: hueExtend.light_onoff_brightness_colortemp_color(),
|
|
2418
2418
|
},
|
|
2419
2419
|
{
|
|
2420
|
-
zigbeeModel: ['1746330P7', '1746347P7'],
|
|
2420
|
+
zigbeeModel: ['1746330P7', '1746330V7', '1746347P7'],
|
|
2421
2421
|
model: '1746330P7',
|
|
2422
2422
|
vendor: 'Philips',
|
|
2423
2423
|
description: 'Hue Appear outdoor wall light',
|
package/devices/robb.js
CHANGED
|
@@ -88,6 +88,18 @@ module.exports = [
|
|
|
88
88
|
await reporting.onOff(endpoint);
|
|
89
89
|
},
|
|
90
90
|
},
|
|
91
|
+
{
|
|
92
|
+
zigbeeModel: ['ROB_200-030-0'],
|
|
93
|
+
model: 'ROB_200-030-0',
|
|
94
|
+
vendor: 'ROBB',
|
|
95
|
+
description: 'Zigbee AC in wall switch 400W (2-wire)',
|
|
96
|
+
extend: extend.switch(),
|
|
97
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
98
|
+
const endpoint = device.getEndpoint(1) || device.getEndpoint(3);
|
|
99
|
+
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff']);
|
|
100
|
+
await reporting.onOff(endpoint);
|
|
101
|
+
},
|
|
102
|
+
},
|
|
91
103
|
{
|
|
92
104
|
zigbeeModel: ['ROB_200-014-0'],
|
|
93
105
|
model: 'ROB_200-014-0',
|
|
@@ -194,8 +194,9 @@ module.exports = [
|
|
|
194
194
|
vendor: 'Schneider Electric',
|
|
195
195
|
description: 'Roller shutter',
|
|
196
196
|
fromZigbee: [fz.cover_position_tilt],
|
|
197
|
-
toZigbee: [tz.cover_position_tilt, tz.cover_state],
|
|
198
|
-
exposes: [e.cover_position()
|
|
197
|
+
toZigbee: [tz.cover_position_tilt, tz.cover_state, tzLocal.lift_duration],
|
|
198
|
+
exposes: [e.cover_position(), exposes.numeric('lift_duration', ea.STATE_SET).withUnit('seconds')
|
|
199
|
+
.withValueMin(0).withValueMax(300).withDescription('Duration of lift')],
|
|
199
200
|
meta: {coverInverted: true},
|
|
200
201
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
201
202
|
const endpoint = device.getEndpoint(5);
|
package/devices/tuya.js
CHANGED
|
@@ -467,7 +467,8 @@ module.exports = [
|
|
|
467
467
|
{modelID: 'TS0505B', manufacturerName: '_TZ3210_iwbaamgh'},
|
|
468
468
|
{modelID: 'TS0505B', manufacturerName: '_TZ3210_klv2wul0'},
|
|
469
469
|
{modelID: 'TS0505B', manufacturerName: '_TZ3210_rcggc0ys'},
|
|
470
|
-
{modelID: 'TS0505B', manufacturerName: '_TZ3210_s6zec0of'}
|
|
470
|
+
{modelID: 'TS0505B', manufacturerName: '_TZ3210_s6zec0of'},
|
|
471
|
+
{modelID: 'TS0505B', manufacturerName: '_TZ3210_y5fjkn7x'}],
|
|
471
472
|
model: 'TS0505B',
|
|
472
473
|
vendor: 'TuYa',
|
|
473
474
|
description: 'Zigbee RGB+CCT light',
|
|
@@ -809,10 +810,12 @@ module.exports = [
|
|
|
809
810
|
},
|
|
810
811
|
{
|
|
811
812
|
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_kyfqmmyl'},
|
|
812
|
-
{modelID: 'TS0601', manufacturerName: '_TZE200_2hf7x9n3'}
|
|
813
|
+
{modelID: 'TS0601', manufacturerName: '_TZE200_2hf7x9n3'},
|
|
814
|
+
{modelID: 'TS0601', manufacturerName: '_TZE200_bynnczcb'}],
|
|
813
815
|
model: 'TS0601_switch_3_gang',
|
|
814
816
|
vendor: 'TuYa',
|
|
815
817
|
description: '3 gang switch',
|
|
818
|
+
whiteLabel: [{vendor: 'NOVADIGITAL', model: 'WS-US-ZB', description: 'Interruptor touch Zigbee 3 Teclas'}],
|
|
816
819
|
exposes: [e.switch().withEndpoint('l1').setAccess('state', ea.STATE_SET),
|
|
817
820
|
e.switch().withEndpoint('l2').setAccess('state', ea.STATE_SET),
|
|
818
821
|
e.switch().withEndpoint('l3').setAccess('state', ea.STATE_SET)],
|
|
@@ -946,6 +949,8 @@ module.exports = [
|
|
|
946
949
|
fingerprint: [
|
|
947
950
|
{modelID: 'TS0201', manufacturerName: '_TZ3000_bguser20'},
|
|
948
951
|
{modelID: 'TS0201', manufacturerName: '_TZ3000_fllyghyj'},
|
|
952
|
+
{modelID: 'TS0201', manufacturerName: '_TZ3000_dowj6gyi'},
|
|
953
|
+
{modelID: 'TS0201', manufacturerName: '_TZ3000_yd2e749y'},
|
|
949
954
|
],
|
|
950
955
|
model: 'WSD500A',
|
|
951
956
|
vendor: 'TuYa',
|