Bodmer

Results 168 comments of Bodmer

Make sure the TFT_CS signal stays high otherwise the display can get garbage commands. I suspect the display may need to be re-initialised upon wake up. Unfortunately I am unable...

LittleFS is not supported by the ESP32 and existing legacy ESP8266 user sketches are using SPIFFS, so the only option is to add a user switch to avoid the warning...

Which stream example is not working? What hardware are you using?

Update added, thanks.

When a RP2040 based board is selected the code compiles, uploads and runs correctly. So this compile problem seems to be associated with the ESP32 board package.

With the develop branch my sketch compiles and uploads to the RP2040 processor but the processor then crashes. The Master branch runs fine though. So that branch does not work...

I have found that in the develop branch I have to comment out the following lines in the sketch: // render.showFreeTypeVersion(); // print FreeType version // render.showCredit(); // print FTL...

I looked at this further and it is g_Print() in OpenFontRender.h/cpp that is causing the RP2040 processor crash with the develop branch. I am guessing this has to be user...

I added the following to the sketch and it now runs using the develop branch without crashing on the RP040. ``` Serial.begin(115200); Serial.flush(); render.setSerial(Serial); // Important to avoid a crash...

Thank you, it's a great easy to use library. It is working very well now on my RP2040 with those tweaks. I have created new binaries from ttf files without...