zigbee-herdsman-converters 14.0.553 → 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 +19 -0
- 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
|
@@ -547,6 +547,17 @@ module.exports = [
|
|
|
547
547
|
device.getEndpoint(1).saveClusterAttributeKeyValue('lightingColorCtrl', {colorCapabilities: 16});
|
|
548
548
|
},
|
|
549
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
|
+
},
|
|
550
561
|
{
|
|
551
562
|
fingerprint: [{modelID: 'TS0505B', manufacturerName: '_TZ3210_p9ao60da'}],
|
|
552
563
|
model: 'HG08008',
|
|
@@ -780,6 +791,14 @@ module.exports = [
|
|
|
780
791
|
extend: extend.light_onoff_brightness_colortemp_color({supportsHS: true, preferHS: true, colorTempRange: [153, 500]}),
|
|
781
792
|
meta: {enhancedHue: false},
|
|
782
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
|
+
},
|
|
783
802
|
{
|
|
784
803
|
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_chyvmhay'}],
|
|
785
804
|
model: '368308_2010',
|