commit deeb2b7abdf970b836b1fc1315046fc6b7c638e4
parent cbdc5c378969019ce3af43b8f8685f108e19150c
Author: therealFIGBERT <figbertwelner@gmail.com>
Date: Wed, 19 Feb 2020 22:26:41 -0800
Merge branch 'master' of https://github.com/therealFIGBERT/sci-oly-detector-building
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/RoughDraft/RoughDraft.ino b/RoughDraft/RoughDraft.ino
@@ -17,8 +17,8 @@ void loop() {
float celsius = (voltage - 0.5) * 100;
float fahrenheit = (celsius * 9.0 / 5.0) + 32.0;
lcd.setCursor(5, 0);
- lcd.print(celsius);
+ lcd.print(String(celsius) + "C");
lcd.setCursor(5, 1);
- lcd.print(fahrenheit);
+ lcd.print(String(fahrenheit) + "F");
}