From: gregor herrmann Date: Mon, 26 Oct 2020 04:05:03 +0000 (+0100) Subject: output temperature on LCD X-Git-Url: https://git.toastfreeware.priv.at/toast/airingbutler.git/commitdiff_plain/b0e36cf35d995efe646e45afbb57b8a1b9e51381 output temperature on LCD because we can. and with "+/-" as the values look a bit, hm, … --- diff --git a/airingbutler.ino b/airingbutler.ino index 68cd95d..e348675 100644 --- a/airingbutler.ino +++ b/airingbutler.ino @@ -100,7 +100,11 @@ void loop() lcd.setCursor(0, 0); lcd.print("CO2: "); lcd.print(co2); - lcd.print(" ppm "); + lcd.print(" ppm "); + lcd.setCursor(0,1); + lcd.print("Temp: "); + lcd.print(temp); + lcd.print(" C +/- "); lastppm = co2; delay(5000);