homebridge-melcloud-control 4.1.2-beta.5 → 4.1.2-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 +1 -1
- package/src/deviceata.js +6 -6
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "MELCloud Control",
|
|
3
3
|
"name": "homebridge-melcloud-control",
|
|
4
|
-
"version": "4.1.2-beta.
|
|
4
|
+
"version": "4.1.2-beta.6",
|
|
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
|
@@ -1035,12 +1035,12 @@ class DeviceAta extends EventEmitter {
|
|
|
1035
1035
|
const presetsOnServer = deviceData[presetsKey] ?? [];
|
|
1036
1036
|
|
|
1037
1037
|
//protection
|
|
1038
|
-
const frostProtectionEnabled = deviceData.FrostProtection?.
|
|
1039
|
-
const frostProtectionActive = deviceData.FrostProtection?.
|
|
1040
|
-
const overheatProtectionEnabled = deviceData.OverheatProtection?.
|
|
1041
|
-
const overheatProtectionActive = deviceData.OverheatProtection?.
|
|
1042
|
-
const holidayModeEnabled = deviceData.HolidayMode?.
|
|
1043
|
-
const holidayModeActive = deviceData.HolidayMode?.
|
|
1038
|
+
const frostProtectionEnabled = deviceData.FrostProtection?.Enabled;
|
|
1039
|
+
const frostProtectionActive = deviceData.FrostProtection?.Active;
|
|
1040
|
+
const overheatProtectionEnabled = deviceData.OverheatProtection?.Enabled;
|
|
1041
|
+
const overheatProtectionActive = deviceData.OverheatProtection?.Active;
|
|
1042
|
+
const holidayModeEnabled = deviceData.HolidayMode?.Enabled;
|
|
1043
|
+
const holidayModeActive = deviceData.HolidayMode?.Active;
|
|
1044
1044
|
const scheduleEnabled = deviceData.ScheduleEnabled;
|
|
1045
1045
|
|
|
1046
1046
|
//device control
|