Skip to content

Instantly share code, notes, and snippets.

@IsmailSan
Created September 17, 2019 13:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IsmailSan/905151425637081246bf6fd023da4d9f to your computer and use it in GitHub Desktop.
Save IsmailSan/905151425637081246bf6fd023da4d9f to your computer and use it in GitHub Desktop.
#include <esp_log.h>
#include <ESPectro32_Board.h>
#include <ESPectro32_LedMatrix_Animation.h>
ESPectro32_LedMatrix_ScrollTextAnimation ledMatrixTextAnim;
static void load_ex_ledmatrix_anim() {
ledMatrixTextAnim.setLedMatrix(ESPectro32.LedMatrix());
ledMatrixTextAnim.scrollText("Hello World!!", 6000);
}
void setup() {
load_ex_ledmatrix_anim();
}
void loop() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment