zigbee-herdsman-converters 14.0.573 → 14.0.574

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.
@@ -435,19 +435,25 @@ module.exports = [
435
435
  zigbeeModel: ['EFEKTA_PWS'],
436
436
  model: 'EFEKTA_PWS',
437
437
  vendor: 'Custom devices (DiY)',
438
- description: '[Plant Wattering Sensor]',
439
- fromZigbee: [fz.temperature, fz.soil_moisture, fz.battery],
440
- toZigbee: [tz.factory_reset],
438
+ description: '[Plant Wattering Sensor, CR2450, CR2477 batteries, temperature ]',
439
+ fromZigbee: [fz.temperature, fz.humidity, fz.illuminance, fz.soil_moisture, fz.battery, fzLocal.node_config],
440
+ toZigbee: [tz.factory_reset, tzLocal.node_config],
441
441
  configure: async (device, coordinatorEndpoint, logger) => {
442
442
  const firstEndpoint = device.getEndpoint(1);
443
- await reporting.bind(firstEndpoint, coordinatorEndpoint, ['genPowerCfg', 'msTemperatureMeasurement', 'msSoilMoisture']);
443
+ await reporting.bind(firstEndpoint, coordinatorEndpoint, [
444
+ 'genPowerCfg', 'msTemperatureMeasurement', 'msSoilMoisture']);
444
445
  const overides = {min: 0, max: 21600, change: 0};
445
446
  await reporting.batteryVoltage(firstEndpoint, overides);
446
447
  await reporting.batteryPercentageRemaining(firstEndpoint, overides);
447
448
  await reporting.temperature(firstEndpoint, overides);
448
449
  await reporting.soil_moisture(firstEndpoint, overides);
450
+ const payload1 = [{attribute: {ID: 0x0201, type: 0x21},
451
+ minimumReportInterval: 0, maximumReportInterval: 21600, reportableChange: 0}];
452
+ await firstEndpoint.configureReporting('genPowerCfg', payload1);
449
453
  },
450
- exposes: [e.soil_moisture(), e.battery(), e.temperature()],
454
+ exposes: [e.soil_moisture(), e.battery(), e.temperature(),
455
+ exposes.numeric('report_delay', ea.STATE_SET).withUnit('Minutes').withValueMin(1).withValueMax(240)
456
+ .withDescription('Adjust Report Delay. Setting the time in minutes, by default 15 minutes')],
451
457
  },
452
458
  {
453
459
  zigbeeModel: ['EFEKTA_THP_LR'],
package/devices/lupus.js CHANGED
@@ -28,7 +28,7 @@ module.exports = [
28
28
  ota: ota.zigbeeOTA,
29
29
  },
30
30
  {
31
- zigbeeModel: ['PSMP5_00.00.03.11TC'],
31
+ zigbeeModel: ['PSMP5_00.00.03.11TC', 'PSMP5_00.00.05.12TC'],
32
32
  model: '12050',
33
33
  vendor: 'Lupus',
34
34
  description: 'LUPUSEC mains socket with power meter',
@@ -951,6 +951,13 @@ module.exports = [
951
951
  description: 'Hue white ambiance Adore wall light',
952
952
  extend: hueExtend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
953
953
  },
954
+ {
955
+ zigbeeModel: ['929003056001'],
956
+ model: '929003056001',
957
+ vendor: 'Philips',
958
+ description: 'Hue white ambiance Adore bathroom mirror light with Bluetooth',
959
+ extend: hueExtend.light_onoff_brightness_colortemp({colorTempRange: [153, 454]}),
960
+ },
954
961
  {
955
962
  zigbeeModel: ['LTW015'],
956
963
  model: '9290011998B',
package/devices/tuya.js CHANGED
@@ -1024,6 +1024,7 @@ module.exports = [
1024
1024
  {modelID: 'TS0201', manufacturerName: '_TZ3000_fllyghyj'},
1025
1025
  {modelID: 'TS0201', manufacturerName: '_TZ3000_dowj6gyi'},
1026
1026
  {modelID: 'TS0201', manufacturerName: '_TZ3000_yd2e749y'},
1027
+ {modelID: 'TS0201', manufacturerName: '_TZ3000_6uzkisv2'},
1027
1028
  ],
1028
1029
  model: 'WSD500A',
1029
1030
  vendor: 'TuYa',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zigbee-herdsman-converters",
3
- "version": "14.0.573",
3
+ "version": "14.0.574",
4
4
  "description": "Collection of device converters to be used with zigbee-herdsman",
5
5
  "main": "index.js",
6
6
  "files": [