Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Bare_eInk_Guide/400x300_monochrome_python/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Bare_eInk_Guide/648x480_monochrome_python/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Bare_eInk_Guide/800x480_monochrome_python/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down