homebridge-tasmota-control 1.4.0-beta.5 → 1.4.0-beta.6

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "Tasmota Control",
3
3
  "name": "homebridge-tasmota-control",
4
- "version": "1.4.0-beta.5",
4
+ "version": "1.4.0-beta.6",
5
5
  "description": "Homebridge plugin to control Tasmota flashed devices.",
6
6
  "license": "MIT",
7
7
  "author": "grzegorz914",
@@ -2271,7 +2271,7 @@ class TasmotaDevice extends EventEmitter {
2271
2271
  })
2272
2272
  .onSet(async (value) => {
2273
2273
  try {
2274
- const speed = `${ApiCommands.RotationSpeed}${value}`;
2274
+ const speed = `${ApiCommands.FanSpeed}${value}`;
2275
2275
  await this.axiosInstance(speed);
2276
2276
  const logInfo = this.disableLogInfo ? false : this.emit('info', `${friendlyName}, set speed: ${value}`);
2277
2277
  } catch (error) {