1
0
mirror of https://github.com/revspace/operame synced 2024-10-31 21:47:30 +00:00

Merge pull request #12 from RonnyLam/main

Changed presentation in display of Temp and Hum.
This commit is contained in:
Pieter De Mil 2022-04-20 11:51:12 +02:00 committed by GitHub
commit 8ba5fee239
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -183,7 +183,7 @@ void display_ppm_t_h(int ppm, float t, float h) {
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() {