Skip to content

Commit

Permalink
Image filename is changed by actions, so added a note about it
Browse files Browse the repository at this point in the history
  • Loading branch information
makermelissa committed Mar 7, 2025
1 parent 4dbcb10 commit c5fea2a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/ssd1680_simpletest.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@

g = displayio.Group()

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

0 comments on commit c5fea2a

Please sign in to comment.