#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.fillScreen(ILI9341_WHITE); // Set the background color to white
tft.setCursor(15, 80);
tft.setTextColor(ILI9341_BLACK); // Set the text color to black
tft.setTextSize(4);
tft.setTextWrap(false); // Disable text wrapping
tft.println("KREEATOOR");
tft.setCursor(20, 120);
tft.setTextSize(3);
tft.println("JANGAN LUPA");
tft.setCursor(30, 160);
tft.setTextSize(2);
tft.println("FOLLOW DAN LIKE");
}
void loop() { }