Skip to content

Commit 3fa2c77

Browse files
committed
update BLACK
1 parent 69c5e08 commit 3fa2c77

File tree

2 files changed

+2
-2
lines changed
  • Bare_eInk_Guide

2 files changed

+2
-2
lines changed

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)