zigbee-herdsman-converters 15.0.7 → 15.0.8

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.
@@ -518,6 +518,22 @@ module.exports = [
518
518
  toZigbee: [],
519
519
  exposes: [e.contact(), e.battery_low()],
520
520
  },
521
+ {
522
+ zigbeeModel: ['WISZB-137'],
523
+ model: 'WISZB-137',
524
+ vendor: 'Develco',
525
+ description: 'Vibration sensor',
526
+ fromZigbee: [fz.battery, fz.ias_vibration_alarm_1, fz.temperature],
527
+ toZigbee: [],
528
+ meta: {battery: {voltageToPercentage: '3V_2100'}},
529
+ exposes: [e.battery_low(), e.battery(), e.temperature(), e.vibration(), e.tamper()],
530
+ configure: async (device, coordinatorEndpoint) => {
531
+ const endpoint38 = device.getEndpoint(38);
532
+ await reporting.bind(endpoint38, coordinatorEndpoint, ['msTemperatureMeasurement', 'genPowerCfg']);
533
+ await reporting.temperature(endpoint38);
534
+ await reporting.batteryVoltage(endpoint38);
535
+ },
536
+ },
521
537
  {
522
538
  zigbeeModel: ['MOSZB-130'],
523
539
  model: 'MOSZB-130',
@@ -22,7 +22,8 @@ module.exports = [
22
22
  },
23
23
  {
24
24
  zigbeeModel: ['SV01-410-MP-1.0', 'SV01-410-MP-1.1', 'SV01-410-MP-1.4', 'SV01-410-MP-1.5', 'SV01-412-MP-1.0', 'SV01-612-MP-1.1',
25
- 'SV01-412-MP-1.1', 'SV01-412-MP-1.4', 'SV01-610-MP-1.0', 'SV01-610-MP-1.1', 'SV01-612-MP-1.0', 'SV01-610-MP-1.4'],
25
+ 'SV01-412-MP-1.1', 'SV01-412-MP-1.4', 'SV01-610-MP-1.0', 'SV01-610-MP-1.1', 'SV01-612-MP-1.0', 'SV01-612-MP-1.2',
26
+ 'SV01-610-MP-1.4'],
26
27
  model: 'SV01',
27
28
  vendor: 'Keen Home',
28
29
  description: 'Smart vent',
package/devices/moes.js CHANGED
@@ -290,9 +290,9 @@ module.exports = [
290
290
  e.valve_state(), e.position(), e.window_detection(),
291
291
  exposes.binary('window', ea.STATE, 'OPEN', 'CLOSED').withDescription('Window status closed or open '),
292
292
  exposes.climate()
293
- .withLocalTemperature(ea.STATE).withSetpoint('current_heating_setpoint', 5, 35, 1, ea.STATE_SET)
293
+ .withLocalTemperature(ea.STATE).withSetpoint('current_heating_setpoint', 5, 45, 0.5, ea.STATE_SET)
294
294
  .withLocalTemperatureCalibration(-9, 9, 1, ea.STATE_SET)
295
- .withSystemMode(['heat'], ea.STATE_SET)
295
+ .withSystemMode(['off', 'heat'], ea.STATE_SET)
296
296
  .withRunningState(['idle', 'heat'], ea.STATE)
297
297
  .withPreset(['programming', 'manual', 'temporary_manual', 'holiday'],
298
298
  'MANUAL MODE ☝ - In this mode, the device executes manual temperature setting. '+
package/devices/tuya.js CHANGED
@@ -1255,7 +1255,7 @@ module.exports = [
1255
1255
  meta: {
1256
1256
  tuyaDatapoints: [
1257
1257
  [3, 'humidity', tuya.valueConverter.raw],
1258
- [5, 'temperature', tuya.valueConverter.divideBy10],
1258
+ [5, 'temperature', tuya.valueConverter.raw],
1259
1259
  [9, 'temperature_unit', tuya.valueConverter.temperatureUnit],
1260
1260
  [14, 'battery_state', tuya.valueConverter.batteryState],
1261
1261
  [15, 'battery', tuya.valueConverter.raw],
@@ -1764,7 +1764,7 @@ module.exports = [
1764
1764
  */
1765
1765
  },
1766
1766
  {
1767
- fingerprint: tuya.fingerprint('TS004F', ['_TZ3000_xabckq1v', '_TZ3000_czuyt8lz', '_TZ3000_ja5osu5g']),
1767
+ fingerprint: tuya.fingerprint('TS004F', ['_TZ3000_xabckq1v', '_TZ3000_czuyt8lz']),
1768
1768
  model: 'TS004F',
1769
1769
  vendor: 'TuYa',
1770
1770
  description: 'Wireless switch with 4 buttons',
@@ -3514,7 +3514,8 @@ module.exports = [
3514
3514
  ],
3515
3515
  },
3516
3516
  {
3517
- fingerprint: [{modelID: 'TS004F', manufacturerName: '_TZ3000_kjfzuycl'}],
3517
+ fingerprint: [{modelID: 'TS004F', manufacturerName: '_TZ3000_kjfzuycl'},
3518
+ {modelID: 'TS004F', manufacturerName: '_TZ3000_ja5osu5g'}],
3518
3519
  model: 'ERS-10TZBVB-AA',
3519
3520
  vendor: 'TuYa',
3520
3521
  description: 'Smart button',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zigbee-herdsman-converters",
3
- "version": "15.0.7",
3
+ "version": "15.0.8",
4
4
  "description": "Collection of device converters to be used with zigbee-herdsman",
5
5
  "main": "index.js",
6
6
  "files": [