zigbee-herdsman-converters 15.0.67 → 15.0.68

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.
@@ -270,7 +270,7 @@ module.exports = [
270
270
  model: '4200-C',
271
271
  vendor: 'Centralite',
272
272
  description: 'Smart outlet',
273
- extend: extend.switch(),
273
+ extend: extend.switch({disablePowerOnBehavior: true}),
274
274
  configure: async (device, coordinatorEndpoint, logger) => {
275
275
  const endpoint = device.getEndpoint(1);
276
276
  await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff']);
package/devices/ikea.js CHANGED
@@ -365,6 +365,13 @@ module.exports = [
365
365
  description: 'TRADFRI LED bulb E26 250 lumen, wireless dimmable warm white/globe clear',
366
366
  extend: tradfriExtend.light_onoff_brightness(),
367
367
  },
368
+ {
369
+ zigbeeModel: ['TRADFRI bulb E27 WW G95 CL 470lm'],
370
+ model: 'LED2102G3',
371
+ vendor: 'IKEA',
372
+ description: 'TRADFRI bulb E27 WW 470 lumen, wireless dimmable warm white/globe clear',
373
+ extend: tradfriExtend.light_onoff_brightness(),
374
+ },
368
375
  {
369
376
  zigbeeModel: ['TRADFRIbulbG125E27WSopal470lm', 'TRADFRIbulbG125E26WSopal450lm'],
370
377
  model: 'LED1936G5',
@@ -10,6 +10,13 @@ const ea = exposes.access;
10
10
  const extend = {switch: require('../lib/extend').switch};
11
11
 
12
12
  module.exports = [
13
+ {
14
+ zigbeeModel: ['LWO007'],
15
+ model: '9290030521',
16
+ vendor: 'Philips',
17
+ description: 'Hue white G125 B22 LED bulb filament giant globe',
18
+ extend: philips.extend.light_onoff_brightness(),
19
+ },
13
20
  {
14
21
  zigbeeModel: ['929003055801'],
15
22
  model: '929003055801',
@@ -7,7 +7,7 @@ const ea = exposes.access;
7
7
 
8
8
  module.exports = [
9
9
  {
10
- zigbeeModel: ['ivfvd7h', 'eaxp72v\u0000', 'kfvq6avy\u0000', 'fvq6avy\u0000', 'fvq6avy', 'zk78ptr\u0000'],
10
+ zigbeeModel: ['ivfvd7h', 'eaxp72v\u0000', 'kfvq6avy\u0000', 'fvq6avy\u0000', 'fvq6avy', 'zk78ptr\u0000', '4yfvweb\u0000'],
11
11
  fingerprint: [
12
12
  {modelID: 'TS0601', manufacturerName: '_TZE200_zivfvd7h'},
13
13
  {modelId: 'TS0601', manufacturerName: '_TZE200_kfvq6avy'},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zigbee-herdsman-converters",
3
- "version": "15.0.67",
3
+ "version": "15.0.68",
4
4
  "description": "Collection of device converters to be used with zigbee-herdsman",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -38,7 +38,7 @@
38
38
  "buffer-crc32": "^0.2.13",
39
39
  "https-proxy-agent": "^5.0.1",
40
40
  "tar-stream": "^3.0.0",
41
- "zigbee-herdsman": "^0.14.97"
41
+ "zigbee-herdsman": "^0.14.98"
42
42
  },
43
43
  "devDependencies": {
44
44
  "eslint": "*",