├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── githubci.yml ├── .gitignore ├── README.md ├── RGBmatrixPanel.cpp ├── RGBmatrixPanel.h ├── examples ├── PanelGFXDemo_16x32 │ ├── PanelGFXDemo_16x32.ino │ └── smileytongue24.h ├── colorwheel_32x32 │ └── colorwheel_32x32.ino ├── colorwheel_progmem_32x32 │ ├── colorwheel_progmem_32x32.ino │ └── image.h ├── plasma_16x32 │ └── plasma_16x32.ino ├── plasma_32x32 │ └── plasma_32x32.ino ├── scrolltext_16x32 │ └── scrolltext_16x32.ino ├── testcolors_16x32 │ └── testcolors_16x32.ino ├── testshapes_16x32 │ └── testshapes_16x32.ino ├── testshapes_32x32 │ └── testshapes_32x32.ino └── testshapes_32x64 │ └── testshapes_32x64.ino ├── extras ├── gamma.c └── sine.c ├── gamma.h └── library.properties /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/RGB-matrix-Panel/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/RGB-matrix-Panel/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/RGB-matrix-Panel/HEAD/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Our handy .gitignore for automation ease 2 | Doxyfile* 3 | doxygen_sqlite3.db 4 | html 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/RGB-matrix-Panel/HEAD/README.md -------------------------------------------------------------------------------- /RGBmatrixPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/RGB-matrix-Panel/HEAD/RGBmatrixPanel.cpp -------------------------------------------------------------------------------- /RGBmatrixPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/RGB-matrix-Panel/HEAD/RGBmatrixPanel.h -------------------------------------------------------------------------------- /examples/PanelGFXDemo_16x32/PanelGFXDemo_16x32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/RGB-matrix-Panel/HEAD/examples/PanelGFXDemo_16x32/PanelGFXDemo_16x32.ino -------------------------------------------------------------------------------- /examples/PanelGFXDemo_16x32/smileytongue24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/RGB-matrix-Panel/HEAD/examples/PanelGFXDemo_16x32/smileytongue24.h -------------------------------------------------------------------------------- /examples/colorwheel_32x32/colorwheel_32x32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/RGB-matrix-Panel/HEAD/examples/colorwheel_32x32/colorwheel_32x32.ino -------------------------------------------------------------------------------- /examples/colorwheel_progmem_32x32/colorwheel_progmem_32x32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/RGB-matrix-Panel/HEAD/examples/colorwheel_progmem_32x32/colorwheel_progmem_32x32.ino -------------------------------------------------------------------------------- /examples/colorwheel_progmem_32x32/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/RGB-matrix-Panel/HEAD/examples/colorwheel_progmem_32x32/image.h -------------------------------------------------------------------------------- /examples/plasma_16x32/plasma_16x32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/RGB-matrix-Panel/HEAD/examples/plasma_16x32/plasma_16x32.ino -------------------------------------------------------------------------------- /examples/plasma_32x32/plasma_32x32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/RGB-matrix-Panel/HEAD/examples/plasma_32x32/plasma_32x32.ino -------------------------------------------------------------------------------- /examples/scrolltext_16x32/scrolltext_16x32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/RGB-matrix-Panel/HEAD/examples/scrolltext_16x32/scrolltext_16x32.ino -------------------------------------------------------------------------------- /examples/testcolors_16x32/testcolors_16x32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/RGB-matrix-Panel/HEAD/examples/testcolors_16x32/testcolors_16x32.ino -------------------------------------------------------------------------------- /examples/testshapes_16x32/testshapes_16x32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/RGB-matrix-Panel/HEAD/examples/testshapes_16x32/testshapes_16x32.ino -------------------------------------------------------------------------------- /examples/testshapes_32x32/testshapes_32x32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/RGB-matrix-Panel/HEAD/examples/testshapes_32x32/testshapes_32x32.ino -------------------------------------------------------------------------------- /examples/testshapes_32x64/testshapes_32x64.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/RGB-matrix-Panel/HEAD/examples/testshapes_32x64/testshapes_32x64.ino -------------------------------------------------------------------------------- /extras/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/RGB-matrix-Panel/HEAD/extras/gamma.c -------------------------------------------------------------------------------- /extras/sine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/RGB-matrix-Panel/HEAD/extras/sine.c -------------------------------------------------------------------------------- /gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/RGB-matrix-Panel/HEAD/gamma.h -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/RGB-matrix-Panel/HEAD/library.properties --------------------------------------------------------------------------------