homebridge-melcloud-control 4.2.6-beta.1 → 4.2.6-beta.2
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/deviceatw.js +0 -10
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.6-beta.
|
|
4
|
+
"version": "4.2.6-beta.2",
|
|
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/deviceatw.js
CHANGED
|
@@ -470,11 +470,6 @@ class DeviceAtw extends EventEmitter {
|
|
|
470
470
|
};
|
|
471
471
|
});
|
|
472
472
|
melCloudService.getCharacteristic(Characteristic.CurrentTemperature)
|
|
473
|
-
.setProps({
|
|
474
|
-
minValue: -35,
|
|
475
|
-
maxValue: 150,
|
|
476
|
-
minStep: 0.5
|
|
477
|
-
})
|
|
478
473
|
.onGet(async () => {
|
|
479
474
|
const value = zone.roomTemperature;
|
|
480
475
|
return value;
|
|
@@ -785,11 +780,6 @@ class DeviceAtw extends EventEmitter {
|
|
|
785
780
|
};
|
|
786
781
|
});
|
|
787
782
|
melCloudServiceT.getCharacteristic(Characteristic.CurrentTemperature)
|
|
788
|
-
.setProps({
|
|
789
|
-
minValue: -35,
|
|
790
|
-
maxValue: 150,
|
|
791
|
-
minStep: 0.5
|
|
792
|
-
})
|
|
793
783
|
.onGet(async () => {
|
|
794
784
|
const value = zone.roomTemperature;
|
|
795
785
|
return value;
|