Skip to content

Commit 69c5e08

Browse files
authored
Fix BLACK color definition for eInk display
1 parent 7c5f4f8 commit 69c5e08

File tree

1 file changed

+1
-1
lines changed
  • Bare_eInk_Guide/400x300_monochrome_python

1 file changed

+1
-1
lines changed

Bare_eInk_Guide/400x300_monochrome_python/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
# First define some color constants
1818
WHITE = (0xFF, 0xFF, 0xFF)
19-
BLACK = (0xFF, 0x00, 0x00)
19+
BLACK = (0x00, 0x00, 0x00)
2020

2121
# Next define some constants to allow easy resizing of shapes and colors
2222
BORDER = 20

0 commit comments

Comments
 (0)