#include <TFT_eSPI.h> // Biblioteca TFT_eSPI
TFT_eSPI tft = TFT_eSPI(); // Criar o objeto TFT
void setup() {
tft.begin();
tft.setRotation(3); // Ajuste de rotação do display
tft.fillScreen(TFT_BLACK); // Cor de fundo preta
desenharOvo();
}
void loop() { }
void desenharOvo() {
// Corpo do ovo usando um elipse (forma oval)
tft.fillEllipse(160, 120, 60, 80, TFT_WHITE); // Cor branca para o ovo
// Contorno do ovo (opcional)
tft.drawEllipse(160, 120, 60, 80, TFT_BLACK); // Contorno preto
}