From b0e36cf35d995efe646e45afbb57b8a1b9e51381 Mon Sep 17 00:00:00 2001 From: gregor herrmann Date: Mon, 26 Oct 2020 05:05:03 +0100 Subject: [PATCH] output temperature on LCD MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit because we can. and with "+/-" as the values look a bit, hm, … --- airingbutler.ino | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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); -- 2.39.5