zigbee-herdsman-converters 15.0.35 → 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.
@@ -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};
@@ -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.3', 'SV02-612-MP-1.2', 'SV02-612-MP-1.3', 'SV02-410-MP-1.0',
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/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(2).withValueStep(0.1)
433
- .withDescription('Hysteresis setting, between 0.5 and 2 in 0.1 °C. Default: 0.5.'),
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(20).withValueMax(60)
438
- .withDescription('Room temperature alarm threshold, between 20 and 60 in °C. 0 means disabled. Default: 45.'),
437
+ .withValueMin(0).withValueMax(35)
438
+ .withDescription('Floor temperature over heating threshold, range is 0-35, unit is 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);
@@ -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/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+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zigbee-herdsman-converters",
3
- "version": "15.0.35",
3
+ "version": "15.0.36",
4
4
  "description": "Collection of device converters to be used with zigbee-herdsman",
5
5
  "main": "index.js",
6
6
  "files": [