Fix degree symbol

This commit is contained in:
Laura Hausmann 2023-05-30 21:57:22 +02:00
parent 71e80d7f09
commit ea754c744e
Signed by: zotan
GPG key ID: D044E84C5BE01605

View file

@ -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");