homebridge-melcloud-control 4.3.2-beta.4 → 4.3.2-beta.5
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 +1 -1
- package/src/deviceatw.js +4 -4
- package/src/deviceerv.js +1 -1
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.2-beta.
|
|
4
|
+
"version": "4.3.2-beta.5",
|
|
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
|
@@ -1855,7 +1855,7 @@ class DeviceAta extends EventEmitter {
|
|
|
1855
1855
|
|
|
1856
1856
|
//log current state
|
|
1857
1857
|
if (this.logInfo) {
|
|
1858
|
-
this.emit('info', `---------------- ${this.deviceName}
|
|
1858
|
+
this.emit('info', `---------------- Air Conditioner: ${this.deviceName} ----------------`);
|
|
1859
1859
|
this.emit('info', `Power: ${power ? 'On' : 'Off'}`);
|
|
1860
1860
|
this.emit('info', `Target operation mode: ${AirConditioner.OperationModeMapEnumToString[operationMode]}`);
|
|
1861
1861
|
this.emit('info', `Current operation mode: ${this.displayType === 1 ? AirConditioner.CurrentOperationModeHeatherCoolerMapEnumToString[obj.currentOperationMode] : AirConditioner.CurrentOperationModeThermostatMapEnumToString[obj.currentOperationMode]}`);
|
package/src/deviceatw.js
CHANGED
|
@@ -2001,7 +2001,7 @@ class DeviceAtw extends EventEmitter {
|
|
|
2001
2001
|
let operationModeText = '';
|
|
2002
2002
|
switch (i) {
|
|
2003
2003
|
case caseHeatPump: //Heat Pump - HEAT, COOL, OFF
|
|
2004
|
-
this.emit('info', `---------------- ${heatPumpName}
|
|
2004
|
+
this.emit('info', `---------------- Heat Pump: ${heatPumpName} ----------------`);
|
|
2005
2005
|
this.emit('info', `Power: ${power ? 'On' : 'Off'}`)
|
|
2006
2006
|
this.emit('info', `Operation mode: ${HeatPump.SystemMapEnumToString[unitStatus]}`);
|
|
2007
2007
|
this.emit('info', `Outdoor temperature: ${roomTemperature}${obj.temperatureUnit}`);
|
|
@@ -2010,7 +2010,7 @@ class DeviceAtw extends EventEmitter {
|
|
|
2010
2010
|
if (this.accountType === 'melcloudhome') this.emit('info', `Signal strength: ${deviceData.Rssi}dBm`);
|
|
2011
2011
|
break;
|
|
2012
2012
|
case caseZone1: //Zone 1 - HEAT THERMOSTAT, HEAT FLOW, HEAT CURVE, COOL THERMOSTAT, COOL FLOW, FLOOR DRY UP
|
|
2013
|
-
this.emit('info', `---------------- ${zone1Name}
|
|
2013
|
+
this.emit('info', `---------------- Heat Pump: ${zone1Name} ----------------`);
|
|
2014
2014
|
operationModeText = idleZone1 ? HeatPump.ZoneOperationMapEnumToString[6] : HeatPump.ZoneOperationMapEnumToString[operationModeZone1];
|
|
2015
2015
|
this.emit('info', `Operation mode: ${operationModeText}`);
|
|
2016
2016
|
this.emit('info', `Temperature: ${roomTemperature}${obj.temperatureUnit}`);
|
|
@@ -2019,7 +2019,7 @@ class DeviceAtw extends EventEmitter {
|
|
|
2019
2019
|
this.emit('info', `Lock physical controls: ${lockPhysicalControl ? 'Locked' : 'Unlocked'}`);
|
|
2020
2020
|
break;
|
|
2021
2021
|
case caseHotWater: //Hot Water - AUTO, HEAT NOW
|
|
2022
|
-
this.emit('info', `---------------- ${hotWaterName}
|
|
2022
|
+
this.emit('info', `---------------- Heat Pump: ${hotWaterName} ----------------`);
|
|
2023
2023
|
operationModeText = operationMode === 1 ? HeatPump.ForceDhwMapEnumToString[1] : HeatPump.ForceDhwMapEnumToString[forcedHotWaterMode ? 1 : 0];
|
|
2024
2024
|
this.emit('info', `Operation mode: ${operationModeText}`);
|
|
2025
2025
|
this.emit('info', `Temperature: ${roomTemperature}${obj.temperatureUnit}`);
|
|
@@ -2028,7 +2028,7 @@ class DeviceAtw extends EventEmitter {
|
|
|
2028
2028
|
this.emit('info', `Lock physical controls: ${lockPhysicalControl ? 'Locked' : 'Unlocked'}`);
|
|
2029
2029
|
break;
|
|
2030
2030
|
case caseZone2: //Zone 2 - HEAT THERMOSTAT, HEAT FLOW, HEAT CURVE, COOL THERMOSTAT, COOL FLOW, FLOOR DRY UP
|
|
2031
|
-
this.emit('info', `---------------- ${zone2Name}
|
|
2031
|
+
this.emit('info', `---------------- Heat Pump: ${zone2Name} ----------------`);
|
|
2032
2032
|
operationModeText = idleZone2 ? HeatPump.ZoneOperationMapEnumToString[6] : HeatPump.ZoneOperationMapEnumToString[operationModeZone2];
|
|
2033
2033
|
this.emit('info', `Operation mode: ${operationModeText}`);
|
|
2034
2034
|
this.emit('info', `Temperature: ${roomTemperature}${obj.temperatureUnit}`);
|
package/src/deviceerv.js
CHANGED
|
@@ -1556,7 +1556,7 @@ class DeviceErv extends EventEmitter {
|
|
|
1556
1556
|
|
|
1557
1557
|
//log current state
|
|
1558
1558
|
if (this.logInfo) {
|
|
1559
|
-
this.emit('info', `---------------- ${this.deviceName}
|
|
1559
|
+
this.emit('info', `---------------- Ventilation: ${this.deviceName} ----------------`);
|
|
1560
1560
|
this.emit('info', `Power: ${power ? 'On' : 'Off'}`);
|
|
1561
1561
|
this.emit('info', `Target ventilation mode: ${Ventilation.OperationModeMapEnumToString[ventilationMode]}`);
|
|
1562
1562
|
this.emit('info', `Current ventilation mode: ${Ventilation.OperationModeMapEnumToString[actualVentilationMode]}`);
|