Datasheet

Copy the adafruit_il0373.mpy file from the bundle to the lib folder on your CIRCUITPY drive.
Adafruit_CircuitPython_SSD1608
1.54” Monochrome eInk
Copy the adafruit_ssd1608.mpy file from the bundle to the lib folder on your CIRCUITPY drive.
Adafruit_CircuitPython_SSD1675
2.13” Monochrome eInk
2.13 Monochrome eInk FeatherWing
Copy the adafruit_ssd1675.mpy file from the bundle to the lib folder on your CIRCUITPY drive.
Adafruit_CircuitPython_IL91874
2.7” Tri-Color eInk
Copy the adafruit_il91874.mpy file from the bundle to the lib folder on your CIRCUITPY drive.
Adafruit_CircuitPython_IL0398
4.2” Tri-Color eInk
Copy the adafruit_il0398.mpy file from the bundle to the lib folder on your CIRCUITPY drive.
Usage
To show you how to use the eInk with displayio, we'll show you how to draw a bitmap onto it. First start by
downloading display-ruler.bmp
https://adafru.it/GdJ
https://adafru.it/GdJ
Next copy display-ruler.bmp into the root directory of your CIRCUITPY drive.
In the examples folder for your displayio driver, there should be a test for your display, which will all be similar, but
include specific parameters such as the width and height of the display. In this example, we will examine the 2.9" Tri-
color breakout test. Here is the code in its entirety.
import time
import board
import displayio
# Make sure your display driver is uncommented
import adafruit_il0373
#import adafruit_il91874
#import adafruit_ssd1608
#import adafruit_ssd1675
#import adafruit_il0398
This code is specific to the 2.9" breakout and may not work with other displays! Look at the CircuitPython
Bundle for examples specific to your display.
© Adafruit Industries https://learn.adafruit.com/adafruit-eink-display-breakouts Page 32 of 61