#include <TFT_eSPI.h> // Load TFT library
#include <SPI.h>
TFT_eSPI tft = TFT_eSPI(); // Create display object
void setup() {
tft.init();
tft.setRotation(1); // Adjust rotation as needed
tft.fillScreen(TFT_BLACK);
// Draw glowing-style tricolor text
tft.setTextColor(TFT_ORANGE, TFT_BLACK);
tft.setTextSize(2);
tft.drawCentreString("A I", 120, 50, 4);
tft.setTextColor(TFT_WHITE, TFT_BLACK);
tft.drawCentreString("CENTRE", 120, 100, 4);
tft.setTextColor(TFT_GREEN, TFT_BLACK);
tft.drawCentreString("NANDURBAR", 120, 150, 4);
// Optional: draw circular Ashoka Chakra outline
tft.drawCircle(120, 220, 30, TFT_BLUE);
tft.drawCircle(120, 220, 28, TFT_WHITE);
}
void loop() {
// Nothing here for now
}