I am writing a little program directly on the NodeMCU but I am experiencing a little bit of "stuttering".
My setup:
NodeMCU v1.0
ILI9341 3.2" TFT screen datasheet: https://store.comet.bg/download-file.php?id=5356
UTFT + UTFT_DLB for esp8266
I am not exactly sure if the UTFT library allows me to use the HSPI pins directly, but I am using them none the less. Displaying small text (~20) is absolutely fine but the problem comes with larger text (40+). Changing the text doesn't look very pleasant. It's also worth noting that the "stutter" is not noticeable on camera.
My question is how do I find out what frequency the SPI is working at the moment and is it possible to increase that speed and see if it helps.
Using this renders the screen unusable but the esp itself continues working.
SPI.begin();
SPI.setFrequency(40000000);
I am also open to other libraries for this display. So far I have tried Adafruit GFX, ucglib, PDQ GFX.