Hello,
Iam using a 2.8" SPI TFT with an Uno. Sketch runs ok.
My problem is I cannot change fonts. Although there is a
tft.setTextFont(???); //what goes for ???
I cannot find out how to "pass" another font (looking for bigger than 10mm height, ie > ~50 pixels height)
whatever pass (filename...) I get compilation error
' Here Is What I Pass ' was not declared in this scope
#include "SPI.h"
#include "Adafruit_GFX.h"
#include "TFT_ILI9341.h"
...
TFT_ILI9341 tft = TFT_ILI9341();
void setup() {
...
tft.begin();
tft.fillScreen(ILI9341_BLACK);
tft.setRotation(1);
tft.setTextFont(???);
tft.setTextSize(4);
tft.setTextColor(ILI9341_WHITE);
}