/***********************************************************
USE IT AS A TEMPLATE FOR YOUR PROJECT NOTE THE CURSER SEYING
,FONT COLOR. AND SIZE
WRITE YOUR OWN TEXT DISPLAY
AUTHOR AARVIND PATIL
**********************************************************/
#include <Adafruit_GFX.h>
#include <Adafruit_ILI9341.h>
#define TFT_CS 10
#define TFT_DC 9
#define TFT_RST 8
Adafruit_ILI9341 tft = Adafruit_ILI9341(TFT_CS, TFT_DC, TFT_RST);
void setup() {
tft.begin();
tft.setRotation(4);
}
void loop() {
tft.fillScreen(ILI9341_BLACK);
tft.setCursor(0, 0);
tft.setTextColor(ILI9341_WHITE);
tft.setTextSize(3);
tft.println("29 MARCH 2023");
delay(1500);
tft.setCursor(0, 30);
tft.setTextColor(ILI9341_GREEN);
tft.setTextSize(2);
tft.println("arvind patil");
delay(2000);
tft.setCursor(0, 60);
tft.setTextColor(ILI9341_BLUE);
tft.setTextSize(5);
tft.print("I LOVE U ");
// delay(500);
//tft.print(" ");
delay(1000);
tft.setCursor(0, 110);
tft.setTextColor(ILI9341_RED);
tft.setTextSize(3);
tft.print(" i am indian ");
delay(1000);
tft.setCursor(0, 140);
tft.setTextColor(ILI9341_CYAN);
tft.setTextSize(2);
tft.print(" simulated project ");
delay(1000);
tft.setCursor(0, 160);
tft.setTextColor(ILI9341_YELLOW);
tft.setTextSize(2);
tft.print("copywrited under ");
delay(1000);
tft.setCursor(0, 190);
tft.setTextColor(ILI9341_RED);
tft.setTextSize(2);
tft.print("MIT LISCENCE ");
delay(1000);
tft.setCursor(0, 210);
tft.setTextColor(ILI9341_GREEN);
tft.setTextSize(2);
tft.print("NO WAR IS GOOD ");
delay(1000);
tft.setCursor(0, 210);
tft.setTextColor(ILI9341_GREEN);
tft.setCursor(0, 240);
tft.setTextSize(2);
tft.print("NO PEACE IS BAD ");
delay(1000);
}