#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(40, 130);
tft.setTextColor(ILI9341_GREEN);
tft.setTextSize(2);
tft.println("Happy Birthday");
tft.setCursor(90, 160);
tft.setTextColor(ILI9341_RED);
tft.setTextSize(2);
tft.println("To You");
tft.setCursor(35, 190);
tft.setTextColor(ILI9341_BLUE);
tft.setTextSize(3);
tft.println("24/12/2004");
}
void loop() {
}