zigbee-herdsman-converters 14.0.342 → 14.0.343
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/custom_devices_diy.js +21 -0
- package/devices/ikea.js +2 -1
- package/devices/nue_3a.js +13 -1
- package/devices/philips.js +19 -1
- package/devices/tuya.js +1 -0
- package/npm-shrinkwrap.json +1 -1
- package/package.json +1 -1
|
@@ -269,4 +269,25 @@ module.exports = [
|
|
|
269
269
|
},
|
|
270
270
|
exposes: [e.soil_moisture(), e.battery()],
|
|
271
271
|
},
|
|
272
|
+
{
|
|
273
|
+
zigbeeModel: ['EFEKTA_eON213wz'],
|
|
274
|
+
model: 'EFEKTA_eON213wz',
|
|
275
|
+
vendor: 'Custom devices (DiY)',
|
|
276
|
+
description: '[Mini weather station, digital barometer, forecast, charts, temperature, humidity](http://efektalab.com/eON213wz)',
|
|
277
|
+
fromZigbee: [fz.temperature, fz.humidity, fz.pressure, fz.battery],
|
|
278
|
+
toZigbee: [tz.factory_reset],
|
|
279
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
280
|
+
const endpoint = device.getEndpoint(1);
|
|
281
|
+
await reporting.bind(endpoint, coordinatorEndpoint, [
|
|
282
|
+
'genPowerCfg', 'msTemperatureMeasurement', 'msRelativeHumidity', 'msPressureMeasurement']);
|
|
283
|
+
const overides = {min: 0, max: 21600, change: 0};
|
|
284
|
+
await reporting.batteryVoltage(endpoint, overides);
|
|
285
|
+
await reporting.batteryPercentageRemaining(endpoint, overides);
|
|
286
|
+
await reporting.temperature(endpoint, overides);
|
|
287
|
+
await reporting.humidity(endpoint, overides);
|
|
288
|
+
await reporting.pressureExtended(endpoint, overides);
|
|
289
|
+
await endpoint.read('msPressureMeasurement', ['scale']);
|
|
290
|
+
},
|
|
291
|
+
exposes: [e.battery(), e.temperature(), e.humidity(), e.pressure()],
|
|
292
|
+
},
|
|
272
293
|
];
|
package/devices/ikea.js
CHANGED
|
@@ -38,7 +38,8 @@ const configureRemote = async (device, coordinatorEndpoint, logger) => {
|
|
|
38
38
|
// - https://github.com/Koenkk/zigbee2mqtt/issues/7716
|
|
39
39
|
const endpoint = device.getEndpoint(1);
|
|
40
40
|
const version = device.softwareBuildID.split('.').map((n) => Number(n));
|
|
41
|
-
const bindTarget = version[0]
|
|
41
|
+
const bindTarget = version[0] > 2 || (version[0] == 2 && version[1] > 3) || (version[0] == 2 && version[1] == 3 && version[2] >= 75) ?
|
|
42
|
+
coordinatorEndpoint : constants.defaultBindGroup;
|
|
42
43
|
await endpoint.bind('genOnOff', bindTarget);
|
|
43
44
|
await reporting.bind(endpoint, coordinatorEndpoint, ['genPowerCfg']);
|
|
44
45
|
await reporting.batteryPercentageRemaining(endpoint);
|
package/devices/nue_3a.js
CHANGED
|
@@ -157,7 +157,7 @@ module.exports = [
|
|
|
157
157
|
},
|
|
158
158
|
},
|
|
159
159
|
{
|
|
160
|
-
zigbeeModel: ['FNB56-ZSW02LX2.0'
|
|
160
|
+
zigbeeModel: ['FNB56-ZSW02LX2.0'],
|
|
161
161
|
model: 'HGZB-42',
|
|
162
162
|
vendor: 'Nue / 3A',
|
|
163
163
|
description: 'Smart light switch - 2 gang v2.0',
|
|
@@ -282,4 +282,16 @@ module.exports = [
|
|
|
282
282
|
description: '9W RGB LED downlight',
|
|
283
283
|
extend: extend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 370]}),
|
|
284
284
|
},
|
|
285
|
+
{
|
|
286
|
+
zigbeeModel: ['LXN-2S27LX1.0'],
|
|
287
|
+
model: 'NUE-AUWZO2',
|
|
288
|
+
vendor: 'Nue / 3A',
|
|
289
|
+
description: 'Smart Zigbee double power point',
|
|
290
|
+
extend: extend.switch(),
|
|
291
|
+
exposes: [e.switch().withEndpoint('left'), e.switch().withEndpoint('right')],
|
|
292
|
+
meta: {multiEndpoint: true},
|
|
293
|
+
endpoint: (device) => {
|
|
294
|
+
return {left: 1, right: 2};
|
|
295
|
+
},
|
|
296
|
+
},
|
|
285
297
|
];
|
package/devices/philips.js
CHANGED
|
@@ -368,6 +368,15 @@ module.exports = [
|
|
|
368
368
|
extend: hueExtend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 500]}),
|
|
369
369
|
ota: ota.zigbeeOTA,
|
|
370
370
|
},
|
|
371
|
+
{
|
|
372
|
+
zigbeeModel: ['1743730P7'],
|
|
373
|
+
model: '1743730P7',
|
|
374
|
+
vendor: 'Philips',
|
|
375
|
+
description: 'Hue Calla outdoor',
|
|
376
|
+
meta: {turnsOffAtBrightness1: true},
|
|
377
|
+
extend: hueExtend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 500]}),
|
|
378
|
+
ota: ota.zigbeeOTA,
|
|
379
|
+
},
|
|
371
380
|
{
|
|
372
381
|
zigbeeModel: ['1744130P7'],
|
|
373
382
|
model: '1744130P7',
|
|
@@ -404,6 +413,15 @@ module.exports = [
|
|
|
404
413
|
extend: hueExtend.light_onoff_brightness_colortemp_color(),
|
|
405
414
|
ota: ota.zigbeeOTA,
|
|
406
415
|
},
|
|
416
|
+
{
|
|
417
|
+
zigbeeModel: ['1743430P7'],
|
|
418
|
+
model: '1743430P7',
|
|
419
|
+
vendor: 'Philips',
|
|
420
|
+
description: 'Hue Impress outdoor Pedestal',
|
|
421
|
+
meta: {turnsOffAtBrightness1: true},
|
|
422
|
+
extend: hueExtend.light_onoff_brightness_colortemp_color({colorTempRange: [153, 500]}),
|
|
423
|
+
ota: ota.zigbeeOTA,
|
|
424
|
+
},
|
|
407
425
|
{
|
|
408
426
|
zigbeeModel: ['1740193P0'],
|
|
409
427
|
model: '1740193P0',
|
|
@@ -834,7 +852,7 @@ module.exports = [
|
|
|
834
852
|
ota: ota.zigbeeOTA,
|
|
835
853
|
},
|
|
836
854
|
{
|
|
837
|
-
zigbeeModel: ['LCT024', '440400982841'],
|
|
855
|
+
zigbeeModel: ['LCT024', '440400982841', '440400982842'],
|
|
838
856
|
model: '915005733701',
|
|
839
857
|
vendor: 'Philips',
|
|
840
858
|
description: 'Hue White and color ambiance Play Lightbar',
|
package/devices/tuya.js
CHANGED
|
@@ -122,6 +122,7 @@ module.exports = [
|
|
|
122
122
|
{modelID: 'TS0505B', manufacturerName: '_TZ3000_x2fqbdun'},
|
|
123
123
|
{modelID: 'TS0505B', manufacturerName: '_TZ3000_589kq4ul'},
|
|
124
124
|
{modelID: 'TS0505B', manufacturerName: '_TZ3000_1mtktxdk'},
|
|
125
|
+
{modelID: 'TS0505B', manufacturerName: '_TZ3210_0rn9qhnu'},
|
|
125
126
|
{modelID: 'TS0505B', manufacturerName: '_TZ3210_bicjqpg4'},
|
|
126
127
|
{modelID: 'TS0505B', manufacturerName: '_TZ3000_cmaky9gq'},
|
|
127
128
|
{modelID: 'TS0505B', manufacturerName: '_TZ3000_tza2vjxx'}],
|
package/npm-shrinkwrap.json
CHANGED