Skip to content

Commit

Permalink
added 256x64_7bit
Browse files Browse the repository at this point in the history
  • Loading branch information
mkalkbrenner committed Dec 9, 2023
1 parent 750d95d commit 7e890cf
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ZeDMD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
needs: [ version ]
strategy:
matrix:
panels: ['128x32', '256x64']
panels: ['128x32', '256x64', '256x64_7bit']

name: ZeDMD ${{ matrix.panels }}

Expand Down Expand Up @@ -89,6 +89,9 @@ jobs:
cd ../ZeDMD-256x64
echo "${{ needs.version.outputs.tag }}" > version.txt
zip ../ZeDMD-256x64.zip ZeDMD.bin version.txt
cd ../ZeDMD-256x64_7bit
echo "${{ needs.version.outputs.tag }}" > version.txt
zip ../ZeDMD-256x64_7bit.zip ZeDMD.bin version.txt
cd ..
- name: Release
uses: softprops/action-gh-release@v1
Expand All @@ -98,3 +101,4 @@ jobs:
files: |
ZeDMD-128x32.zip
ZeDMD-256x64.zip
ZeDMD-256x64_7bit.zip
21 changes: 21 additions & 0 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,27 @@ build_flags =
-DMINIZ_NO_ARCHIVE_WRITING_APIS=1
-DMINIZ_NO_ZLIB_COMPATIBLE_NAMES=1

[env:256x64_7bit]
framework = arduino
platform = espressif32
board = esp32dev
board_build.partitions = partitions.csv
board_build.filesystem = littlefs
board_build.flash_mode = qio
lib_deps =
https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-DMA#3.0.9
thomasfredericks/Bounce2
build_flags =
-DNO_GFX=1
-DZEDMD_128_64_2=1
-DPIXEL_COLOR_DEPTH_BITS=7
-DMINIZ_NO_STDIO=1
-DMINIZ_NO_TIME=1
-DMINIZ_NO_DEFLATE_APIS=1
-DMINIZ_NO_ARCHIVE_APIS=1
-DMINIZ_NO_ARCHIVE_WRITING_APIS=1
-DMINIZ_NO_ZLIB_COMPATIBLE_NAMES=1

[env:128x32_wifi]
framework = arduino
platform = https://github.com/tasmota/platform-espressif32/releases/download/2023.06.01/platform-espressif32.zip
Expand Down

0 comments on commit 7e890cf

Please sign in to comment.