homebridge-melcloud-control 4.3.5-beta.7 → 4.3.5-beta.9

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": "MELCloud Control",
3
3
  "name": "homebridge-melcloud-control",
4
- "version": "4.3.5-beta.7",
4
+ "version": "4.3.5-beta.9",
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/deviceata.js CHANGED
@@ -1878,7 +1878,7 @@ class DeviceAta extends EventEmitter {
1878
1878
  if (this.restFul.enable || this.mqtt.enable) await this.externalIntegrations();
1879
1879
 
1880
1880
  //check state
1881
- await this.melCloudAta.checkState();
1881
+ await this.melCloudAta.updateState();
1882
1882
 
1883
1883
  //prepare accessory
1884
1884
  const accessory = await this.prepareAccessory();
package/src/deviceatw.js CHANGED
@@ -2307,7 +2307,7 @@ class DeviceAtw extends EventEmitter {
2307
2307
  if (this.restFul.enable || this.mqtt.enable) await this.externalIntegrations();
2308
2308
 
2309
2309
  //check state
2310
- await this.melCloudAtw.checkState();
2310
+ await this.melCloudAtw.updateState();
2311
2311
 
2312
2312
  //prepare accessory
2313
2313
  const accessory = await this.prepareAccessory();
package/src/deviceerv.js CHANGED
@@ -1581,7 +1581,7 @@ class DeviceErv extends EventEmitter {
1581
1581
  if (this.restFul.enable || this.mqtt.enable) await this.externalIntegrations();
1582
1582
 
1583
1583
  //check state
1584
- await this.melCloudErv.checkState();
1584
+ await this.melCloudErv.updateState();
1585
1585
 
1586
1586
  //prepare accessory
1587
1587
  const accessory = await this.prepareAccessory();