#include <Adafruit_GFX.h> // include Adafruit graphics library
#include <Adafruit_ILI9341.h> // include Adafruit ILI9341 TFT library
#define TFT_CS 8 // TFT CS pin is connected to arduino pin 8
#define TFT_RST 9 // TFT RST pin is connected to arduino pin 9
#define TFT_DC 10 // TFT DC pin is connected to arduino pin 10
// initialize ILI9341 TFT library
Adafruit_ILI9341 tft = Adafruit_ILI9341(TFT_CS, TFT_DC, TFT_RST);
void setup() {
tft.begin();
tft.println(" ");
tft.println(" ");
tft.println(" ");
tft.println(" ");
tft.println(" ");
tft.println(" ");
tft.println(" ");
tft.println(" ");
tft.println(" ");
tft.println(" ");
tft.println(" ");
tft.println(" ");
tft.println(" ");
tft.setTextSize(2);
tft.println(" Manado Independent");
tft.println("");
tft.println(" school");
tft.println("");
tft.println("Robotics Class (G10)");
tft.println("");
tft.println(" Weliam The");
}
void loop(void) {
}