Skip to content

Commit c5fea2a

Browse files
committed
Image filename is changed by actions, so added a note about it
1 parent 4dbcb10 commit c5fea2a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/ssd1680_simpletest.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@
5050

5151
g = displayio.Group()
5252

53-
with open("/display_ruler.bmp", "rb") as f:
53+
# Note: Check the name of the file. Sometimes the dash is changed to an underscore
54+
with open("/display-ruler.bmp", "rb") as f:
5455
pic = displayio.OnDiskBitmap(f)
5556
t = displayio.TileGrid(pic, pixel_shader=pic.pixel_shader)
5657
g.append(t)

0 commit comments

Comments
 (0)