homebridge-melcloud-control 4.0.0-beta.55 → 4.0.0-beta.550
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 -4
- package/README.md +10 -12
- package/config.schema.json +294 -336
- package/homebridge-ui/public/index.html +110 -64
- package/homebridge-ui/server.js +7 -9
- package/index.js +45 -28
- package/package.json +5 -4
- package/src/constants.js +15 -22
- package/src/deviceata.js +257 -244
- package/src/deviceatw.js +149 -133
- package/src/deviceerv.js +90 -78
- package/src/functions.js +155 -5
- package/src/impulsegenerator.js +2 -2
- package/src/melcloud.js +347 -198
- package/src/melcloudata.js +151 -309
- package/src/melcloudatw.js +151 -343
- package/src/melclouderv.js +150 -274
- package/src/restful.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -12,17 +12,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
12
12
|
- v1 After update to v1 and above from v0 the devices need to be added to the Home app again and the old unresponsive remove!!! This devices will be removed from all automations and scenes!!!
|
|
13
13
|
- v2 After update to v2 from v1 only RESTFull and MQTT config settings need to be updated in config.
|
|
14
14
|
- v2.4 and above require upcomming homebridge v2
|
|
15
|
-
- v3 After update to v3 the plugin need to be configured using
|
|
16
|
-
- do not configure it manually, always using
|
|
15
|
+
- v3 After update to v3 the plugin need to be configured using Homebridge UI.
|
|
16
|
+
- do not configure it manually, always using Homebridge UI
|
|
17
17
|
- required Homebridge v2.0.0 and above
|
|
18
|
+
- v4 Added support for MELCloud Home.
|
|
18
19
|
|
|
19
|
-
##
|
|
20
|
+
## Warning
|
|
21
|
+
|
|
22
|
+
- Do not use Homebridge UI > v5.5.0 because of break config.json
|
|
23
|
+
|
|
24
|
+
## [4.0.0] - (xx.11.2025)
|
|
20
25
|
|
|
21
26
|
## Changes
|
|
22
27
|
|
|
23
28
|
- added support for MELCloud Home [#215](https://github.com/grzegorz914/homebridge-melcloud-control/issues/215)
|
|
24
|
-
- redme updated
|
|
25
29
|
- config schema updated
|
|
30
|
+
- redme updated
|
|
26
31
|
- cleanup
|
|
27
32
|
|
|
28
33
|
## [3.9.5] - (02.09.2025)
|
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
[](https://github.com/grzegorz914/homebridge-melcloud-control/pulls)
|
|
14
14
|
[](https://github.com/grzegorz914/homebridge-melcloud-control/issues)
|
|
15
15
|
|
|
16
|
-
Homebridge plugin for Air Conditioner, Heat Pump and Energy Recovery Ventilation Lossnay, manufactured by Mistsubishi and connected to MELCloud.
|
|
16
|
+
Homebridge plugin for Air Conditioner, Heat Pump and Energy Recovery Ventilation Lossnay, manufactured by Mistsubishi and connected to MELCloud or MELCloud Home.
|
|
17
17
|
|
|
18
18
|
</span>
|
|
19
19
|
|
|
@@ -21,14 +21,14 @@ Homebridge plugin for Air Conditioner, Heat Pump and Energy Recovery Ventilation
|
|
|
21
21
|
|
|
22
22
|
| Package | Installation | Role | Required |
|
|
23
23
|
| --- | --- | --- | --- |
|
|
24
|
-
| [Homebridge v2.0](https://github.com/homebridge/homebridge) | [Homebridge Wiki](https://github.com/homebridge/homebridge/wiki) | HomeKit Bridge | Required
|
|
25
|
-
| [
|
|
24
|
+
| [Homebridge v2.0.0](https://github.com/homebridge/homebridge) | [Homebridge Wiki](https://github.com/homebridge/homebridge/wiki) | HomeKit Bridge | Required |
|
|
25
|
+
| [Homebridge UI <= v5.5.0](https://github.com/homebridge/homebridge-config-ui-x) | [Homebridge UI Wiki](https://github.com/homebridge/homebridge-config-ui-x/wiki) | Homebridge Web User Interface | Required |
|
|
26
26
|
| [MELCloud](https://github.com/grzegorz914/homebridge-melcloud-control) | [Plug-In Wiki](https://github.com/grzegorz914/homebridge-melcloud-control/wiki) | Homebridge Plug-In | Required |
|
|
27
27
|
|
|
28
28
|
### About The Plugin
|
|
29
29
|
|
|
30
30
|
* All devices are detected automatically.
|
|
31
|
-
* Control devices over MELCloud
|
|
31
|
+
* Control devices over MELCloud and MELCloud Home.
|
|
32
32
|
* Support multiple accounts, buildings, floors, areas.
|
|
33
33
|
* Support temperature display units `Celsius/Fahrenheit`.
|
|
34
34
|
* Support assing inividual operating mode for `Heat/Cool/Auto`.
|
|
@@ -187,7 +187,7 @@ Homebridge plugin for Air Conditioner, Heat Pump and Energy Recovery Ventilation
|
|
|
187
187
|
### Configuration
|
|
188
188
|
|
|
189
189
|
* Run this plugin as a [Child Bridge](https://github.com/homebridge/homebridge/wiki/Child-Bridges) (Highly Recommended), this prevent crash Homebridge if plugin crashes.
|
|
190
|
-
* Install and use [Homebridge
|
|
190
|
+
* Install and use [Homebridge UI <= v5.5.0](https://github.com/homebridge/homebridge-config-ui-x/wiki) to configure this plugin.
|
|
191
191
|
* The `sample-config.json` can be edited and used as an alternative.
|
|
192
192
|
|
|
193
193
|
<p align="center">
|
|
@@ -207,13 +207,13 @@ Homebridge plugin for Air Conditioner, Heat Pump and Energy Recovery Ventilation
|
|
|
207
207
|
| `user` | Here set the account username. |
|
|
208
208
|
| `passwd` | Here set the account password. |
|
|
209
209
|
| `language` | Here select the account language. |
|
|
210
|
-
| `
|
|
210
|
+
| `type` | Here select the account type `None/Disabled`, `MELCloud`, `MELCloud Home`. |
|
|
211
211
|
| `ataDevices[]` | Array of ATA devices created automatically after login to MELCloud from plugin config UI. |
|
|
212
212
|
| `ataDevices[].id` | Read only data, do not change it. |
|
|
213
213
|
| `ataDevices[].type` | Read only data, do not change it. |
|
|
214
214
|
| `ataDevices[].typeString` | Read only data, do not change it. |
|
|
215
215
|
| `ataDevices[].name` | Here You can schange the `Accessory Name` which is exposed to the `Homebridge/HomeKit`. |
|
|
216
|
-
| `ataDevices[].
|
|
216
|
+
| `ataDevices[].displayType` | Here select device control mode `None/Disabled`, `Heater/Cooler`, `Thermostat`. |
|
|
217
217
|
| `ataDevices[].heatDryFanMode` | Here select the operatiing mode for `Heat`, if this mode is not supported, it will be disabled. |
|
|
218
218
|
| `ataDevices[].coolDryFanMode` | Here select the operatiing mode for `Cool`, if this mode is not supported, it will be disabled. |
|
|
219
219
|
| `ataDevices[].autoDryFanMode` | Here select the operatiing mode for `Auto`, if this mode is not supported, it will be disabled.. |
|
|
@@ -234,7 +234,7 @@ Homebridge plugin for Air Conditioner, Heat Pump and Energy Recovery Ventilation
|
|
|
234
234
|
| `atwDevices[].type` | Read only data, do not change it. |
|
|
235
235
|
| `atwDevices[].typeString` | Read only data, do not change it. |
|
|
236
236
|
| `atwDevices[].name` | Here You can schange the `Accessory Name` which is exposed to the `Homebridge/HomeKit`. |
|
|
237
|
-
| `atwDevices[].
|
|
237
|
+
| `atwDevices[].displayType` | Here select main control mode `None/Disabled`, `Heater/Cooler`, `Thermostat`. |
|
|
238
238
|
| `atwDevices[].hideZone` | Here select which zone need to be hidden `None/Disabled`, `Heat Pump`, `Heat Pump / Zone 1`, `Heat Pump / Zone 1 / Hot Water`, `Heat Pump / Zone 1 / Zone 2`, `Heat Pump / Hot Water`,`Heat Pump / Hot Water / Zone 2`, `Heat Pump / Zone 2`, `Zone 1`, `Zone 1 / Hot Water`, `Zone 1 / Hot Water / Zone 2`, `Zone 1 / Zone 2`, `Hot Water`, `Hot Water / Zone 2`, `Zone 2`, `All`. |
|
|
239
239
|
| `atwDevices[].temperatureSensor` | This enable extra `Room` temperature sensors to use with automations in HomeKit app. |
|
|
240
240
|
| `atwDevices[].temperatureSensorFlow` | This enable extra `Flow` temperature sensors to use with automations in HomeKit app. |
|
|
@@ -260,7 +260,7 @@ Homebridge plugin for Air Conditioner, Heat Pump and Energy Recovery Ventilation
|
|
|
260
260
|
| `ervDevices[].type` | Read only data, do not change it. |
|
|
261
261
|
| `ervDevices[].typeString` | Read only data, do not change it. |
|
|
262
262
|
| `ervDevices[].name` | Here You can schange the `Accessory Name` which is exposed to the `Homebridge/HomeKit`. |
|
|
263
|
-
| `ervDevices[].
|
|
263
|
+
| `ervDevices[].displayType` | Here select main control mode `None/Disabled`, `Heater/Cooler`, `Thermostat`. |
|
|
264
264
|
| `ervDevices[].temperatureSensor` | This enable extra `Room` temperature sensors to use with automations in HomeKit app. |
|
|
265
265
|
| `ervDevices[].temperatureSensorOutdoor` | This enable extra `Outdoor` temperature sensors to use with automations in HomeKit app. |
|
|
266
266
|
| `ervDevices[].temperatureSensorSupply` | This enable extra `Supply` temperature sensors to use with automations in HomeKit app. |
|
|
@@ -277,21 +277,19 @@ Homebridge plugin for Air Conditioner, Heat Pump and Energy Recovery Ventilation
|
|
|
277
277
|
| `refreshInterval` | Here set the background account data refresh time in (sec), default `120s`. |
|
|
278
278
|
| `log{}` | Log object. |
|
|
279
279
|
| `log.deviceInfo` | If enabled, log device info will be displayed by every connections device to the network. |
|
|
280
|
-
| `log.
|
|
280
|
+
| `log.success` | If enabled, success log will be displayed in console. |
|
|
281
281
|
| `log.info` | If enabled, info log will be displayed in console. |
|
|
282
282
|
| `log.warn` | If enabled, warn log will be displayed in console. |
|
|
283
283
|
| `log.error` | If enabled, error log will be displayed in console. |
|
|
284
284
|
| `log.debug` | If enabled, debug log will be displayed in console. |
|
|
285
285
|
| `restFul{}` | RSTful object. |
|
|
286
286
|
| `restFul.enable` | If enabled, RESTful server will start automatically and respond to any path request. |
|
|
287
|
-
| `restFul.debug` | If enabled, deep log will be present in homebridge console for RESTFul server. |
|
|
288
287
|
| `mqtt{}` | MQTT object. |
|
|
289
288
|
| `mqtt.enable` | If enabled, MQTT Broker will start automatically and publish all awailable PV data. |
|
|
290
289
|
| `mqtt.host` | Here set the `IP Address` or `Hostname` for MQTT Broker. |
|
|
291
290
|
| `mqtt.port` | Here set the `Port` for MQTT Broker, default 1883. |
|
|
292
291
|
| `mqtt.clientId` | Here optional set the `Client Id` of MQTT Broker. |
|
|
293
292
|
| `mqtt.prefix` | Here set the `Prefix` for `Topic` or leave empty. |
|
|
294
|
-
| `mqtt.debug` | If enabled, deep log will be present in homebridge console for MQTT. |
|
|
295
293
|
| `mqtt.auth{}` | MQTT authorization object. |
|
|
296
294
|
| `mqtt.auth.enable` | Here enable authorization for MQTT Broker. |
|
|
297
295
|
| `mqtt.auth.user` | Here set the MQTT Broker user. |
|