#include <ArduinoJson.h>
#include <Adafruit_GFX.h>
#include <Adafruit_ILI9341.h>
#define TFT_DC 2
#define TFT_CS 15
Adafruit_ILI9341 tft = Adafruit_ILI9341(TFT_CS, TFT_DC);
void setup() {
tft.begin();
tft.setRotation(1);
}
void loop() {
tft.fillScreen(ILI9341_WHITE);
tft.setCursor(0,0);
tft.setTextSize(2);
tft.setTextColor(ILI9341_RED);
tft.println("");
tft.println("");
tft.println("Kuppam Engineering College");
// tft.setCursor(5, 1);
tft.setTextColor(ILI9341_BLUE);
tft.println("");
tft.println("");
tft.println("");
tft.println("");
tft.println("");
tft.println(" SPI LCD");
// tft.setCursor(8, 0);
tft.setTextColor(ILI9341_GREEN);
tft.println("");
//tft.println("");
tft.println("");
tft.println("");
tft.println("");
tft.println(" BHAVANA");
// //tft.setCursor(10, 0);
delay(5000);
}