zigbee-herdsman-converters 15.0.34 → 15.0.36
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 +3 -0
- package/devices/ikea.js +2 -1
- package/devices/keen_home.js +2 -2
- package/devices/lightsolutions.js +7 -0
- package/devices/moes.js +1 -1
- package/devices/namron.js +5 -4
- package/devices/philips.js +1 -1
- package/devices/robb.js +7 -0
- package/devices/tuya.js +1 -0
- package/devices/yale.js +1 -1
- package/package.json +1 -1
package/devices/hzc_electric.js
CHANGED
|
@@ -12,16 +12,19 @@ module.exports = [
|
|
|
12
12
|
description: 'Zigbee dual dimmer',
|
|
13
13
|
extend: extend.light_onoff_brightness({noConfigure: true}),
|
|
14
14
|
exposes: [e.light_brightness().withEndpoint('l1'), e.light_brightness().withEndpoint('l2')],
|
|
15
|
+
meta: {multiEndpoint: true},
|
|
15
16
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
16
17
|
await extend.light_onoff_brightness().configure(device, coordinatorEndpoint, logger);
|
|
17
18
|
const endpoint1 = device.getEndpoint(1);
|
|
18
19
|
await reporting.bind(endpoint1, coordinatorEndpoint, ['genOnOff', 'genLevelCtrl']);
|
|
19
20
|
await reporting.onOff(endpoint1);
|
|
21
|
+
await reporting.brightness(endpoint1);
|
|
20
22
|
|
|
21
23
|
await extend.light_onoff_brightness().configure(device, coordinatorEndpoint, logger);
|
|
22
24
|
const endpoint2 = device.getEndpoint(2);
|
|
23
25
|
await reporting.bind(endpoint2, coordinatorEndpoint, ['genOnOff', 'genLevelCtrl']);
|
|
24
26
|
await reporting.onOff(endpoint2);
|
|
27
|
+
await reporting.brightness(endpoint2);
|
|
25
28
|
},
|
|
26
29
|
endpoint: () => {
|
|
27
30
|
return {l1: 1, l2: 2};
|
package/devices/ikea.js
CHANGED
|
@@ -630,7 +630,8 @@ module.exports = [
|
|
|
630
630
|
'brightness_up_click', 'brightness_up_hold', 'brightness_up_release', 'toggle'])],
|
|
631
631
|
toZigbee: [],
|
|
632
632
|
ota: ota.tradfri,
|
|
633
|
-
|
|
633
|
+
// dontDividePercentage: true not needed with latest firmware
|
|
634
|
+
// https://github.com/Koenkk/zigbee2mqtt/issues/16412
|
|
634
635
|
configure: configureRemote,
|
|
635
636
|
},
|
|
636
637
|
{
|
package/devices/keen_home.js
CHANGED
|
@@ -42,8 +42,8 @@ module.exports = [
|
|
|
42
42
|
exposes: [e.cover_position().setAccess('state', ea.ALL), e.temperature(), e.battery(), e.pressure()],
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
|
-
zigbeeModel: ['SV02-410-MP-1.3', 'SV02-412-MP-1.3', 'SV02-610-MP-1.
|
|
46
|
-
'SV02-410-MP-1.2', 'SV02-412-MP-1.2'],
|
|
45
|
+
zigbeeModel: ['SV02-410-MP-1.3', 'SV02-412-MP-1.3', 'SV02-610-MP-1.0', 'SV02-610-MP-1.3', 'SV02-612-MP-1.2', 'SV02-612-MP-1.3',
|
|
46
|
+
'SV02-410-MP-1.0', 'SV02-410-MP-1.2', 'SV02-412-MP-1.2'],
|
|
47
47
|
model: 'SV02',
|
|
48
48
|
vendor: 'Keen Home',
|
|
49
49
|
description: 'Smart vent',
|
|
@@ -27,4 +27,11 @@ module.exports = [
|
|
|
27
27
|
await reporting.onOff(endpoint);
|
|
28
28
|
},
|
|
29
29
|
},
|
|
30
|
+
{
|
|
31
|
+
zigbeeModel: ['42-032'],
|
|
32
|
+
model: '42-032',
|
|
33
|
+
vendor: 'LightSolutions',
|
|
34
|
+
description: 'LED driver CCT 12V - 30W - CCT',
|
|
35
|
+
extend: extend.light_onoff_brightness_colortemp({colorTempRange: [160, 450]}),
|
|
36
|
+
},
|
|
30
37
|
];
|
package/devices/moes.js
CHANGED
|
@@ -401,7 +401,7 @@ module.exports = [
|
|
|
401
401
|
model: 'ZS-EUB_1gang',
|
|
402
402
|
vendor: 'Moes',
|
|
403
403
|
description: 'Wall light switch (1 gang)',
|
|
404
|
-
extend: tuya.extend.switch({
|
|
404
|
+
extend: tuya.extend.switch({backlightModeOffNormalInverted: true}),
|
|
405
405
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
406
406
|
await reporting.bind(device.getEndpoint(1), coordinatorEndpoint, ['genOnOff']);
|
|
407
407
|
device.powerSource = 'Mains (single phase)';
|
package/devices/namron.js
CHANGED
|
@@ -429,13 +429,14 @@ module.exports = [
|
|
|
429
429
|
.withDescription('The threshold to detect window open, between 1.5 and 4 in 0.5 °C. Default: 0 (disabled).'),
|
|
430
430
|
exposes.numeric('hysterersis', ea.ALL)
|
|
431
431
|
.withUnit('°C')
|
|
432
|
-
.withValueMin(0.5).withValueMax(
|
|
433
|
-
.withDescription('Hysteresis setting, between 0.5 and
|
|
432
|
+
.withValueMin(0.5).withValueMax(5).withValueStep(0.1)
|
|
433
|
+
.withDescription('Hysteresis setting, between 0.5 and 5 in 0.1 °C. Default: 0.5.'),
|
|
434
434
|
exposes.enum('display_auto_off_enabled', ea.ALL, ['enabled', 'disabled']),
|
|
435
435
|
exposes.numeric('alarm_airtemp_overvalue', ea.ALL)
|
|
436
436
|
.withUnit('°C')
|
|
437
|
-
.withValueMin(
|
|
438
|
-
.withDescription('
|
|
437
|
+
.withValueMin(0).withValueMax(35)
|
|
438
|
+
.withDescription('Floor temperature over heating threshold, range is 0-35, unit is 1ºC, ' +
|
|
439
|
+
'0 means this function is disabled, default value is 27.'),
|
|
439
440
|
],
|
|
440
441
|
onEvent: async (type, data, device, options) => {
|
|
441
442
|
const endpoint = device.getEndpoint(1);
|
package/devices/philips.js
CHANGED
|
@@ -442,7 +442,7 @@ module.exports = [
|
|
|
442
442
|
model: '7602031P7',
|
|
443
443
|
vendor: 'Philips',
|
|
444
444
|
description: 'Hue Go with Bluetooth',
|
|
445
|
-
extend: philips.extend.light_onoff_brightness_colortemp_color(),
|
|
445
|
+
extend: philips.extend.light_onoff_brightness_colortemp_color({disableHueEffects: true}),
|
|
446
446
|
},
|
|
447
447
|
{
|
|
448
448
|
zigbeeModel: ['LCF002', 'LCF001'],
|
package/devices/robb.js
CHANGED
|
@@ -7,6 +7,13 @@ const e = exposes.presets;
|
|
|
7
7
|
const ea = exposes.access;
|
|
8
8
|
|
|
9
9
|
module.exports = [
|
|
10
|
+
{
|
|
11
|
+
zigbeeModel: ['ROB_200-061-0'],
|
|
12
|
+
model: 'ROB_200-061-0',
|
|
13
|
+
vendor: 'ROBB',
|
|
14
|
+
description: '50W Zigbee CCT LED driver (constant current)',
|
|
15
|
+
extend: extend.light_onoff_brightness_colortemp({colorTempRange: [160, 450]}),
|
|
16
|
+
},
|
|
10
17
|
{
|
|
11
18
|
zigbeeModel: ['ROB_200-029-0'],
|
|
12
19
|
model: 'ROB_200-029-0',
|
package/devices/tuya.js
CHANGED
|
@@ -1237,6 +1237,7 @@ module.exports = [
|
|
|
1237
1237
|
fingerprint: [
|
|
1238
1238
|
{modelID: 'TS0601', manufacturerName: '_TZE200_whpb9yts'},
|
|
1239
1239
|
{modelID: 'TS0601', manufacturerName: '_TZE200_ebwgzdqq'},
|
|
1240
|
+
{modelID: 'TS0601', manufacturerName: '_TZE200_ctq0k47x'},
|
|
1240
1241
|
{modelID: 'TS0601', manufacturerName: '_TZE200_9i9dt8is'},
|
|
1241
1242
|
{modelID: 'TS0601', manufacturerName: '_TZE200_dfxkcots'},
|
|
1242
1243
|
{modelID: 'TS0601', manufacturerName: '_TZE200_w4cryh2i'},
|
package/devices/yale.js
CHANGED
|
@@ -85,7 +85,7 @@ module.exports = [
|
|
|
85
85
|
},
|
|
86
86
|
{
|
|
87
87
|
zigbeeModel: ['iZBModule01', '0700000001'],
|
|
88
|
-
model: 'YMF40/YDM4109
|
|
88
|
+
model: 'YMF40/YDM4109+/YDF40',
|
|
89
89
|
vendor: 'Yale',
|
|
90
90
|
description: 'Real living lock / Intelligent biometric digital lock',
|
|
91
91
|
// Increased timeout needed: https://github.com/Koenkk/zigbee2mqtt/issues/3290 for YDM4109+
|