Skip to content

Commit c0a73db

Browse files
authored
Merge pull request #3166 from adafruit/BlitzCityDIY-patch-1
Fix BLACK color definition for eInk display
2 parents 7c5f4f8 + 3fa2c77 commit c0a73db

File tree

3 files changed

+3
-3
lines changed
  • Bare_eInk_Guide

3 files changed

+3
-3
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

Bare_eInk_Guide/648x480_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

Bare_eInk_Guide/800x480_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)