From f2b82a6abd955d1c04f56f13ca1334c35d8b92f6 Mon Sep 17 00:00:00 2001 From: fliegerjohn Date: Tue, 23 Apr 2024 17:40:04 +0200 Subject: [PATCH] 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. --- firmware/weckkubator/weckkubator.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/weckkubator/weckkubator.ino b/firmware/weckkubator/weckkubator.ino index a467f53..2c4997b 100644 --- a/firmware/weckkubator/weckkubator.ino +++ b/firmware/weckkubator/weckkubator.ino @@ -81,5 +81,5 @@ void lcdoutput() { // Read Poti void settemp() { poti = analogRead(A3); - tempset = (poti*0.1); + tempset = (18+(poti*0.05)); }