Xinyuan-LilyGO / T-QT

MIT License
94 stars 31 forks source link

Blank Screen #30

Closed robcloot closed 1 year ago

robcloot commented 1 year ago

I can upload the following sketch, and the serial monitor works, but nothing displays on the T-QT screen.

include

TFT_eSPI tft = TFT_eSPI();

void setup() { Serial.begin(115200); tft.init(); tft.fillScreen(TFT_BLACK); }

void loop() { tft.println("Hello World"); Serial.println("Hello World"); delay(1000); }

lewisxhe commented 1 year ago

See QuickStart and Tips

robcloot commented 1 year ago

Yes lewisxhe, that fixed the problem. I needed to use the TFT_eSPI settings for T-QT in GitHub. Thank you so much!