zigbee-herdsman-converters 14.0.492 → 14.0.495

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/heiman.js CHANGED
@@ -285,9 +285,17 @@ module.exports = [
285
285
  model: 'SMHM-I1',
286
286
  vendor: 'HEIMAN',
287
287
  description: 'Smart motion sensor',
288
- fromZigbee: [fz.ias_occupancy_alarm_1],
288
+ fromZigbee: [fz.ias_occupancy_alarm_1, fz.battery],
289
289
  toZigbee: [],
290
- exposes: [e.occupancy(), e.battery_low()],
290
+ exposes: [e.occupancy(), e.battery_low(), e.battery(), e.battery_voltage()],
291
+ meta: {battery: {voltageToPercentage: '3V_2500'}},
292
+ configure: async (device, coordinatorEndpoint, logger) => {
293
+ const endpoint = device.getEndpoint(1);
294
+ const bindClusters = ['genPowerCfg'];
295
+ await reporting.bind(endpoint, coordinatorEndpoint, bindClusters);
296
+ await reporting.batteryPercentageRemaining(endpoint);
297
+ await reporting.batteryVoltage(endpoint);
298
+ },
291
299
  },
292
300
  {
293
301
  zigbeeModel: ['HT-EM', 'TH-EM', 'TH-T_V14'],
package/devices/ikea.js CHANGED
@@ -279,10 +279,10 @@ module.exports = [
279
279
  extend: tradfriExtend.light_onoff_brightness_colortemp(),
280
280
  },
281
281
  {
282
- zigbeeModel: ['TRADFRIbulbE27WSglobeopal1055lm'],
282
+ zigbeeModel: ['TRADFRIbulbE27WSglobeopal1055lm', 'TRADFRIbulbE26WSglobeopal1100lm'],
283
283
  model: 'LED2003G10',
284
284
  vendor: 'IKEA',
285
- description: 'TRADFRI LED bulb E27 1055 lumen, dimmable, white spectrum, opal white',
285
+ description: 'TRADFRI LED bulb E26/27 1100/1055 lumen, dimmable, white spectrum, opal white',
286
286
  extend: tradfriExtend.light_onoff_brightness_colortemp(),
287
287
  },
288
288
  {
@@ -591,7 +591,7 @@ module.exports = [
591
591
  ota: ota.zigbeeOTA,
592
592
  },
593
593
  {
594
- zigbeeModel: ['4090531P9'],
594
+ zigbeeModel: ['4090531P9', '929003053601'],
595
595
  model: '4090531P9',
596
596
  vendor: 'Philips',
597
597
  description: 'Hue Flourish white and color ambiance ceiling light with Bluetooth',
@@ -6,10 +6,10 @@ const e = exposes.presets;
6
6
  module.exports = [
7
7
  {
8
8
  zigbeeModel: ['PROLIGHT E27 WHITE AND COLOUR'],
9
- model: '5412748727388',
9
+ model: '5412748727371',
10
10
  vendor: 'Prolight',
11
11
  description: 'E27 white and colour bulb',
12
- extend: extend.light_onoff_brightness_colortemp_color(),
12
+ extend: extend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 555]}),
13
13
  },
14
14
  {
15
15
  zigbeeModel: ['PROLIGHT E27 WARM WHITE CLEAR'],
@@ -32,9 +32,16 @@ module.exports = [
32
32
  description: 'GU10 white and colour spot',
33
33
  extend: extend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 555]}),
34
34
  },
35
+ {
36
+ zigbeeModel: ['PROLIGHT GU10 WARM WHITE'],
37
+ model: '5412748727395',
38
+ vendor: 'Prolight',
39
+ description: 'GU10 spot dimmable',
40
+ extend: extend.light_onoff_brightness(),
41
+ },
35
42
  {
36
43
  zigbeeModel: ['PROLIGHT REMOTE CONTROL'],
37
- model: 'PROLIGHT_REMOTE_CONTROL',
44
+ model: '5412748727388',
38
45
  vendor: 'Prolight',
39
46
  description: 'Remote control',
40
47
  toZigbee: [],
package/devices/tuya.js CHANGED
@@ -13,7 +13,7 @@ const utils = require('../lib/utils');
13
13
  const TS011Fplugs = ['_TZ3000_5f43h46b', '_TZ3000_cphmq0q7', '_TZ3000_dpo1ysak', '_TZ3000_ew3ldmgx', '_TZ3000_gjnozsaz',
14
14
  '_TZ3000_jvzvulen', '_TZ3000_mraovvmm', '_TZ3000_nfnmi125', '_TZ3000_ps3dmato', '_TZ3000_w0qqde0g', '_TZ3000_u5u4cakc',
15
15
  '_TZ3000_rdtixbnu', '_TZ3000_typdpbpg', '_TZ3000_kx0pris5', '_TZ3000_amdymr7l', '_TZ3000_z1pnpsdo', '_TZ3000_ksw8qtmt',
16
- '_TZ3000_nzkqcvvs'];
16
+ '_TZ3000_nzkqcvvs', '_TZ3000_1h2x4akh'];
17
17
 
