homebridge-melcloud-control 4.2.8-beta.0 → 4.2.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,14 @@ 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.8] - (18.11.2025)
26
+
27
+ ## Changes
28
+
29
+ - added option to set only switch for presets, scenses, schedules or buttons
30
+ - readme updated
31
+ - cleanup
32
+
25
33
  # [4.2.7] - (18.11.2025)
26
34
 
27
35
  ## Changes
package/README.md CHANGED
@@ -188,12 +188,12 @@ Homebridge plugin for Air Conditioner, Heat Pump and Energy Recovery Ventilation
188
188
  ### HOME app current device mode display
189
189
 
190
190
  * In AUTO mode, the tile display current state based on current mode:
191
- * In HEATING mode, th tile display current state as HEATING - orange
192
- * In COOLING mode, the tile display current state as COOLING - blue
193
- * In DRY mode, the tile display current state as IDLE - black
194
- * In FAN mode, the tile display current state as IDLE - black
195
- * In IDLE mode, the tile display current state as IDLE - black
196
- * In INACTIVE mode, the tile display current state as INACTIVE - transparent
191
+ * HEATING mode, th tile display current state as HEATING - orange
192
+ * COOLING mode, the tile display current state as COOLING - blue
193
+ * DRY mode, the tile display current state as IDLE - black
194
+ * FAN mode, the tile display current state as IDLE - black
195
+ * IDLE mode, the tile display current state as IDLE - black
196
+ * INACTIVE mode, the tile display current state as INACTIVE - transparent
197
197
 
198
198
  ### AUTO Mode
199
199
 
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.8-beta.0",
4
+ "version": "4.2.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
@@ -1685,7 +1685,7 @@ class DeviceAta extends EventEmitter {
1685
1685
  //control
1686
1686
  if (preset.displayType > 3) this.presetControlServices?.[i]?.updateCharacteristic(Characteristic.On, preset.state);
1687
1687
 
1688
- //sencor
1688
+ //sensor
1689
1689
  if (preset.displayType < 7) this.presetControlSensorServices?.[i]?.updateCharacteristic(characteristicType, preset.state);
1690
1690
  });
1691
1691
  };
package/src/deviceatw.js CHANGED
@@ -2107,7 +2107,7 @@ class DeviceAtw extends EventEmitter {
2107
2107
  //control
2108
2108
  if (preset.displayType > 3) this.presetControlServices?.[i]?.updateCharacteristic(Characteristic.On, preset.state);
2109
2109
 
2110
- //sencor
2110
+ //sensor
2111
2111
  if (preset.displayType < 7) this.presetControlSensorServices?.[i]?.updateCharacteristic(characteristicType, preset.state);
2112
2112
  });
2113
2113
  };
package/src/deviceerv.js CHANGED
@@ -1449,7 +1449,7 @@ class DeviceErv extends EventEmitter {
1449
1449
  //control
1450
1450
  if (preset.displayType > 3) this.presetControlServices?.[i]?.updateCharacteristic(Characteristic.On, preset.state);
1451
1451
 
1452
- //sencor
1452
+ //sensor
1453
1453
  if (preset.displayType < 7) this.presetControlSensorServices?.[i]?.updateCharacteristic(characteristicType, preset.state);
1454
1454
  });
1455
1455
  };