#include <SPI.h>
#include <Adafruit_GFX.h>
#include <Adafruit_ILI9341.h>
#define TFT_CS 10
#define TFT_DC 8
#define TFT_RST 9
Adafruit_ILI9341 tft(TFT_CS, TFT_DC, TFT_RST);
void setup()
{
tft.begin();
tft.setRotation(1);
tft.setCursor(10,10);
tft.setTextColor(ILI9341_RED);
tft.setTextSize(8);
tft.print("Hello");
}
void loop()
{
delay(10);
}