Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SPI #13

Draft
wants to merge 5 commits into
base: spi
Choose a base branch
from
Draft

SPI #13

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ZeDMD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
panels: ['64x32x2', '64x64x4', '128x64x2']
panels: ['64x32x2', '64x64x4', '128x64x2', '64x32x2_SPI', '64x64x4_SPI', '128x64x2_SPI' ]

name: ZeDMD ${{ matrix.panels }}

Expand Down
41 changes: 41 additions & 0 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,19 @@ lib_deps =
Adafruit GFX Library
https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-DMA#2.0.7

[env:64x32x2_SPI]
framework = arduino
platform = espressif32
board = upesy_wroom
board_build.partitions = partitions.csv
board_build.filesystem = littlefs
board_build.flash_mode = qio
lib_deps =
Adafruit GFX Library
https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-DMA#2.0.7
build_flags =
-DZEDMD_SPI=1

[env:64x64x4]
framework = arduino
platform = espressif32
Expand All @@ -35,6 +48,20 @@ lib_deps =
build_flags =
-DZEDMD_64_64_4=1

[env:64x64x4_SPI]
framework = arduino
platform = espressif32
board = upesy_wroom
board_build.partitions = partitions.csv
board_build.filesystem = littlefs
board_build.flash_mode = qio
lib_deps =
Adafruit GFX Library
https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-DMA#2.0.7
build_flags =
-DZEDMD_64_64_4=1
-DZEDMD_SPI=1

[env:128x64x2]
framework = arduino
platform = espressif32
Expand All @@ -47,3 +74,17 @@ lib_deps =
https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-DMA#2.0.7
build_flags =
-DZEDMD_128_64_2=1

[env:128x64x2_SPI]
framework = arduino
platform = espressif32
board = upesy_wroom
board_build.partitions = partitions.csv
board_build.filesystem = littlefs
board_build.flash_mode = qio
lib_deps =
Adafruit GFX Library
https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-DMA#2.0.7
build_flags =
-DZEDMD_128_64_2=1
-DZEDMD_SPI=1
Loading