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