zigbee-herdsman-converters 14.0.663 → 14.0.664

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/namron.js CHANGED
@@ -5,6 +5,7 @@ const tz = require('../converters/toZigbee');
5
5
  const constants = require('../lib/constants');
6
6
  const reporting = require('../lib/reporting');
7
7
  const globalStore = require('../lib/store');
8
+ const utils = require('../lib/utils');
8
9
  const extend = require('../lib/extend');
9
10
  const ea = exposes.access;
10
11
  const e = exposes.presets;
@@ -34,7 +35,7 @@ const fzLocal = {
34
35
  result.window_open_check = lookup[data[0x1009]];
35
36
  }
36
37
  if (data.hasOwnProperty(0x100A)) { // Hysterersis
37
- result.hysterersis = data[0x100A];
38
+ result.hysterersis = utils.precisionRound(data[0x100A], 2) / 10;
38
39
  }
39
40
  return result;
40
41
  },
@@ -64,7 +65,7 @@ const tzLocal = {
64
65
  const payload = {0x1009: {value: lookup[value], type: herdsman.Zcl.DataType.enum8}};
65
66
  await entity.write('hvacThermostat', payload, sunricherManufacturer);
66
67
  } else if (key==='hysterersis') {
67
- const payload = {0x100A: {value: value, type: 0x20}};
68
+ const payload = {0x100A: {value: value * 10, type: 0x20}};
68
69
  await entity.write('hvacThermostat', payload, sunricherManufacturer);
69
70
  }
70
71
  },
@@ -13,6 +13,17 @@ module.exports = [
13
13
  await reporting.bind(endpoint, coordinatorEndpoint, ['genBasic', 'genIdentify', 'genOnOff']);
14
14
  },
15
15
  },
16
+ {
17
+ zigbeeModel: ['SM308-S'],
18
+ model: 'SM308-S',
19
+ vendor: 'Samotech',
20
+ description: 'Zigbee in wall smart switch',
21
+ extend: extend.switch(),
22
+ configure: async (device, coordinatorEndpoint, logger) => {
23
+ const endpoint = device.getEndpoint(1);
24
+ await reporting.bind(endpoint, coordinatorEndpoint, ['genBasic', 'genIdentify', 'genOnOff']);
25
+ },
26
+ },
16
27
  {
17
28
  zigbeeModel: ['SM309-S'],
18
29
  model: 'SM309-S',
package/devices/sonoff.js CHANGED
@@ -60,6 +60,26 @@ module.exports = [
60
60
  device.save();
61
61
  },
62
62
  },
63
+ {
64
+ zigbeeModel: ['ZBMINIL2'],
65
+ model: 'ZBMINIL2',
66
+ vendor: 'SONOFF',
67
+ description: 'Zigbee smart switch (no neutral)',
68
+ ota: ota.zigbeeOTA,
69
+ extend: extend.switch(),
70
+ toZigbee: extend.switch().toZigbee.concat([tz.power_on_behavior]),
71
+ fromZigbee: extend.switch().fromZigbee.concat([fz.power_on_behavior]),
72
+ exposes: extend.switch().exposes.concat([e.power_on_behavior()]),
73
+ configure: async (device, coordinatorEndpoint, logger) => {
74
+ // Unbind genPollCtrl to prevent device from sending checkin message.
75
+ // Zigbee-herdsmans responds to the checkin message which causes the device
76
+ // to poll slower.
77
+ // https://github.com/Koenkk/zigbee2mqtt/issues/11676
78
+ await device.getEndpoint(1).unbind('genPollCtrl', coordinatorEndpoint);
79
+ device.powerSource = 'Mains (single phase)';
80
+ device.save();
81
+ },
82
+ },
63
83
  {
64
84
  zigbeeModel: ['01MINIZB'],
65
85
  model: 'ZBMINI',
package/devices/tuya.js CHANGED
@@ -3364,7 +3364,7 @@ module.exports = [
3364
3364
  {modelID: 'TS0601', manufacturerName: '_TZE200_wukb7rhc'},
3365
3365
  {modelID: 'TS0601', manufacturerName: '_TZE204_ztc6ggyl'},
3366
3366
  {modelID: 'TS0601', manufacturerName: '_TZE200_ztc6ggyl'}],
3367
- model: 'TS0601_smart_human_presense_sensor',
3367
+ model: 'TS0601_smart_human_presence_sensor',
3368
3368
  vendor: 'TuYa',
3369
3369
  description: 'Smart Human presence sensor',
3370
3370
  fromZigbee: [fz.tuya_smart_human_presense_sensor],
package/devices/yookee.js CHANGED
@@ -12,6 +12,7 @@ module.exports = [
12
12
  description: 'Smart blind controller',
13
13
  fromZigbee: [fz.D10110_cover_position_tilt, fz.battery],
14
14
  toZigbee: [tz.cover_state, tz.cover_position_tilt],
15
+ meta: {coverInverted: true},
15
16
  configure: async (device, coordinatorEndpoint, logger) => {
16
17
  const endpoint = device.getEndpoint(1);
17
18
  await reporting.bind(endpoint, coordinatorEndpoint, ['genPowerCfg', 'closuresWindowCovering']);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zigbee-herdsman-converters",
3
- "version": "14.0.663",
3
+ "version": "14.0.664",
4
4
  "description": "Collection of device converters to be used with zigbee-herdsman",
5
5
  "main": "index.js",
6
6
  "files": [