zigbee-herdsman-converters 14.0.361 → 14.0.362

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.
@@ -1,5 +1,6 @@
1
1
  const ota = require('../lib/ota');
2
2
  const extend = require('../lib/extend');
3
+ const reporting = require('../lib/reporting');
3
4
 
4
5
  module.exports = [
5
6
  {
@@ -9,6 +10,11 @@ module.exports = [
9
10
  description: 'Smart Zigbee outdoor plug',
10
11
  extend: extend.switch(),
11
12
  ota: ota.ledvance,
13
+ configure: async (device, coordinatorEndpoint, logger) => {
14
+ const endpoint = device.getEndpoint(1);
15
+ await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff']);
16
+ await reporting.onOff(endpoint);
17
+ },
12
18
  },
13
19
  {
14
20
  zigbeeModel: ['Panel TW Z3'],
package/devices/lidl.js CHANGED
@@ -696,7 +696,7 @@ module.exports = [
696
696
  exposes.numeric('current_heating_setpoint_auto', ea.STATE_SET).withValueMin(0.5).withValueMax(29.5)
697
697
  .withValueStep(0.5).withUnit('°C').withDescription('Temperature setpoint automatic'),
698
698
  exposes.climate().withSetpoint('current_heating_setpoint', 0.5, 29.5, 0.5, ea.STATE_SET)
699
- .withLocalTemperature(ea.STATE).withLocalTemperatureCalibration(-30, 30, 0.1, ea.STATE_SET)
699
+ .withLocalTemperature(ea.STATE).withLocalTemperatureCalibration(-12.5, 5.5, 0.1, ea.STATE_SET)
700
700
  .withSystemMode(['off', 'heat', 'auto'], ea.STATE_SET)
701
701
  .withPreset(['schedule', 'manual', 'holiday', 'boost']),
702
702
  exposes.numeric('detectwindow_temperature', ea.STATE_SET).withUnit('°C').withDescription('Open window detection temperature')
@@ -283,7 +283,7 @@ module.exports = [
283
283
  exposes: [e.switch().withEndpoint('l1'), e.switch().withEndpoint('l2'), e.action(['on_s*', 'off_s*'])],
284
284
  configure: async (device, coordinatorEndpoint, logger) => {
285
285
  device.endpoints.forEach(async (ep) => {
286
- if (ep.outputClusters.includes(6)) {
286
+ if (ep.outputClusters.includes(6) || ep.ID <= 2) {
287
287
  await reporting.bind(ep, coordinatorEndpoint, ['genOnOff']);
288
288
  if (ep.ID <= 2) {
289
289
  await reporting.onOff(ep);
package/devices/tuya.js CHANGED
@@ -212,6 +212,7 @@ module.exports = [
212
212
  {modelID: 'TS0202', manufacturerName: '_TYZB01_zwvaj5wy'},
213
213
  {modelID: 'TS0202', manufacturerName: '_TZ3000_mcxw5ehu'},
214
214
  {modelID: 'TS0202', manufacturerName: '_TZ3000_msl6wxk9'},
215
+ {modelID: 'TS0202', manufacturerName: '_TYZB01_tv3wxhcz'},
215
216
  {modelID: 'TS0202', manufacturerName: '_TYZB01_hqbdru35'},
216
217
  {modelID: 'WHD02', manufacturerName: '_TZ3000_hktqahrq'}],
217
218
  model: 'TS0202',
@@ -536,6 +537,15 @@ module.exports = [
536
537
  toZigbee: [],
537
538
  exposes: [e.battery(), e.temperature(), e.humidity(), e.battery_voltage()],
538
539
  },
540
+ {
541
+ fingerprint: [{modelID: 'TS0201', manufacturerName: '_TZ3000_bguser20'}],
542
+ model: 'WSD500A',
543
+ vendor: 'TuYa',
544
+ description: 'Temperature & humidity sensor',
545
+ fromZigbee: [fz.battery, fz.temperature, fz.humidity],
546
+ toZigbee: [],
547
+ exposes: [e.battery(), e.temperature(), e.humidity(), e.battery_voltage()],
548
+ },
539
549
  {
540
550
  fingerprint: [{modelID: 'SM0201', manufacturerName: '_TYZB01_cbiezpds'}],
541
551
  model: 'SM0201',
@@ -804,6 +814,7 @@ module.exports = [
804
814
  {modelID: 'TS0601', manufacturerName: '_TZE200_fzo2pocs'},
805
815
  {modelID: 'TS0601', manufacturerName: '_TZE200_5sbebbzs'},
806
816
  {modelID: 'TS0601', manufacturerName: '_TZE200_zuz7f94z'},
817
+ {modelID: 'TS0601', manufakturerName: '_TZE200_iossyxra'},
807
818
  ],
808
819
  model: 'TS0601_cover',
809
820
  vendor: 'TuYa',
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zigbee-herdsman-converters",
3
- "version": "14.0.361",
3
+ "version": "14.0.362",
4
4
  "lockfileVersion": 1,
5
5
  "requires": true,
6
6
  "dependencies": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zigbee-herdsman-converters",
3
- "version": "14.0.361",
3
+ "version": "14.0.362",
4
4
  "description": "Collection of device converters to be used with zigbee-herdsman",
5
5
  "main": "index.js",
6
6
  "files": [