Skip to content

Commit 03b18bf

Browse files
committed
add 1.5" example
1 parent df3b5e0 commit 03b18bf

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

examples/epd_simpletest.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
from adafruit_epd.il0373 import Adafruit_IL0373
66
from adafruit_epd.il91874 import Adafruit_IL91874 # pylint: disable=unused-import
77
from adafruit_epd.il0398 import Adafruit_IL0398 # pylint: disable=unused-import
8+
from adafruit_epd.ssd1608 import Adafruit_SSD1608 # pylint: disable=unused-import
89

910
# create the spi device and pins we will need
1011
spi = busio.SPI(board.SCK, MOSI=board.MOSI, MISO=board.MISO)
@@ -16,6 +17,7 @@
1617

1718
# give them all to our driver
1819
print("Creating display")
20+
#display = Adafruit_SSD1608(200, 200, spi, # 1.54" HD mono display
1921
#display = Adafruit_IL91874(176, 264, spi, # 2.7" Tri-color display
2022
#display = Adafruit_IL0373(152, 152, spi, # 1.54" Tri-color display
2123
#display = Adafruit_IL0373(128, 296, spi, # 2.9" Tri-color display

0 commit comments

Comments
 (0)