Add Seeed reTerminal E1004 panel support - #32
Open
limengdu wants to merge 6 commits into
Open
Conversation
New panel EP133A_SPECTRA_1200x1600 (1200x1600, BBEP_SPLIT_BUFFER | BBEP_7COLOR) with its own init sequence and a BBEP_T133A01 flag for the controller's quirks: a CCSET (0xE0,0x01) before each data frame and a PON/DRF(0x01)/POF refresh on both controllers. initIO now records the primary CS as controller bitbank2#1 so dual-CS setup works regardless of setCS2() call order.
PlatformIO sketch that brings up the EP133A_SPECTRA_1200x1600 panel manually (power enable + setCS2 + initIO) and draws full-width colour bands plus a seam-crossing box to verify the dual-chip stitching, colours and refresh.
Add a .gitignore for the example's .pio/ build directory and remove the accidentally-committed build output.
|
Hi @bitbank2 👋 |
|
I also would appreciate if this PR could be looked t because it blocks me from using this Screen in OpenDisplay without having to fork bb_epaper. Since it is also similar to #31 it would also be important how the CS2 pin should be handled going forward. |
TehesFR
added a commit
to TehesFR/Firmware
that referenced
this pull request
Jul 15, 2026
Adds an esp32-s3-E1004 env and runtime support for the dual-controller T133A01/EL133UF1 1200x1600 Spectra 6 panel (panel_ic_type 0x0042). The panel is driven through bb_epaper's EP133A_SPECTRA_1200x1600 (pinned to the bitbank2/bb_epaper#32 commit until it is merged upstream). Full frames are collected in a 937.5 KB 4bpp PSRAM framebuffer and sent with bbepWritePlane(), which splits the frame across the two chip selects; the row-streaming write paths cannot address the second controller. CS2 comes from the display block's spare cs_pin_2 field (default GPIO2) and is parked/driven with the other panel lines across power state changes. All E1004-specific code is gated on the BBEP_T133A01 define, so envs building against upstream bb_epaper are unchanged.
TehesFR
added a commit
to TehesFR/Firmware
that referenced
this pull request
Jul 15, 2026
Adds an esp32-s3-E1004 env and runtime support for the dual-controller T133A01/EL133UF1 1200x1600 Spectra 6 panel (panel_ic_type 0x0042). The panel is driven through bb_epaper's EP133A_SPECTRA_1200x1600 (pinned to the bitbank2/bb_epaper#32 commit until it is merged upstream). Full frames are collected in a 937.5 KB 4bpp PSRAM framebuffer and sent with bbepWritePlane(), which splits the frame across the two chip selects; the row-streaming write paths cannot address the second controller. CS2 comes from the display block's spare cs_pin_2 field (default GPIO2) and is parked/driven with the other panel lines across power state changes. All E1004-specific code is gated on the BBEP_T133A01 define, so envs building against upstream bb_epaper are unchanged.
TehesFR
added a commit
to TehesFR/Firmware
that referenced
this pull request
Jul 15, 2026
Adds an esp32-s3-E1004 env and runtime support for the dual-controller T133A01/EL133UF1 1200x1600 Spectra 6 panel (panel_ic_type 0x0042). The panel is driven through bb_epaper's EP133A_SPECTRA_1200x1600 (pinned to the bitbank2/bb_epaper#32 commit until it is merged upstream). Full frames are collected in a 937.5 KB 4bpp PSRAM framebuffer and sent with bbepWritePlane(), which splits the frame across the two chip selects; the row-streaming write paths cannot address the second controller. CS2 comes from the display block's spare cs_pin_2 field (default GPIO2) and is parked/driven with the other panel lines across power state changes. All E1004-specific code is gated on the BBEP_T133A01 define, so envs building against upstream bb_epaper are unchanged.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Validation
examples/e1004_testwith PlatformIO.Notes