From e716a05e6214a2c582077fd3219a7f30d2101a5a Mon Sep 17 00:00:00 2001 From: Leo Marche Date: Mon, 9 Jan 2023 10:42:40 +0100 Subject: [PATCH] update atomizer --- mushrooms_firm/mushrooms_firm.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mushrooms_firm/mushrooms_firm.ino b/mushrooms_firm/mushrooms_firm.ino index 1f2c61c..5f81906 100644 --- a/mushrooms_firm/mushrooms_firm.ino +++ b/mushrooms_firm/mushrooms_firm.ino @@ -43,8 +43,8 @@ void setup() { TH06.begin(); Serial.begin(9600); t = 0; - expectedTmp = 30; - expectedHygro = 70.0; + expectedTmp = 24; + expectedHygro = 95.0; coeffPropTmp = 1.0; coeffIntTmp = 0.0003; coeffPropHygro = 0.1; @@ -92,7 +92,7 @@ void loop() { // Print command anc actual to LCD lcd.clear(); lcd.setCursor(0, 0); - lcd.print(expectedTmp); + lcd.print(retourTmp); lcd.print(" "); lcd.print(retourHygro); float currt = millis();