homebridge-melcloud-control 4.2.6-beta.16 → 4.2.6-beta.17
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/deviceerv.js +0 -8
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.17",
|
|
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/deviceerv.js
CHANGED
|
@@ -1371,14 +1371,6 @@ class DeviceErv extends EventEmitter {
|
|
|
1371
1371
|
obj.operationModeSetPropsMaxValue = supportsAutoVentilationMode ? 3 : 2;
|
|
1372
1372
|
obj.operationModeSetPropsValidValues = supportsAutoVentilationMode ? (supportsBypassVentilationMode ? [0, 1, 2, 3] : [0, 2, 3]) : (supportsBypassVentilationMode ? [0, 1, 2] : [0, 2]);
|
|
1373
1373
|
|
|
1374
|
-
//update characteristics
|
|
1375
|
-
this.melCloudService
|
|
1376
|
-
?.updateCharacteristic(Characteristic.CurrentHeatingCoolingState, obj.currentOperationMode)
|
|
1377
|
-
.updateCharacteristic(Characteristic.TargetHeatingCoolingState, obj.targetOperationMode)
|
|
1378
|
-
.updateCharacteristic(Characteristic.CurrentTemperature, roomTemperature)
|
|
1379
|
-
.updateCharacteristic(Characteristic.TargetTemperature, setTemperature)
|
|
1380
|
-
.updateCharacteristic(Characteristic.TemperatureDisplayUnits, obj.useFahrenheit);
|
|
1381
|
-
|
|
1382
1374
|
//create characteristics
|
|
1383
1375
|
characteristics.push(
|
|
1384
1376
|
{ type: Characteristic.CurrentHeatingCoolingState, value: obj.currentOperationMode },
|