zigbee-herdsman-converters 15.0.66 → 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',
@@ -1614,7 +1621,7 @@ module.exports = [
1614
1621
  extend: philips.extend.light_onoff_brightness_colortemp_color_gradient({colorTempRange: [153, 500]}),
1615
1622
  },
1616
1623
  {
1617
- zigbeeModel: ['929003479701'],
1624
+ zigbeeModel: ['929003479701', '915005987701'],
1618
1625
  model: '915005987701',
1619
1626
  vendor: 'Philips',
1620
1627
  description: 'Hue Gradient Signe floor lamp (wood)',
@@ -2991,7 +2998,15 @@ module.exports = [
2991
2998
  zigbeeModel: ['929003074801_01', '929003074801_02', '929003074801_03'],
2992
2999
  model: '929003074801',
2993
3000
  vendor: 'Philips',
2994
- description: 'Hue White and Color Ambiance GU10 (Xamento)',
3001
+ description: 'Hue Xamento White and Color Ambiance GU10',
3002
+ extend: philips.extend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 500]}),
3003
+ meta: {turnsOffAtBrightness1: true},
3004
+ },
3005
+ {
3006
+ zigbeeModel: ['929003074701'],
3007
+ model: '929003074701',
3008
+ vendor: 'Philips',
3009
+ description: 'Hue Xamento White and Color Ambiance GU10 (chrome)',
2995
3010
  extend: philips.extend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 500]}),
2996
3011
  meta: {turnsOffAtBrightness1: true},
2997
3012
  },
@@ -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/devices/xiaomi.js CHANGED
@@ -742,7 +742,7 @@ module.exports = [
742
742
  model: 'MCCGQ13LM',
743
743
  vendor: 'Xiaomi',
744
744
  description: 'Aqara P1 door & window contact sensor',
745
- fromZigbee: [fz. xiaomi_contact, fz.ias_contact_alarm_1, fz.aqara_opple],
745
+ fromZigbee: [fz.xiaomi_contact, fz.ias_contact_alarm_1, fz.aqara_opple],
746
746
  toZigbee: [],
747
747
  meta: {battery: {voltageToPercentage: '3V_2850_3000'}},
748
748
  exposes: [e.contact(), e.battery(), e.battery_voltage()],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zigbee-herdsman-converters",
3
- "version": "15.0.66",
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": "*",