Skip to content

Commit

Permalink
update atomizer
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoMarche committed Jan 9, 2023
1 parent 74ce51c commit e716a05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mushrooms_firm/mushrooms_firm.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit e716a05

Please sign in to comment.