Mates for LEDs - Matrix Text and Shapes for LEDs
Overengineered Matrix and graphics primitive library for ESP32 IDF using FastLed
Parts copied from or at least inspired by Marcmerlin FastLed NeoMatrix and Adafruit GFX Library.
Credit goes to
- https://github.com/marcmerlin/FastLED_NeoMatrix.git
- https://github.com/adafruit/Adafruit-GFX-Library
- https://github.com/nehlsen/FastLedIdf
In theory it should work with the original FastLED or other forks - ESP IDF >= 4
Tested on v4.1-dev-1086-g93a8603c5
LedMatrix
andGfxPrimitives
compose the IDF Componenttest
contains IDF compatible ESP32 Test-casestestapp
contains a standalone test application to be run on the ESP32 (to run the tests fromtest
)demoapp
contains a demo application for the library
- Component
Put it into the components directory of your IDF Project (or point to using theEXTRA_COMPONENT_DIRS
variable in CMakeLists) and use it. - demoapp
# make sure IDF_PATH etc is properly set up
cd demoapp
mkdir build && cd build
cmake ..
make flash
- testapp
# make sure IDF_PATH etc is properly set up
cd testapp
mkdir build && cd build
cmake ..
make flash monitor