Make it easier to run bmp example on Python

This commit is contained in:
Melissa LeBlanc-Williams 2021-03-12 10:13:21 -08:00
parent a0dd880e13
commit 47289da3bf

View file

@ -49,7 +49,7 @@ display = Adafruit_IL0373(
display.rotation = 0 display.rotation = 0
FILENAME = "blinka154mono.bmp" FILENAME = "blinka.bmp"
def read_le(s): def read_le(s):
@ -68,7 +68,7 @@ class BMPError(Exception):
def display_bitmap(epd, filename): # pylint: disable=too-many-locals, too-many-branches def display_bitmap(epd, filename): # pylint: disable=too-many-locals, too-many-branches
try: try:
f = open("/" + filename, "rb") f = open(filename, "rb")
except OSError: except OSError:
print("Couldn't open file") print("Couldn't open file")
return return