#include "SPI.h"
#include "Adafruit_GFX.h"
#include "Adafruit_ILI9341.h"
#define TFT_DC 9
#define TFT_CS 10
Adafruit_ILI9341 tft = Adafruit_ILI9341(TFT_CS, TFT_DC);
void setup() {
tft.begin();
tft.setCursor(26, 120);
tft.setTextColor(ILI9341_RED);
tft.setTextSize(2);
tft.println("I hate the jews.");
tft.setCursor(50, 160);
tft.setTextColor(ILI9341_GREEN);
tft.setTextSize(1);
tft.println("I failed my art school.");
}
void loop() { }