homebridge-melcloud-control 4.2.2-beta.7 → 4.2.2-beta.8

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 CHANGED
@@ -22,6 +22,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
22
22
 
23
23
  - Do not use Homebridge UI > v5.5.0 because of break config.json
24
24
 
25
+ ## [4.2.2] - (xx.11.2025)
26
+
27
+ ## Changes
28
+
29
+ - added connect sensor
30
+ - config schema updated
31
+ - readme updated
32
+ - cleanup
33
+
25
34
  ## [4.2.1] - (13.11.2025)
26
35
 
27
36
  ## Changes
package/README.md CHANGED
@@ -245,6 +245,7 @@ Homebridge plugin for Air Conditioner, Heat Pump and Energy Recovery Ventilation
245
245
  | `ataDevices[].autoDryFanMode` | Here select the operatiing mode for `Auto`, if this mode is not supported, it will be disabled.. |
246
246
  | `ataDevices[].temperatureSensor` | This enable extra `Room` temperature sensor to use with automations in HomeKit app. |
247
247
  | `ataDevices[].temperatureOutdoorSensor` | This enable extra `Outdoor` temperature sensor to use with automations in HomeKit app. |
248
+ | `ataDevices[].connectSensor` | This enable `Connect` sensor to use with automations in HomeKit app. |
248
249
  | `ataDevices[].errorSensor` | This enable `Error` sensor to use with automations in HomeKit app. |
249
250
  | `ataDevices[].frostProtectionSupport` | This enable extra `Frost Protectio` control and sensors to use with automations in HomeKit app. |
250
251
  | `ataDevices[].overheatProtectionSupport` | This enable extra `Overheat Protection` control and sensors to use with automations in HomeKit app. |
@@ -279,6 +280,7 @@ Homebridge plugin for Air Conditioner, Heat Pump and Energy Recovery Ventilation
279
280
  | `atwDevices[].temperatureReturnWaterTankSensor` | This enable extra `Return Water Tank` temperature sensor to use with automations in HomeKit app. |
280
281
  | `atwDevices[].temperatureFlowZone2Sensor` | This enable extra `Flow Zone 2` temperature sensor to use with automations in HomeKit app. |
281
282
  | `atwDevices[].temperatureReturnZone2Sensor` | This enable extra `Return Zone 2` temperature sensor to use with automations in HomeKit app. |
283
+ | `atwDevices[].connectSensor` | This enable `Connect` sensor to use with automations in HomeKit app. |
282
284
  | `atwDevices[].errorSensor` | This enable `Error` sensors to use with automations in HomeKit app. |
283
285
  | `atwDevices[].holidayModeSupport` | This enable extra `Holiday Mode` control and sensors to use with automations in HomeKit app. |
284
286
  | `atwDevices[].refreshInterval` | Here set the background devices state refresh time in (sec), default `5s`. |
@@ -304,6 +306,7 @@ Homebridge plugin for Air Conditioner, Heat Pump and Energy Recovery Ventilation
304
306
  | `ervDevices[].temperatureSensor` | This enable extra `Room` temperature sensor to use with automations in HomeKit app. |
305
307
  | `ervDevices[].temperatureOutdoorSensor` | This enable extra `Outdoor` temperature sensor to use with automations in HomeKit app. |
306
308
  | `ervDevices[].temperatureSupplySensor` | This enable extra `Supply` temperature sensor to use with automations in HomeKit app. |
309
+ | `ervDevices[].connectSensor` | This enable `Connect` sensor to use with automations in HomeKit app. |
307
310
  | `ervDevices[].errorSensor` | This enable `Error` sensors to use with automations in HomeKit app. |
308
311
  | `ervDevices[].holidayModeSupport` | This enable extra `Holiday Mode` control and sensors to use with automations in HomeKit app. |
309
312
  | `ervDevices[].refreshInterval` | Here set the background devices state refresh time in (sec), default `5s`. |
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "MELCloud Control",
3
3
  "name": "homebridge-melcloud-control",
4
- "version": "4.2.2-beta.7",
4
+ "version": "4.2.2-beta.8",
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
@@ -659,9 +659,9 @@ class DeviceAta extends EventEmitter {
659
659
  //connect sensor
660
660
  if (this.connectSensor && this.accessory.isConnected !== null) {
661
661
  if (this.logDebug) this.emit('debug', `Prepare error service`);
662
- this.connectService = new Service.ContactSensor(`${serviceName} Connect`, `connectService${deviceId}`);
662
+ this.connectService = new Service.ContactSensor(`${serviceName} Connected`, `connectService${deviceId}`);
663
663
  this.connectService.addOptionalCharacteristic(Characteristic.ConfiguredName);
664
- this.connectService.setCharacteristic(Characteristic.ConfiguredName, `${accessoryName} Connect`);
664
+ this.connectService.setCharacteristic(Characteristic.ConfiguredName, `${accessoryName} Connected`);
665
665
  this.connectService.getCharacteristic(Characteristic.ContactSensorState)
666
666
  .onGet(async () => {
667
667
  const state = this.accessory.isConnected;
package/src/deviceatw.js CHANGED
@@ -1072,9 +1072,9 @@ class DeviceAtw extends EventEmitter {
1072
1072
  //connect sensor
1073
1073
  if (this.connectSensor && this.accessory.isConnected !== null) {
1074
1074
  if (this.logDebug) this.emit('debug', `Prepare error service`);
1075
- this.connectService = new Service.ContactSensor(`${serviceName} Connect`, `connectService${deviceId}`);
1075
+ this.connectService = new Service.ContactSensor(`${serviceName} Connected`, `connectService${deviceId}`);
1076
1076
  this.connectService.addOptionalCharacteristic(Characteristic.ConfiguredName);
1077
- this.connectService.setCharacteristic(Characteristic.ConfiguredName, `${accessoryName} Connect`);
1077
+ this.connectService.setCharacteristic(Characteristic.ConfiguredName, `${accessoryName} Connected`);
1078
1078
  this.connectService.getCharacteristic(Characteristic.ContactSensorState)
1079
1079
  .onGet(async () => {
1080
1080
  const state = this.accessory.isConnected;
package/src/deviceerv.js CHANGED
@@ -691,9 +691,9 @@ class DeviceErv extends EventEmitter {
691
691
  //connect sensor
692
692
  if (this.connectSensor && this.accessory.isConnected !== null) {
693
693
  if (this.logDebug) this.emit('debug', `Prepare error service`);
694
- this.connectService = new Service.ContactSensor(`${serviceName} Connect`, `connectService${deviceId}`);
694
+ this.connectService = new Service.ContactSensor(`${serviceName} Connected`, `connectService${deviceId}`);
695
695
  this.connectService.addOptionalCharacteristic(Characteristic.ConfiguredName);
696
- this.connectService.setCharacteristic(Characteristic.ConfiguredName, `${accessoryName} Connect`);
696
+ this.connectService.setCharacteristic(Characteristic.ConfiguredName, `${accessoryName} Connected`);
697
697
  this.connectService.getCharacteristic(Characteristic.ContactSensorState)
698
698
  .onGet(async () => {
699
699
  const state = this.accessory.isConnected;