homebridge-melcloud-control 4.10.14-beta.9 → 4.10.15
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 +6 -0
- package/package.json +1 -1
- package/src/deviceatw.js +3 -1
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.
|
|
4
|
+
"version": "4.10.15",
|
|
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
|
@@ -1784,6 +1784,8 @@ class DeviceAtw extends EventEmitter {
|
|
|
1784
1784
|
const flowTemperatureHeatPump = deviceData.Device.FlowTemperature;
|
|
1785
1785
|
const returnTemperatureHeatPump = deviceData.Device.ReturnTemperature;
|
|
1786
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
|
+
const statusHeatPump = accountTypeMelCloud ? deviceData.Device.UnitStatus : [2, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0][operationMode]; //HEAT, COOL / STOP HOTWATER HEAT COOL
|
|
1788
|
+
|
|
1787
1789
|
//zone 1
|
|
1788
1790
|
const zone1Name = deviceData.Zone1Name ?? 'Zone 1';
|
|
1789
1791
|
const roomTemperatureZone1 = deviceData.Device.RoomTemperatureZone1;
|
|
@@ -2237,7 +2239,7 @@ class DeviceAtw extends EventEmitter {
|
|
|
2237
2239
|
let operationModeText = '';
|
|
2238
2240
|
switch (i) {
|
|
2239
2241
|
case caseHeatPump: //Heat Pump - HEAT, COOL, OFF
|
|
2240
|
-
this.emit('info', `${name}, Status: ${!power ? 'Off' : (inStandbyMode ? 'Idle' : HeatPump.UnitStatusMapEnumToString[
|
|
2242
|
+
this.emit('info', `${name}, Status: ${!power ? 'Off' : (inStandbyMode ? 'Idle' : HeatPump.UnitStatusMapEnumToString[statusHeatPump])}`);
|
|
2241
2243
|
this.emit('info', `${name}, Operation mode: ${HeatPump.OperationModeMapEnumToStringInfo[operationMode]}`);
|
|
2242
2244
|
if (supportsOutdoorTemperature) this.emit('info', `${name}, Outdoor temperature: ${outdoorTemperature}${obj.temperatureUnit}`);
|
|
2243
2245
|
this.emit('info', `${name}, Temperature display unit: ${obj.temperatureUnit}`);
|