18
18
  const tzLocal = {
19
19
  TS0504B_color: {
@@ -287,7 +287,8 @@ module.exports = [
287
287
  {modelID: 'TS0505B', manufacturerName: '_TZ3210_mzdax7ha'},
288
288
  {modelID: 'TS0505B', manufacturerName: '_TZB210_tmi0rihb'},
289
289
  {modelID: 'TS0505B', manufacturerName: '_TZ3210_a4s41wm4'},
290
- {modelID: 'TS0505B', manufacturerName: '_TZ3210_qxenlrin'}],
290
+ {modelID: 'TS0505B', manufacturerName: '_TZ3210_qxenlrin'},
291
+ {modelID: 'TS0505B', manufacturerName: '_TZ3210_klv2wul0'}],
291
292
  model: 'TS0505B',
292
293
  vendor: 'TuYa',
293
294
  description: 'Zigbee RGB+CCT light',
@@ -0,0 +1,99 @@
1
+ # Zigbee OTA source provider sources for these and others
2
+
3
+ Collection of external Zigbee OTA firmware images from official and unofficial OTA provider sources.
4
+
5
+ ### Koenkk zigbee-OTA repository
6
+
7
+ Koenkk zigbee-OTA repository host third-party OTA firmware images and external URLs for many third-party Zigbee OTA firmware images.
8
+
9
+ https://github.com/Koenkk/zigbee-OTA/tree/master/images
10
+
11
+ https://raw.githubusercontent.com/Koenkk/zigbee-OTA/master/index.json
12
+
13
+ ### Dresden Elektronik
14
+
15
+ Dresden Elektronik Zigbee OTA firmware images are made publicly available by Dresden Elektronik (first-party) at the following URL:
16
+
17
+ https://github.com/dresden-elektronik/deconz-rest-plugin/wiki/OTA-Image-Types---Firmware-versions
18
+
19
+ Dresden Elektronik also provide third-party OTA firmware images and external URLs for many third-party Zigbee OTA firmware images.
20
+
21
+ ### EUROTRONICS
22
+
23
+ EUROTRONICS Zigbee OTA firmware images are made publicly available by EUROTRONIC Technology (first-party) at the following URL:
24
+
25
+ https://github.com/EUROTRONIC-Technology/Spirit-ZigBee/releases/download/
26
+
27
+ ### IKEA Trådfri
28
+
29
+ IKEA Tradfi Zigbee OTA firmware images are made publicly available by IKEA (first-party) at the following URL:
30
+
31
+ Download-URL:
32
+
33
+ http://fw.ota.homesmart.ikea.net/feed/version_info.json
34
+
35
+ Download-URL (Test/Beta-Version):
36
+
37
+ http://fw.test.ota.homesmart.ikea.net/feed/version_info.json
38
+
39
+ Release changelogs
40
+
41
+ https://ww8.ikea.com/ikeahomesmart/releasenotes/releasenotes.html
42
+
43
+ ### LEDVANCE/Sylvania and OSRAM Lightify
44
+
45
+ LEDVANCE/Sylvania and OSRAM Lightify Zigbee OTA firmware images are made publicly available by LEDVANCE (first-party) at the following URL:
46
+
47
+ https://update.ledvance.com/firmware-overview
48
+
49
+ https://api.update.ledvance.com/v1/zigbee/firmwares/download
50
+
51
+ https://consumer.sylvania.com/our-products/smart/sylvania-smart-zigbee-products-menu/index.jsp
52
+
53
+ ### Legrand/Netatmo
54
+
55
+ Legrand/Netatmo Zigbee OTA firmware images are made publicly available by Legrand (first-party) at the following URL:
56
+
57
+ https://developer.legrand.com/documentation/operating-manual/ https://developer.legrand.com/documentation/firmwares-download/
58
+
59
+ ### LiXee
60
+
61
+ LiXee Zigbee OTA firmware images are made publicly available by Fairecasoimeme / ZiGate (first-party) at the following URL:
62
+
63
+ https://github.com/fairecasoimeme/Zlinky_TIC/releases
64
+
65
+ ### SALUS/Computime
66
+
67
+ SALUS/Computime Hue Zigbee OTA firmware images are made publicly available by SALUS (first-party) at the following URL:
68
+
69
+ https://eu.salusconnect.io/demo/default/status/firmware
70
+
71
+ ### Sengled
72
+
73
+ Sengled Zigbee OTA firmware images are made publicly available by Dresden Elektronik (third-party) at the following URL:
74
+
75
+ https://github.com/dresden-elektronik/deconz-rest-plugin/wiki/OTA-Image-Types---Firmware-versions#sengled
76
+
77
+ ### Philips Hue (Signify)
78
+
79
+ Philips Hue OTA firmware images are available for different Hue devices for several official sources that do not all use the same APIs:
80
+
81
+ https://firmware.meethue.com/v1/checkUpdate
82
+
83
+ https://firmware.meethue.com/storage/
84
+
85
+ http://fds.dc1.philips.com/firmware/
86
+
87
+ Philips Hue (Signify) Zigbee OTA firmware images direct URLs are available by Koenkk zigbee-OTA repository (third-party) at following URL:
88
+
89
+ https://raw.githubusercontent.com/Koenkk/zigbee-OTA/master/index.json
90
+
91
+ Philips Hue (Signify) Zigbee OTA firmware images are also made publicly available by Dresden Elektronik (third-party) at following URL:
92
+
93
+ https://github.com/dresden-elektronik/deconz-rest-plugin/wiki/OTA-Image-Types---Firmware-versions#philips-hue
94
+
95
+ ### Ubisys
96
+
97
+ Ubisys Zigbee OTA firmware images are made publicly available by Ubisys (first-party) at the following URL:
98
+
99
+ https://www.ubisys.de/en/support/firmware/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zigbee-herdsman-converters",
3
- "version": "14.0.492",
3
+ "version": "14.0.495",
4
4
  "description": "Collection of device converters to be used with zigbee-herdsman",
5
5
  "main": "index.js",
6
6
  "files": [