A maxtrix led tools for animate and export to arduino code easier.
Feature
- In software animator (Beta)
- Preview
- Export to arduino code
- Layout editing (Still need to edit at project file)
- Keyframes
- Audio Visualizer
- Video to sequence
- Live preview to real device
- Text scrolling
Now support export to
Supported Protocol
- MAX7219 LED Matrix (Via DPH_MAX7219)
- 74HC595
- NeoPixel or WS28xx/SK68xx
- DMX512
- Custom (PWM, DAC, Digital Protocol)
Certified MCU for Live Preview
- ESP32- S2, S3, C3, C6 and H2 (Via USB-CDC)
- RP2xxx (Via USB-CDC)
- STM32F103 Bluepill (Via USB-CDC)
- STM32F411 Blackpill (Via USB-CDC)
- ESP32 (Via Serial)
- ESP8266 (Via Serial)
- ATmega328p (Via Serial)
Live preview maybe not work well with Serial because limit of bauds rates.
For use the animation that exported in format .h arduino. You can follow this code if you use included player.
#include "DPH_MAX7219_Matrix.h"
#include "animation.h"
MAX7219_LED_MATRIX display(0, 2, 1, 3);
AnimationPlayer player;
void setup() {
display.begin();
display.setIntensity(14);
display.clear();
player.begin();
}
void loop() {
bool completed = player.update(display);
}But for non-included player. you can follow this example.

