From b280f8de4bdd06dc38e38cd38aeb6ebb7a81f6db Mon Sep 17 00:00:00 2001 From: Ronny Lam Date: Fri, 25 Mar 2022 12:55:06 +0100 Subject: [PATCH 1/2] Changed presentation in display of Temp and Hum. --- operame.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/operame.ino b/operame.ino index 878fd16..a10b725 100644 --- a/operame.ino +++ b/operame.ino @@ -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() { From 65672c56ed88f2ae2780d671a9fae86165fd129d Mon Sep 17 00:00:00 2001 From: Pieter De Mil Date: Wed, 20 Apr 2022 11:59:05 +0200 Subject: [PATCH 2/2] 4MB vs 16 MB TTGO --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index d2c48bc..a728fbe 100644 --- a/README.md +++ b/README.md @@ -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 +