Datasheet

That's all there is to drawing simple shapes with eInk displays and CircuitPython!
Tri-Color Bitmap Example
Here's a complete example of how to display a bitmap image on your display. Note that any .bmp image you want to
display must be exactly the size of your display. We will be using the image below on the 1.54" display. Click the
button below to download the image and save it as blinka.bmp on your Raspberry Pi.
https://adafru.it/BTa
https://adafru.it/BTa
Save the following code to your Raspberry Pi as epd_bitmap.py.
import digitalio
import busio
import board
from adafruit_epd.epd import Adafruit_EPD
from adafruit_epd.il0373 import Adafruit_IL0373
from adafruit_epd.il91874 import Adafruit_IL91874 # pylint: disable=unused-import
from adafruit_epd.il0398 import Adafruit_IL0398 # pylint: disable=unused-import
from adafruit_epd.ssd1608 import Adafruit_SSD1608 # pylint: disable=unused-import
from adafruit_epd.ssd1675 import Adafruit_SSD1675 # pylint: disable=unused-import
© Adafruit Industries https://learn.adafruit.com/adafruit-eink-display-breakouts Page 41 of 61