1
0
mirror of https://github.com/revspace/operame synced 2024-10-31 21:47:30 +00:00
This commit is contained in:
Pieter De Mil 2022-04-20 17:36:08 +02:00
commit 49d05af75e
2 changed files with 11 additions and 1 deletions

View File

@ -37,3 +37,13 @@ https://www.silabs.com/developers/usb-to-uart-bridge-vcp-drivers
-bordje connecteren en in devices checken of driver er is anders cp210x driver van silicon lans installeren.
-dan in platformio.ini upload_port en flags commenten. zoek port dan automatisch
## 4MB or 16MB
board = esp32thing
board_build.partitions = default.csv
If you have a 16MB TTGO T-Display board, you can change the env settings in the platformio.ini file.
board = esp32thing_plus
board_build.partitions = default_16MB.csv

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() {