stevie135s
Published © GPL3+

Big horse animation on ESP32 TTGO T4 v1.3

This is just a pretty animation on the TTGO T4 and makes use of the Huge App partition setting.

BeginnerProtip922
Big horse animation on ESP32 TTGO T4 v1.3

Things used in this project

Hardware components

Arduino ESP32 TTGO T4 V1.3
×1

Story

Read more

Custom parts and enclosures

Data File

unzip this h file to your working folder

Schematics

Flash parameters

Use these flash parameters

Code

Big_Horse

Arduino
Use the arduino IDE to flash the TTGO T4. Remember to press the boot button before flashing commences
#include "Big_Horse.h"
#include <TFT_eSPI.h>
#include <SPI.h>
TFT_eSPI tft = TFT_eSPI(); // Invoke stuff


void setup() {
  tft.init();
  tft.setRotation(1);
  tft.setSwapBytes(true);
  tft.fillScreen(TFT_WHITE);

}

void loop() {
  for (byte i = 0; i < frames; i++) {
    delay(10);
    tft.pushImage(3 , 25 , animation_width , animation_height , Big_Horse [i]);
  }

}

Credits

stevie135s
28 projects • 12 followers
I've been interested in microprocessors for a long time.

Comments