homebridge-melcloud-control 4.1.3-beta.19 → 4.1.3-beta.20

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "MELCloud Control",
3
3
  "name": "homebridge-melcloud-control",
4
- "version": "4.1.3-beta.19",
4
+ "version": "4.1.3-beta.20",
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
@@ -638,7 +638,7 @@ class DeviceAta extends EventEmitter {
638
638
  if (this.logDebug) this.emit('debug', `Prepare frost protection control service`);
639
639
  this.frostProtectionControlService = new Service.Switch(`${serviceName} Frost Protection`, `frostProtectionControlService${deviceId}`);
640
640
  this.frostProtectionControlService.addOptionalCharacteristic(Characteristic.ConfiguredName);
641
- this.frostProtectionControlService.setCharacteristic(Characteristic.ConfiguredName, `${accessoryName}Frost Protection`);
641
+ this.frostProtectionControlService.setCharacteristic(Characteristic.ConfiguredName, `${accessoryName} Frost Protection`);
642
642
  this.frostProtectionControlService.getCharacteristic(Characteristic.On)
643
643
  .onGet(async () => {
644
644
  const state = this.accessory.frostProtectionEnabled;
@@ -670,7 +670,7 @@ class DeviceAta extends EventEmitter {
670
670
  if (this.logDebug) this.emit('debug', `Prepare frost protection service`);
671
671
  this.frostProtectionSensorService = new Service.ContactSensor(`${serviceName} Frost Protection`, `frostProtectionSensorService${deviceId}`);
672
672
  this.frostProtectionSensorService.addOptionalCharacteristic(Characteristic.ConfiguredName);
673
- this.frostProtectionSensorService.setCharacteristic(Characteristic.ConfiguredName, `${accessoryName} Frost Protection`);
673
+ this.frostProtectionSensorService.setCharacteristic(Characteristic.ConfiguredName, `${accessoryName} Frost Protection State`);
674
674
  this.frostProtectionSensorService.getCharacteristic(Characteristic.ContactSensorState)
675
675
  .onGet(async () => {
676
676
  const state = this.accessory.frostProtectionActive;
@@ -716,7 +716,7 @@ class DeviceAta extends EventEmitter {
716
716
  if (this.logDebug) this.emit('debug', `Prepare overheat protection sensor service`);
717
717
  this.overheatProtectionSensorService = new Service.ContactSensor(`${serviceName} Overheat Protection`, `overheatProtectionSensorService${deviceId}`);
718
718
  this.overheatProtectionSensorService.addOptionalCharacteristic(Characteristic.ConfiguredName);
719
- this.overheatProtectionSensorService.setCharacteristic(Characteristic.ConfiguredName, `${accessoryName} Overheat Protection`);
719
+ this.overheatProtectionSensorService.setCharacteristic(Characteristic.ConfiguredName, `${accessoryName} Overheat Protection State`);
720
720
  this.overheatProtectionSensorService.getCharacteristic(Characteristic.ContactSensorState)
721
721
  .onGet(async () => {
722
722
  const state = this.accessory.overheatProtectionActive;
@@ -763,7 +763,7 @@ class DeviceAta extends EventEmitter {
763
763
  if (this.logDebug) this.emit('debug', `Prepare holiday mode sensor service`);
764
764
  this.holidayModeSensorService = new Service.ContactSensor(`${serviceName} Holiday Mode`, `holidayModeSensorService${deviceId}`);
765
765
  this.holidayModeSensorService.addOptionalCharacteristic(Characteristic.ConfiguredName);
766
- this.holidayModeSensorService.setCharacteristic(Characteristic.ConfiguredName, `${accessoryName} Holiday Mode`);
766
+ this.holidayModeSensorService.setCharacteristic(Characteristic.ConfiguredName, `${accessoryName} Holiday Mode State`);
767
767
  this.holidayModeSensorService.getCharacteristic(Characteristic.ContactSensorState)
768
768
  .onGet(async () => {
769
769
  const state = this.accessory.holidayModeActive;
package/src/deviceatw.js CHANGED
@@ -1101,7 +1101,7 @@ class DeviceAtw extends EventEmitter {
1101
1101
  if (this.logDebug) this.emit('debug', `Prepare holiday mode sensor service`);
1102
1102
  this.holidayModeSensorService = new Service.ContactSensor(`${serviceName} Holiday Mode`, `holidayModeSensorService${deviceId}`);
1103
1103
  this.holidayModeSensorService.addOptionalCharacteristic(Characteristic.ConfiguredName);
1104
- this.holidayModeSensorService.setCharacteristic(Characteristic.ConfiguredName, `${accessoryName} Holiday Mode`);
1104
+ this.holidayModeSensorService.setCharacteristic(Characteristic.ConfiguredName, `${accessoryName} Holiday Mode State`);
1105
1105
  this.holidayModeSensorService.getCharacteristic(Characteristic.ContactSensorState)
1106
1106
  .onGet(async () => {
1107
1107
  const state = this.accessory.holidayModeActive;
package/src/deviceerv.js CHANGED
@@ -719,7 +719,7 @@ class DeviceErv extends EventEmitter {
719
719
  if (this.logDebug) this.emit('debug', `Prepare holiday mode sensor service`);
720
720
  this.holidayModeSensorService = new Service.ContactSensor(`${serviceName} Holiday Mode`, `holidayModeSensorService${deviceId}`);
721
721
  this.holidayModeSensorService.addOptionalCharacteristic(Characteristic.ConfiguredName);
722
- this.holidayModeSensorService.setCharacteristic(Characteristic.ConfiguredName, `${accessoryName} Holiday Mode`);
722
+ this.holidayModeSensorService.setCharacteristic(Characteristic.ConfiguredName, `${accessoryName} Holiday Mode State`);
723
723
  this.holidayModeSensorService.getCharacteristic(Characteristic.ContactSensorState)
724
724
  .onGet(async () => {
725
725
  const state = this.accessory.holidayModeActive;