Skip to content

Commit

Permalink
Adding new supported display ED052TC4
Browse files Browse the repository at this point in the history
  • Loading branch information
martinberlin committed Dec 17, 2024
1 parent cbdaaa7 commit df958d9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ Displays
|ED047TC1|4.7"|960 x 540<br>234 PPI|yes, tested|40-pin|40|LILYGO 4.7" EPD|Supported only by 4.7" e-paper board by LILYGO
| ED050SC5 | 5" | 600 x 800<br>200 PPI | yes, tested | THD0510-33CL-GF | 33 | v5 |
| ED050SC3 | 5" | 600 x 800<br>200 PPI | yes (should work) | THD0510-33CL-GF | 33 | v5 |
| ED052TC4 | 5.2" | 1280 x 780<br>??? PPI | yes (should work) | WP27D-P050VA3 | 50 | v5 |
| ED133UT2 | 13.3" | 1600 x 1200<br>150 PPI | yes, tested | adapter board | 39 | v2 | Adapter Board required, also PENG133D
| ED060XC3 | 6" | 758 x 1024<br>212 PPI | yes, tested | THD0515-34CL-SN | 34 | v5 | Cheapest, good contrast and resolution
| ED060XD4 | 6" | 758 x 1024<br>212 PPI | yes, tested | THD0515-34CL-SN | 34 | v5 |
Expand Down
10 changes: 10 additions & 0 deletions src/displays.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,13 @@ const EpdDisplay_t ED078KC1 = {
.default_waveform = &epdiy_ED047TC2,
.display_type = DISPLAY_TYPE_GENERIC,
};

// Attention is by default horizontal rows mirrored
const EpdDisplay_t ED052TC4 = {
.width = 1280,
.height = 720,
.bus_width = 8,
.bus_speed = 22,
.default_waveform = &epdiy_ED097TC2,
.display_type = DISPLAY_TYPE_ED097TC2
};
1 change: 1 addition & 0 deletions src/epd_display.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ extern const EpdDisplay_t ED133UT2;
extern const EpdDisplay_t ED047TC1;
extern const EpdDisplay_t ED047TC2;
extern const EpdDisplay_t ED078KC1;
extern const EpdDisplay_t ED052TC4;

0 comments on commit df958d9

Please sign in to comment.