From ea754c744e66c1f229549890176b08d290998d96 Mon Sep 17 00:00:00 2001 From: Laura Hausmann Date: Tue, 30 May 2023 21:57:22 +0200 Subject: [PATCH] Fix degree symbol --- src/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 13c3e1f..455ba73 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -236,7 +236,8 @@ void loop() { LCD.setCursor(0, 0); LCD.print(temp, 1); - LCD.print(" C "); + LCD.print((char)223); // Degree symbol (ยบ) + LCD.print("C "); LCD.setCursor(9, 0); LCD.print(rh, 1); LCD.print("%rH");