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:
Fliegerjohn 2024-04-23 17:40:04 +02:00
parent 7c12ac40f8
commit f2b82a6abd
Signed by: fliegerjohn
GPG key ID: E2221D5FE4656B6A

View file

@ -81,5 +81,5 @@ void lcdoutput() {
// Read Poti
void settemp() {
poti = analogRead(A3);
tempset = (poti*0.1);
tempset = (18+(poti*0.05));
}