aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-07-29New Versionmrfaptastic
2020-07-05Update library.jsonmrfaptastic
2020-07-05Update library.jsonmrfaptastic
2020-07-04Update Versionmrfaptastic
2020-07-04Updated namemrfaptastic
2020-07-04Update title for Arduino Librarymrfaptastic
2020-07-04Merge pull request #22 from adi961/mastermrfaptastic
define MATRIX_HEIGHT, MATRIX_WIDTH and MATRIX_ROWS_IN_PARALLEL only i…
2020-07-04Update library description for offical Arduino inclusionmrfaptastic
2020-03-28define MATRIX_HEIGHT, MATRIX_WIDTH and MATRIX_ROWS_IN_PARALLEL only if not ↵Adrian Brennig
defined previously
2019-11-04New bitmap graphics examplemrfaptastic
Added Bitmap graphics example
2019-08-18Update README.mdmrfaptastic
2019-08-18Update README.mdmrfaptastic
2019-08-18Update README.mdmrfaptastic
Remove confusing reference to the ESP32 bugs document. No longer relevant.
2019-08-14Add drawIcon functioncsloz
Draws a C style Icon on the display using RGB565 color.
2019-08-14Update ESP32-RGB64x32MatrixPanel-I2S-DMA.hcsloz
2019-08-14Add drawIcon codecsloz
Add drawIcon functionality. Draws from a c bitmap icon.
2019-07-30Merge branch 'master' of ↵mrfaptastic
https://github.com/mrfaptastic/ESP32-RGB64x32MatrixPanel-I2S-DMA
2019-07-30added Color333 functionmrfaptastic
#16
2019-07-30Update README.mdmrfaptastic
2019-07-30Adjust default library brightness and refresh rate (memory usage).mrfaptastic
To avoid it being so crashy for people testing this on setups with no caps.
2019-07-29Make PatternPlasma great againmrfaptastic
2019-07-29Cleanupmrfaptastic
2019-07-29Update README.mdmrfaptastic
2019-07-29Update README.mdmrfaptastic
2019-07-29Update re brightness levelmrfaptastic
2019-07-29rename setBrightness to setPanelBrightnessmrfaptastic
For some strange reason it causes a panic. Some other arduino function must be conflicting.
2019-07-29Updated readme regarding ghostingmrfaptastic
2019-07-29Merge branch 'master' of ↵mrfaptastic
https://github.com/mrfaptastic/ESP32-RGB64x32MatrixPanel-I2S-DMA
2019-07-29Reduce / Remove Ghostingmrfaptastic
After a lot of trial and error, I believe I've found the resolution to the ghosting, and it's as simple as reducing the brightness level to 60. The actual brightness doesn't change it seems, but the timing of the OE pin being set HIGH is performed earlier which can work better on some panels. Closes: #14 #12
2019-07-13Update README.mdmrfaptastic
Update README per #15
2019-05-11Added new demomrfaptastic
Based on Aurora code.
2019-01-12Update Buffer_Swap_Test.inomrfaptastic
2019-01-12Added double buffering / back buffer examplemrfaptastic
Current implementation simply write to the active DMA buffer, but you might want to use both buffers and do off-screen writes.
2019-01-09Disable auto back-buffer switch logic.mrfaptastic
No point changing to the back-buffer automatically, should be for advanced/manual uses of the library.
2019-01-03Memory allocation changesmrfaptastic
Move malloc from static class constructor to begin(). Possible fix for #3
2019-01-03Merge branch 'master' of ↵mrfaptastic
https://github.com/mrfaptastic/ESP32-RGB64x32MatrixPanel-I2S-DMA
2019-01-03Updated imagesmrfaptastic
2019-01-03Updated README for new custom pin mappingmrfaptastic
2019-01-03Added ability to define custom pin mappingsmrfaptastic
Closes issue #4 Use something like: ' display.begin(R1_PIN, G1_PIN, B1_PIN, R2_PIN, G2_PIN, B2_PIN, A_PIN, B_PIN, C_PIN, D_PIN, E_PIN, LAT_PIN, OE_PIN, CLK_PIN ); // setup the LED matrix' with R1_PIN etc. referring to your own define or constant variables
2019-01-02Addition of faster fillScreen functionmrfaptastic
Addition of a function to wipe the entire DMA buffer / screen with a single color in a quicker manner.
2018-12-31Merge pull request #5 from marcmerlin/mastermrfaptastic
Updated demo text. Merging changes from @marcmerlin. Thanks
2018-12-25Port Panel GFX demo.Marc MERLIN
2018-12-25Initial version from git@github.com:marcmerlin/RGB-matrix-Panel.git .Marc MERLIN
2018-12-25Update demo screen (less blurry, no overwrite and proper colors).Marc MERLIN
2018-12-25Fix RGB to actually be RGBMarc MERLIN
Also aligned text to avoid overwriting.
2018-10-31Added PatternWave demo sketchmrfaptastic
New Sketch
2018-10-29Brightness re-enabled.mrfaptastic
Brightness code was commented out, uncommented. Default the library so that panels display max brightness.
2018-10-29Minor wording changes.mrfaptastic
2018-10-29Fixed co-ordinate check bug in updateMatrixDMABuffermrfaptastic
Thanks to @FrenchLab47 for finding this one. Co-Authored-By: Patrick BESSE <pbe33@free.fr>
2018-10-25Animated GIF example addedmrfaptastic