homebridge-melcloud-control 3.10.0-beta.31 → 3.10.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/deviceata.js +1 -1
- package/src/deviceatw.js +1 -1
- 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": "3.10.0-beta.
|
|
4
|
+
"version": "3.10.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/deviceata.js
CHANGED
|
@@ -918,7 +918,7 @@ class DeviceAta extends EventEmitter {
|
|
|
918
918
|
async start() {
|
|
919
919
|
try {
|
|
920
920
|
//melcloud device
|
|
921
|
-
this.melCloudAta = new MelCloudAta(this.device,
|
|
921
|
+
this.melCloudAta = new MelCloudAta(this.device, this.contextKey, this.devicesFile)
|
|
922
922
|
.on('deviceInfo', (manufacturer, modelIndoor, modelOutdoor, serialNumber, firmwareAppVersion) => {
|
|
923
923
|
if (this.logDeviceInfo && this.displayDeviceInfo) {
|
|
924
924
|
this.emit('devInfo', `---- ${this.deviceTypeText}: ${this.deviceName} ----`);
|
package/src/deviceatw.js
CHANGED
|
@@ -1284,7 +1284,7 @@ class DeviceAtw extends EventEmitter {
|
|
|
1284
1284
|
async start() {
|
|
1285
1285
|
try {
|
|
1286
1286
|
//melcloud device
|
|
1287
|
-
this.melCloudAtw = new MelCloudAtw(this.device,
|
|
1287
|
+
this.melCloudAtw = new MelCloudAtw(this.device, this.contextKey, this.devicesFile)
|
|
1288
1288
|
.on('deviceInfo', (manufacturer, modelIndoor, modelOutdoor, serialNumber, firmwareAppVersion, hasHotWaterTank, hasZone2) => {
|
|
1289
1289
|
if (this.logDeviceInfo && this.displayDeviceInfo) {
|
|
1290
1290
|
this.emit('devInfo', `---- ${this.deviceTypeText}: ${this.deviceName} ----`);
|
package/src/deviceerv.js
CHANGED
|
@@ -839,7 +839,7 @@ class DeviceErv extends EventEmitter {
|
|
|
839
839
|
async start() {
|
|
840
840
|
try {
|
|
841
841
|
//melcloud device
|
|
842
|
-
this.melCloudErv = new MelCloudErv(this.device,
|
|
842
|
+
this.melCloudErv = new MelCloudErv(this.device, this.contextKey, this.devicesFile)
|
|
843
843
|
.on('deviceInfo', (manufacturer, modelIndoor, modelOutdoor, serialNumber, firmwareAppVersion) => {
|
|
844
844
|
if (this.logDeviceInfo && this.displayDeviceInfo) {
|
|
845
845
|
this.emit('devInfo', `---- ${this.deviceTypeText}: ${this.deviceName} ----`);
|