diff options
| author | Scott Shawcroft <scott@adafruit.com> | 2019-08-27 10:06:14 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-27 10:06:14 -0700 |
| commit | 42956a62a3f6fb60ca37f669dce5cf865a1bed5f (patch) | |
| tree | 2c2152d7822eb7088d0b626743f7d9577bdae004 /tools | |
| parent | 1d973a08038148ce20aaa43863721df6328318b7 (diff) | |
| parent | bea77c651afd919e6cb87927341714adbddb939c (diff) | |
Merge pull request #2085 from tannewt/epd
Rework display refresh, add M4SK and add ePaper support
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/gen_display_resources.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/gen_display_resources.py b/tools/gen_display_resources.py index 0f6b9014b..65600a195 100644 --- a/tools/gen_display_resources.py +++ b/tools/gen_display_resources.py @@ -102,12 +102,14 @@ _displayio_color_t terminal_colors[2] = { { .rgb888 = 0x000000, .rgb565 = 0x0000, - .luma = 0x00 + .luma = 0x00, + .chroma = 0 }, { .rgb888 = 0xffffff, .rgb565 = 0xffff, - .luma = 0xff + .luma = 0xff, + .chroma = 0 }, }; |
