zigbee-herdsman-converters 15.0.39 → 15.0.40

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.
@@ -5,7 +5,7 @@ module.exports = [
5
5
  zigbeeModel: ['Bankamp Dimm-Leuchte'],
6
6
  model: '2189/1-xx',
7
7
  vendor: 'Bankamp',
8
- description: 'Grazia ceiling light',
8
+ description: 'Ceiling light (e.g. Grazia, Grand)',
9
9
  extend: extend.light_onoff_brightness(),
10
10
  },
11
11
  ];
package/devices/datek.js CHANGED
@@ -10,12 +10,13 @@ const ea = exposes.access;
10
10
 
11
11
  module.exports = [
12
12
  {
13
- fingerprint: [{modelID: 'PoP', manufacturerName: 'Eva'}],
13
+ zigbeeModel: ['PoP'],
14
14
  model: 'HLU2909K',
15
15
  vendor: 'Datek',
16
16
  description: 'APEX smart plug 16A',
17
17
  fromZigbee: [fz.on_off, fz.electrical_measurement, fz.temperature],
18
18
  toZigbee: [tz.on_off, tz.power_on_behavior],
19
+ ota: ota.zigbeeOTA,
19
20
  configure: async (device, coordinatorEndpoint, logger) => {
20
21
  const endpoint = device.getEndpoint(1);
21
22
  await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff', 'haElectricalMeasurement', 'msTemperatureMeasurement']);
@@ -28,11 +29,10 @@ module.exports = [
28
29
  await reporting.activePower(endpoint);
29
30
  await reporting.temperature(endpoint);
30
31
  },
31
- ota: ota.zigbeeOTA,
32
32
  exposes: [e.power(), e.current(), e.voltage(), e.switch(), e.temperature(), e.power_on_behavior()],
33
33
  },
34
34
  {
35
- fingerprint: [{modelID: 'Meter Reader', manufacturerName: 'Eva'}],
35
+ zigbeeModel: ['Meter Reader'],
36
36
  model: 'HSE2905E',
37
37
  vendor: 'Datek',
38
38
  description: 'Datek Eva AMS HAN power-meter sensor',
@@ -86,7 +86,7 @@ module.exports = [
86
86
  e.voltage_phase_c(), e.temperature()],
87
87
  },
88
88
  {
89
- fingerprint: [{modelID: 'Motion Sensor', manufacturerName: 'Eva'}],
89
+ zigbeeModel: ['Motion Sensor'],
90
90
  model: 'HSE2927E',
91
91
  vendor: 'Datek',
92
92
  description: 'Eva motion sensor',
@@ -114,7 +114,7 @@ module.exports = [
114
114
  exposes.numeric('occupancy_timeout', ea.ALL).withUnit('seconds').withValueMin(0).withValueMax(65535)],
115
115
  },
116
116
  {
117
- fingerprint: [{modelID: 'ID Lock 150', manufacturerName: 'Eva'}],
117
+ zigbeeModel: ['ID Lock 150'],
118
118
  model: '0402946',
119
119
  vendor: 'Datek',
120
120
  description: 'Zigbee module for ID lock 150',
@@ -188,7 +188,7 @@ module.exports = [
188
188
  'random_pin_24_hours']).withDescription('Service Mode of the Lock')],
189
189
  },
190
190
  {
191
- fingerprint: [{modelID: 'Water Sensor', manufacturerName: 'Eva'}],
191
+ zigbeeModel: ['Water Sensor'],
192
192
  model: 'HSE2919E',
193
193
  vendor: 'Datek',
194
194
  description: 'Eva water leak sensor',
@@ -229,7 +229,6 @@ module.exports = [
229
229
  'brightness_move_down', 'brightness_move_up', 'brightness_stop'])],
230
230
  },
231
231
  {
232
- fingerprint: [{modelID: 'Door/Window Sensor', manufacturerName: 'Eva'}],
233
232
  zigbeeModel: ['Door/Window Sensor'],
234
233
  model: 'HSE2920E',
235
234
  vendor: 'Datek',
@@ -8,4 +8,11 @@ module.exports = [
8
8
  description: 'Smart LED bulb',
9
9
  extend: extend.light_onoff_brightness_colortemp({colorTempRange: [153, 370]}),
10
10
  },
11
+ {
12
+ zigbeeModel: ['EB-E27-ST64-CCT-FV'],
13
+ model: 'EB-E27-ST64-CCT-FV',
14
+ vendor: 'EssentielB',
15
+ description: 'Filament vintage light bulb',
16
+ extend: extend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 454]}),
17
+ },
11
18
  ];
@@ -183,7 +183,7 @@ module.exports = [
183
183
  {disableColorTempStartup: true, colorTempRange: [153, 500], disableEffect: true}),
184
184
  },
185
185
  {
186
- fingerprint: [{modelID: 'TS0003', manufacturerName: '_TYZB01_zsl6z0pw'}],
186
+ fingerprint: [{modelID: 'TS0003', manufacturerName: '_TYZB01_zsl6z0pw'}, {modelID: 'TS0003', manufacturerName: '_TYZB01_uqkphoed'}],
187
187
  model: 'QS-Zigbee-S04-2C-LN',
188
188
  vendor: 'Lonsonho',
189
189
  description: '2 gang switch module with neutral wire',
@@ -48,6 +48,9 @@ module.exports = [
48
48
  await reporting.thermostatSystemMode(endpoint);
49
49
  await reporting.thermostatPIHeatingDemand(endpoint);
50
50
  await reporting.thermostatKeypadLockMode(endpoint);
51
+ // Has Unknown power source, force it.
52
+ device.powerSource = 'Mains (single phase)';
53
+ device.save();
51
54
  },
52
55
  },
53
56
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zigbee-herdsman-converters",
3
- "version": "15.0.39",
3
+ "version": "15.0.40",
4
4
  "description": "Collection of device converters to be used with zigbee-herdsman",
5
5
  "main": "index.js",
6
6
  "files": [