Datasheet
pic = displayio.OnDiskBitmap(f)
# Create a Tilegrid with the bitmap and put in the displayio group
t = displayio.TileGrid(pic, pixel_shader=displayio.ColorConverter())
g.append(t)
In the next line we tell the display to show everything in the group.
display.show(g)
Finally, we tell the display to refresh so that everything in memory is written out to the display.
display.refresh()
print("refreshed")
Your display will look something like this:
After that we tell it to pause for 180 seconds or three minutes before continuing where your display would show the
REPL.
time.sleep(180)
© Adafruit Industries https://learn.adafruit.com/adafruit-eink-display-breakouts Page 36 of 61










