homebridge-melcloud-control 4.0.3 → 4.0.4-beta.0
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": "4.0.
|
|
4
|
+
"version": "4.0.4-beta.0",
|
|
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
|
@@ -257,7 +257,7 @@ class DeviceAta extends EventEmitter {
|
|
|
257
257
|
if (this.logDebug) this.emit('debug', `Prepare accessory`);
|
|
258
258
|
const accessoryName = deviceName;
|
|
259
259
|
const accessoryUUID = AccessoryUUID.generate(accountName + deviceId.toString());
|
|
260
|
-
const accessoryCategory =
|
|
260
|
+
const accessoryCategory = Categories.AIR_CONDITIONER;
|
|
261
261
|
const accessory = new Accessory(accessoryName, accessoryUUID, accessoryCategory);
|
|
262
262
|
|
|
263
263
|
//information service
|
package/src/deviceatw.js
CHANGED
|
@@ -278,7 +278,7 @@ class DeviceAtw extends EventEmitter {
|
|
|
278
278
|
if (this.logDebug) this.emit('debug', `Prepare accessory`);
|
|
279
279
|
const accessoryName = deviceName;
|
|
280
280
|
const accessoryUUID = AccessoryUUID.generate(accountName + deviceId.toString());
|
|
281
|
-
const accessoryCategory =
|
|
281
|
+
const accessoryCategory = Categories.AIR_HEATER;
|
|
282
282
|
const accessory = new Accessory(accessoryName, accessoryUUID, accessoryCategory);
|
|
283
283
|
|
|
284
284
|
//information service
|
package/src/deviceerv.js
CHANGED
|
@@ -246,7 +246,7 @@ class DeviceErv extends EventEmitter {
|
|
|
246
246
|
if (this.logDebug) this.emit('debug', `Prepare accessory`);
|
|
247
247
|
const accessoryName = deviceName;
|
|
248
248
|
const accessoryUUID = AccessoryUUID.generate(accountName + deviceId.toString());
|
|
249
|
-
const accessoryCategory =
|
|
249
|
+
const accessoryCategory = Categories.AIR_PURIFIER;
|
|
250
250
|
const accessory = new Accessory(accessoryName, accessoryUUID, accessoryCategory);
|
|
251
251
|
|
|
252
252
|
//information service
|