homebridge-melcloud-control 3.8.0-beta.31 → 3.8.0-beta.32
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/deviceatw.js +1 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "MELCloud Control",
|
|
3
3
|
"name": "homebridge-melcloud-control",
|
|
4
|
-
"version": "3.8.0-beta.
|
|
4
|
+
"version": "3.8.0-beta.32",
|
|
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
|
@@ -1333,6 +1333,7 @@ class DeviceAtw extends EventEmitter {
|
|
|
1333
1333
|
this.emit('devInfo', `Firmware: ${firmwareAppVersion}`);
|
|
1334
1334
|
this.emit('devInfo', `Manufacturer: ${manufacturer}`);
|
|
1335
1335
|
this.emit('devInfo', '----------------------------------');
|
|
1336
|
+
this.emit('devInfo', `Zone 1: Yes`);
|
|
1336
1337
|
this.emit('devInfo', `Hot Water Tank: ${hasHotWaterTank ? 'Yes' : 'No'}`);
|
|
1337
1338
|
this.emit('devInfo', `Zone 2: ${hasZone2 ? 'Yes' : 'No'}`);
|
|
1338
1339
|
this.emit('devInfo', '----------------------------------');
|