#include "SPI.h"
#include "Adafruit_GFX.h"
#include "Adafruit_ILI9341.h"
#define TFT_DC 4
#define TFT_CS 5
#define TFT_MOSI 6
#define TFT_CLK 7
#define TFT_CTRL 45
#define TFT_RST 48
Adafruit_ILI9341 tft = Adafruit_ILI9341(TFT_CS, TFT_DC, TFT_MOSI, TFT_CLK, TFT_RST);
void setup() {
Serial.begin(115200);
pinMode(TFT_CTRL, OUTPUT);
digitalWrite(TFT_CTRL, HIGH);
tft.begin();
const uint8_t mode = 0x48;
tft.sendCommand(ILI9341_MADCTL, &mode, 1);
tft.fillScreen(ILI9341_BLACK);
tft.setCursor(10, 40);
tft.setTextColor(ILI9341_YELLOW);
tft.setTextSize(2);
// ✨ Marathi Text Display
tft.println("शिकणे म्हणजे"); // Learning means
tft.println("वाढणे आणि वाढवणे"); // growing and uplifting
tft.println("प्रयत्नाशिवाय"); // Without effort
tft.println("काहीही शक्य नाही"); // Nothing is possible
}
void loop() {
// No animation needed — static inspirational Marathi message
}