#define TFT_CS 9
#define TFT_DC 10
#include "Adafruit_GFX.h" // Core graphics library
#include "Adafruit_ILI9341.h" // Hardware-specific library
#include "SPI.h"
Adafruit_ILI9341 tft = Adafruit_ILI9341(TFT_CS, TFT_DC);
#define WIDTH 320
#define HEIGHT 240
void setup() {
tft.begin();
tft.setRotation(0);
}
void loop(void) {
tft.setCursor(0,0);
tft.println("Hello World!");
}