1
0
mirror of https://github.com/revspace/operame synced 2024-11-01 05:57:30 +00:00

Changed presentation in display of Temp and Hum.

This commit is contained in:
Ronny Lam 2022-03-25 12:55:06 +01:00
parent f6acffac8f
commit b280f8de4b
No known key found for this signature in database
GPG Key ID: 7933BA485158E879

View File

@ -183,7 +183,7 @@ void display_ppm_t_h(int ppm, float t, float h) {
std::swap(fg, bg); std::swap(fg, bg);
} }
display_3(String(ppm), String(t), String(h), fg, bg); display_3(String(ppm), String(int(t)) + String("`C"), String(int(h)) + String("%"), fg, bg);
} }
void calibrate() { void calibrate() {