Set temprange from 18 to 89 degrees.
There is no need for temperatures under 18 and above 89 degrees. Now it's easier to set the temp.
This commit is contained in:
parent
7c12ac40f8
commit
f2b82a6abd
1 changed files with 1 additions and 1 deletions
|
@ -81,5 +81,5 @@ void lcdoutput() {
|
||||||
// Read Poti
|
// Read Poti
|
||||||
void settemp() {
|
void settemp() {
|
||||||
poti = analogRead(A3);
|
poti = analogRead(A3);
|
||||||
tempset = (poti*0.1);
|
tempset = (18+(poti*0.05));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue