Skip to content

Commit

Permalink
- (PLCHome) Fixed error.
Browse files Browse the repository at this point in the history
  • Loading branch information
PLCHome committed Aug 13, 2024
1 parent c10b0ff commit 933683f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ https://forum.iobroker.net/topic/47932/test-intext-app-v0-0-x
Placeholder for the next version (at the beginning of the line):
### **WORK IN PROGRESS**
-->
### **WORK IN PROGRESS**

- (PLCHome) Fixed error.

### 0.1.6 (2024-08-13)

- (PLCHome) Configure this adapter to use the release script.
Expand Down Expand Up @@ -95,6 +99,7 @@ https://forum.iobroker.net/topic/47932/test-intext-app-v0-0-x

### 0.1.0


* (rbartl/PLCHome) Support local IP. Both via cloud and only locally without cloud. Thanks to Austria to Robert Bartl.
* (PLCHome) Confirm directly after switching via Control.

Expand Down
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class Intex extends utils.Adapter {
"TempSet" : {iobrokerId: 'TargetTemperature', typ : typTemp, subOperation : "Temp", byteIndex: BYTE_TARGET_TEMPERATURE, testFunc: function(val){if (val>0 && val<181){ return val;} else return;}},
"Temp" : {iobrokerId: 'Temperature', typ : typTemp, subOperation : "Celsius" , byteIndex: BYTE_TEMPERATURE, readonly: true, testFunc: function(val){if (val>0 && val<181){ return val;} else return;}},
"Celsius" : {iobrokerId: 'Celsius', subOperation : "Error", typ : typCelsius, byteIndex: BYTE_TARGET_TEMPERATURE, testFunc: function(val){if (val>0 && val<181){ return val <= 43;} else return;}},
"Error" : {iobrokerId: 'Error', typ : typError, byteIndex: BYTE_TARGET_TEMPERATURE, testFunc: function(val){if (val<181) { return 0;} else { return val-100;}}, readonly: true},
"Error" : {iobrokerId: 'Error', typ : typError, byteIndex: BYTE_TEMPERATURE, testFunc: function(val){if (val<181) { return 0;} else { return val-100;}}, readonly: true},
}
this.control = {};

Expand Down

0 comments on commit 933683f

Please sign in to comment.