zigbee-herdsman-converters 19.46.0 → 19.47.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ## [19.47.1](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v19.47.0...v19.47.1) (2024-06-01)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **ignore:** Fix TS0001_switch_1_gang whitelabels ([0f3b6f2](https://github.com/Koenkk/zigbee-herdsman-converters/commit/0f3b6f2cb5d0e6e147c6f9ab0591267d8838d881))
9
+ * **ignore:** Update zh to 0.49.2 ([29ed735](https://github.com/Koenkk/zigbee-herdsman-converters/commit/29ed735a39b4b01606aa1b918a8646e68d631684))
10
+
11
+ ## [19.47.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v19.46.0...v19.47.0) (2024-05-31)
12
+
13
+
14
+ ### Features
15
+
16
+ * Support new features for TuYa ZG-225Z and ZG-204ZM ([#7553](https://github.com/Koenkk/zigbee-herdsman-converters/issues/7553)) ([058eac7](https://github.com/Koenkk/zigbee-herdsman-converters/commit/058eac74b03e1833881233b86d0dfa48dde27dc5))
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * **detect:** Detect `SV01-612-EP-1.4` as Keen Home SV01 ([#7581](https://github.com/Koenkk/zigbee-herdsman-converters/issues/7581)) ([3f27d31](https://github.com/Koenkk/zigbee-herdsman-converters/commit/3f27d317c451e1e1d5b46312277d09025909cefa))
22
+ * Enforce no floating promises with eslint ([#7583](https://github.com/Koenkk/zigbee-herdsman-converters/issues/7583)) ([ed0704b](https://github.com/Koenkk/zigbee-herdsman-converters/commit/ed0704b42b3dee3e477dfd1194a100be83bcbd7f))
23
+ * Expose message to TuYa valueConverters https://github.com/Koenkk/zigbee-herdsman-converters/pull/7271 ([2c3667b](https://github.com/Koenkk/zigbee-herdsman-converters/commit/2c3667bc328e2522e3941274391c9ceee6d00e34))
24
+
3
25
  ## [19.46.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v19.45.0...v19.46.0) (2024-05-30)
4
26
 
5
27
 
@@ -1206,10 +1206,10 @@ const converters2 = {
1206
1206
  const transition = meta.message.transition ?? 15;
1207
1207
  utils.assertNumber(transition, 'transition');
1208
1208
  const speed = Math.min(255, Math.max(1, Math.round(255 / transition)));
1209
- converters2.light_hue_saturation_move.convertSet(entity, 'hue_move', speed, meta);
1209
+ await converters2.light_hue_saturation_move.convertSet(entity, 'hue_move', speed, meta);
1210
1210
  }
1211
1211
  else if (value === 'stop_colorloop') {
1212
- converters2.light_hue_saturation_move.convertSet(entity, 'hue_move', 'stop', meta);
1212
+ await converters2.light_hue_saturation_move.convertSet(entity, 'hue_move', 'stop', meta);
1213
1213
  }
1214
1214
  else {
1215
1215
  const payload = { effectid: utils.getFromLookup(value, lookup), effectvariant: 0 };
@@ -4065,7 +4065,7 @@ const converters2 = {
4065
4065
  convertSet: async (entity, key, value, meta) => {
4066
4066
  utils.assertEndpoint(entity);
4067
4067
  const keypadLockout = utils.getKey(constants.keypadLockoutMode, value, value, Number);
4068
- entity.write('hvacUserInterfaceCfg', { keypadLockout });
4068
+ await entity.write('hvacUserInterfaceCfg', { keypadLockout });
4069
4069
  entity.saveClusterAttributeKeyValue('hvacUserInterfaceCfg', { keypadLockout });
4070
4070
  return { state: { keypad_lockout: value } };
4071
4071
  },
@@ -4146,7 +4146,7 @@ const converters2 = {
4146
4146
  key: ['local_temperature_calibration'],
4147
4147
  convertSet: async (entity, key, value, meta) => {
4148
4148
  utils.assertNumber(value);
4149
- entity.write('hvacThermostat', { localTemperatureCalibration: Math.round(value * 10) }, { srcEndpoint: 11, disableDefaultResponse: true });
4149
+ await entity.write('hvacThermostat', { localTemperatureCalibration: Math.round(value * 10) }, { srcEndpoint: 11, disableDefaultResponse: true });
4150
4150
  return { state: { local_temperature_calibration: value } };
4151
4151
  },
4152
4152
  },