| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-11-27 | Remove warnings | mrfaptastic | |
| 2023-11-26 | Update ESP32-HUB75-MatrixPanel-I2S-DMA.cpp | mrfaptastic | |
| 2023-11-26 | Update esp32_i2s_parallel_dma.cpp | mrfaptastic | |
| 2023-11-26 | Fix ESP_LOG statements | mrfaptastic | |
| Correct int width specifier | |||
| 2023-10-24 | Fix: compile errors on espidf v5 | Dorian Zedler | |
| 2023-09-28 | make a d-tor virtual | Emil Muratov | |
| since a d-tor is non-trivial, it should be virtual if MatrixPanel_I2S_DMA is used as a base class | |||
| 2023-09-07 | fix const function in ESP32-HUB75-MatrixPanel-I2S-DMA.h | Lukaswnd | |
| fix getPixelColorDepthBits() to const this is destrroying my build XD | |||
| 2023-08-09 | removed another unnecessary instruction | beta-tester | |
| 2023-08-08 | adjust color range for NO_CIE1931 in updateMatrixDMABuffer() | beta-tester | |
| red16, green16, blue16 never reached maximum 0xFFFF value in NO_CIE1931 | |||
| 2023-08-08 | optimized color565to888() | beta-tester | |
| remove expensive multiplication | |||
| 2023-07-05 | Merge pull request #475 from oseiler2/bugfix/init-gpio | mrfaptastic | |
| Bugfix/init gpio | |||
| 2023-07-05 | typo | Oliver Seiler | |
| 2023-07-05 | typo | Oliver Seiler | |
| 2023-07-05 | initialise GPIO pins | Oliver Seiler | |
| 2023-07-05 | init gpio pins | Oliver Seiler | |
| 2023-07-05 | Initial support for DP3246_SM5368 | Oliver Seiler | |
| 2023-06-23 | Update ESP32-HUB75-MatrixPanel-I2S-DMA.cpp | mrfaptastic | |
| Fix mxconfig.clkphase not being used. #434 | |||
| 2023-05-09 | `esp-idf`: Add menuconfig option `ESP32_HUB75_USE_GFX`. | Avi | |
| This pull requests adds a menuconfig option named `ESP32_HUB75_USE_GFX` which is used to determine if the Adafruit GFX component should be required and used for the build. menuconfig options are the standard way to change behavior of components in `esp-idf`. [Commit b8367d9](https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-DMA/commit/b8367d95d20da4edd149f207dd86665c3cc70588) introduced a backwards incompatible change that caused `idf-idf` to only require the Adafruit-GFX-Library component if `ARDUINO_ARCH_ESP32` was set. `ARDUINO_ARCH_ESP32` is set in platformIO, the arduino software but not in the standalone `esp-idf` installation. | |||
| 2023-04-19 | Merge branch 'master' of ↵ | mrfaptastic | |
| https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-DMA | |||
| 2023-04-19 | Update gdma_lcd_parallel16.cpp | mrfaptastic | |
| 2023-04-19 | Update ESP32-HUB75-MatrixPanel-I2S-DMA.cpp | mrfaptastic | |
| 2023-04-19 | #442 #441 #435 | mrfaptastic | |
| 2023-04-18 | Update gdma_lcd_parallel16.cpp | mrfaptastic | |
| 2023-04-17 | Support for 1/16 64px high outdoor panels driven by ICN2037BP chip ↵ | yv | |
| (https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-DMA/issues/345#issuecomment-1510401192) | |||
| 2023-04-16 | Update ESP32-VirtualMatrixPanel-I2S-DMA.h | mrfaptastic | |
| #354 @rigorka contribution | |||
| 2023-04-09 | Cleanup | mrfaptastic | |
| 2023-04-03 | Update ESP32-VirtualMatrixPanel-I2S-DMA.h | mrfaptastic | |
| 2023-04-03 | Update gdma_lcd_parallel16.cpp | mrfaptastic | |
| 2023-04-02 | Cleanup | mrfaptastic | |
| 2023-04-01 | Update ESP32-VirtualMatrixPanel-I2S-DMA.h | mrfaptastic | |
| 2023-04-01 | Close #432 #430 | mrfaptastic | |
| Implement VirtualDisplayClass rotation (and let AdaFruit_GFX) be aware of it as well for font printing. Ability to 'scale' up (zoom) display as a quick and dirty magnification mode. | |||
| 2023-03-22 | setRotate renamed to setRotation | Dhruv Kumar | |
| Keeping it same as Adafruit_GFX | |||
| 2023-03-22 | setRotate implementation changed | Dhruv Kumar | |
| setRotate(bool) has been replaced by setRotate(int). 0, 1, 2, 3 int inputs are translated to 0, 90, 180 and 270 degrees rotation. Documentation not updated. | |||
| 2023-03-21 | Fix S2 compiling | mrfaptastic | |
| 2023-03-21 | Fix #426 | mrfaptastic | |
| 2023-03-20 | rename size() | mrfaptastic | |
| to getColorDepthSize() | |||
| 2023-03-19 | ROW_SCAN_SHUFFLE #338 | mrfaptastic | |
| New compile time option: ROW_SCAN_SHUFFLE Don't update rows in sequential order. | |||
| 2023-03-19 | ROW_SCAN_SHUFFLE | mrfaptastic | |
| 2023-03-19 | Update esp32_i2s_parallel_dma.cpp | mrfaptastic | |
| 2023-03-19 | Rowcan shuffling #338 | mrfaptastic | |
| 2023-03-18 | #338 | mrfaptastic | |
| Randomise rows. | |||
| 2023-03-18 | Reduce #338 | mrfaptastic | |
| 2023-03-18 | #421 | mrfaptastic | |
| 2023-03-18 | Update ESP32-VirtualMatrixPanel-I2S-DMA.h | mrfaptastic | |
| 2023-03-17 | Serpent-less arrangements added | Dhruv Kumar | |
| 2023-03-15 | Add ZigZag options. Close #414 | mrfaptastic | |
| CHAIN_BOTTOM_RIGHT_UP_ZZ CHAIN_TOP_RIGHT_DOWN_ZZ | |||
| 2023-03-15 | Add CHAIN_TOP_RIGHT_DOWN_ZZ | mrfaptastic | |
| 2023-03-13 | Update ESP32-HUB75-MatrixPanel-I2S-DMA.cpp | mrfaptastic | |
| 2023-03-13 | Update ESP32-VirtualMatrixPanel-I2S-DMA.h | mrfaptastic | |
| 2023-03-12 | Update ESP32-HUB75-MatrixPanel-I2S-DMA.h | mrfaptastic | |
