homebridge-melcloud-control 4.3.16-beta.4 → 4.3.16-beta.5
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 +1 -1
- package/src/deviceata.js +4 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "MELCloud Control",
|
|
3
3
|
"name": "homebridge-melcloud-control",
|
|
4
|
-
"version": "4.3.16-beta.
|
|
4
|
+
"version": "4.3.16-beta.5",
|
|
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
|
@@ -748,8 +748,8 @@ class DeviceAta extends EventEmitter {
|
|
|
748
748
|
});
|
|
749
749
|
frostProtectionControlService.getCharacteristic(Characteristic.CoolingThresholdTemperature)
|
|
750
750
|
.setProps({
|
|
751
|
-
minValue:
|
|
752
|
-
maxValue:
|
|
751
|
+
minValue: 4,
|
|
752
|
+
maxValue: 14,
|
|
753
753
|
minStep: 1
|
|
754
754
|
})
|
|
755
755
|
.onGet(async () => {
|
|
@@ -767,8 +767,8 @@ class DeviceAta extends EventEmitter {
|
|
|
767
767
|
});
|
|
768
768
|
frostProtectionControlService.getCharacteristic(Characteristic.HeatingThresholdTemperature)
|
|
769
769
|
.setProps({
|
|
770
|
-
minValue:
|
|
771
|
-
maxValue:
|
|
770
|
+
minValue: 6,
|
|
771
|
+
maxValue: 16,
|
|
772
772
|
minStep: 1
|
|
773
773
|
})
|
|
774
774
|
.onGet(async () => {
|