@Marcus_DE - @defragster
I can confirm the issue. I also downloaded the version prior to the latest PR as a double check and that worked without issue. With my display config i did change the example to:
Code:
#include <SPI.h>
#include <ILI9341_t3.h>
#include <font_Arial.h>
#define TFT_CS 10 //TFT CS
#define TFT_DC 9 //TFT D/C
ILI9341_t3 tft = ILI9341_t3(TFT_CS, TFT_DC,8);
void setup() {
tft.begin();
tft.fillScreen(ILI9341_BLACK);
tft.setRotation(1);
tft.setTextWrap(false);
tft.setFont(Arial_14);
tft.setTextColor(ILI9341_YELLOW);
}
uint16_t s=0;
void loop() {
tft.fillRect(1, 1, 100, 100, ILI9341_BLACK);
tft.setCursor(10, 10);
tft.print(s);
s++;
delay(100);
}
Did verify that if you use the default font the issue does not appear.