homebridge-melcloud-control 4.0.3-beta.2 → 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/CHANGELOG.md +9 -0
- package/README.md +1 -1
- package/package.json +2 -1
- package/src/deviceata.js +1 -1
- package/src/deviceatw.js +2 -2
- package/src/deviceerv.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -21,6 +21,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
21
21
|
|
|
22
22
|
- Do not use Homebridge UI > v5.5.0 because of break config.json
|
|
23
23
|
|
|
24
|
+
## [4.0.3] - (08.11.2025)
|
|
25
|
+
|
|
26
|
+
## Changes
|
|
27
|
+
|
|
28
|
+
- fix ATW and ERV for old MELCloud
|
|
29
|
+
- bump dependencies
|
|
30
|
+
- readme updated
|
|
31
|
+
- cleanup
|
|
32
|
+
|
|
24
33
|
## [4.0.2] - (06.11.2025)
|
|
25
34
|
|
|
26
35
|
## Changes
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
<span align="center">
|
|
6
6
|
|
|
7
|
-
#
|
|
7
|
+
# MELCloud Control
|
|
8
8
|
|
|
9
9
|
[](https://github.com/homebridge/homebridge/wiki/Verified-Plugins)
|
|
10
10
|
[](https://www.npmjs.com/package/homebridge-melcloud-control)
|
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",
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
"homekit",
|
|
49
49
|
"mitsubishi",
|
|
50
50
|
"melcloud",
|
|
51
|
+
"melcloudhome",
|
|
51
52
|
"ecodan",
|
|
52
53
|
"zubadan",
|
|
53
54
|
"lossnay",
|
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
|
@@ -6,7 +6,7 @@ import { TemperatureDisplayUnits, HeatPump } from './constants.js';
|
|
|
6
6
|
let Accessory, Characteristic, Service, Categories, AccessoryUUID;
|
|
7
7
|
|
|
8
8
|
class DeviceAtw extends EventEmitter {
|
|
9
|
-
constructor(api, account, device,
|
|
9
|
+
constructor(api, account, device, devicesFile, defaultTempsFile, useFahrenheit) {
|
|
10
10
|
super();
|
|
11
11
|
|
|
12
12
|
Accessory = api.platformAccessory;
|
|
@@ -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
|
@@ -6,7 +6,7 @@ import { TemperatureDisplayUnits, Ventilation } from './constants.js';
|
|
|
6
6
|
let Accessory, Characteristic, Service, Categories, AccessoryUUID;
|
|
7
7
|
|
|
8
8
|
class DeviceErv extends EventEmitter {
|
|
9
|
-
constructor(api, account, device,
|
|
9
|
+
constructor(api, account, device, devicesFile, defaultTempsFile, useFahrenheit) {
|
|
10
10
|
super();
|
|
11
11
|
|
|
12
12
|
Accessory = api.platformAccessory;
|
|
@@ -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
|