homebridge-melcloud-control 4.10.14-beta.8 → 4.10.14

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
@@ -24,6 +24,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
24
24
  - For plugin < v4.6.0 use Homebridge UI <= v5.5.0
25
25
  - For plugin >= v4.6.0 use Homebridge UI >= v5.13.0
26
26
 
27
+ ## [4.10.14] - (17.06.2026)
28
+
29
+ ### Changes
30
+
31
+ - fix: [#251](https://github.com/grzegorz914/homebridge-melcloud-control/issues/251)
32
+
27
33
  ## [4.10.13] - (04.06.2026)
28
34
 
29
35
  ### Fixed
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "MELCloud Control",
3
3
  "name": "homebridge-melcloud-control",
4
- "version": "4.10.14-beta.8",
4
+ "version": "4.10.14",
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/deviceatw.js CHANGED
@@ -1783,8 +1783,8 @@ class DeviceAtw extends EventEmitter {
1783
1783
  const roomTemperatureHeatPump = accountTypeMelCloud && supportsOutdoorTemperature ? outdoorTemperature : deviceData.Device.RoomTemperatureZone1; // fallback to room temp zone 1
1784
1784
  const flowTemperatureHeatPump = deviceData.Device.FlowTemperature;
1785
1785
  const returnTemperatureHeatPump = deviceData.Device.ReturnTemperature;
1786
- const operationModeHeatPump = accountTypeMelCloud ? deviceData.Device.UnitStatus : [1, 0, 0, 1][operationMode]; //HEAT, COOL / STOP UNKNOWN HEAT COOL
1787
-
1786
+ const operationModeHeatPump = accountTypeMelCloud ? deviceData.Device.UnitStatus : [1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0][operationMode]; //HEAT, COOL / STOP HOTWATER HEAT COOL
1787
+
1788
1788
  //zone 1
1789
1789
  const zone1Name = deviceData.Zone1Name ?? 'Zone 1';
1790
1790
  const roomTemperatureZone1 = deviceData.Device.RoomTemperatureZone1;