homebridge-melcloud-control 4.7.9-beta.49 → 4.7.9-beta.50
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 +1 -1
- package/src/melcloudata.js +0 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "MELCloud Control",
|
|
3
3
|
"name": "homebridge-melcloud-control",
|
|
4
|
-
"version": "4.7.9-beta.
|
|
4
|
+
"version": "4.7.9-beta.50",
|
|
5
5
|
"description": "Homebridge plugin to control Mitsubishi Air Conditioner, Heat Pump and Energy Recovery Ventilation.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "grzegorz914",
|
package/src/melcloudata.js
CHANGED
|
@@ -314,10 +314,6 @@ class MelCloudAta extends EventEmitter {
|
|
|
314
314
|
//send payload
|
|
315
315
|
if (!this.logDebug) this.emit('debug', `Send data: ${JSON.stringify(payload, null, 2)}`);
|
|
316
316
|
await this.client(path, { method: method, data: payload });
|
|
317
|
-
|
|
318
|
-
setTimeout(() => {
|
|
319
|
-
this.updateState('request', deviceData);
|
|
320
|
-
}, 500);
|
|
321
317
|
return true;
|
|
322
318
|
default:
|
|
323
319
|
if (this.logWarn) this.emit('warn', `Received unknwn account type: ${accountType}`);
|