From 69c5e089aa3b5f6173a9d4fd5f69e39d2f06c044 Mon Sep 17 00:00:00 2001 From: Liz <23021834+BlitzCityDIY@users.noreply.github.com> Date: Mon, 17 Nov 2025 14:19:59 -0500 Subject: [PATCH 1/2] Fix BLACK color definition for eInk display --- Bare_eInk_Guide/400x300_monochrome_python/code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bare_eInk_Guide/400x300_monochrome_python/code.py b/Bare_eInk_Guide/400x300_monochrome_python/code.py index 40e489a93..b15c6e4f5 100644 --- a/Bare_eInk_Guide/400x300_monochrome_python/code.py +++ b/Bare_eInk_Guide/400x300_monochrome_python/code.py @@ -16,7 +16,7 @@ # First define some color constants WHITE = (0xFF, 0xFF, 0xFF) -BLACK = (0xFF, 0x00, 0x00) +BLACK = (0x00, 0x00, 0x00) # Next define some constants to allow easy resizing of shapes and colors BORDER = 20 From 3fa2c77d52bf346af453d87bd36c6f89f4b1f814 Mon Sep 17 00:00:00 2001 From: Liz Date: Mon, 17 Nov 2025 14:23:47 -0500 Subject: [PATCH 2/2] update BLACK --- Bare_eInk_Guide/648x480_monochrome_python/code.py | 2 +- Bare_eInk_Guide/800x480_monochrome_python/code.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Bare_eInk_Guide/648x480_monochrome_python/code.py b/Bare_eInk_Guide/648x480_monochrome_python/code.py index 4767a26a9..d49e8fdb2 100644 --- a/Bare_eInk_Guide/648x480_monochrome_python/code.py +++ b/Bare_eInk_Guide/648x480_monochrome_python/code.py @@ -16,7 +16,7 @@ # First define some color constants WHITE = (0xFF, 0xFF, 0xFF) -BLACK = (0xFF, 0x00, 0x00) +BLACK = (0x00, 0x00, 0x00) # Next define some constants to allow easy resizing of shapes and colors BORDER = 20 diff --git a/Bare_eInk_Guide/800x480_monochrome_python/code.py b/Bare_eInk_Guide/800x480_monochrome_python/code.py index 3d44e1cb2..339a9c5da 100644 --- a/Bare_eInk_Guide/800x480_monochrome_python/code.py +++ b/Bare_eInk_Guide/800x480_monochrome_python/code.py @@ -16,7 +16,7 @@ # First define some color constants WHITE = (0xFF, 0xFF, 0xFF) -BLACK = (0xFF, 0x00, 0x00) +BLACK = (0x00, 0x00, 0x00) # Next define some constants to allow easy resizing of shapes and colors BORDER = 20