-
Notifications
You must be signed in to change notification settings - Fork 9
Add an example for the 2.13 inch eink bonnet #20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 3 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
2db643c
Add an example for the 2.13 inch eink bonnet
makermelissa 7b7b2f1
Run pre-commit
makermelissa e3f28b4
Remove obsolete code
makermelissa 4c811ef
Merge branch 'main' of https://github.com/adafruit/Adafruit_CircuitPy…
makermelissa 8e63ed5
Drop colstart from examples when it matches new default
makermelissa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# SPDX-FileCopyrightText: 2017 Scott Shawcroft, written for Adafruit Industries | ||
# SPDX-FileCopyrightText: Copyright (c) 2021 Melissa LeBlanc-Williams for Adafruit Industries | ||
# | ||
# SPDX-License-Identifier: Unlicense | ||
|
||
"""Simple test script for 2.13" 250x122 tri-color display. | ||
Supported products: | ||
* Adafruit 2.13" Tri-Color eInk Display Breakout | ||
* https://www.adafruit.com/product/4947 | ||
* Adafruit 2.13" Tri-Color eInk Display FeatherWing | ||
* https://www.adafruit.com/product/4814 | ||
* Adafruit 2.13" Mono eInk Display FeatherWing | ||
* https://www.adafruit.com/product/4195 | ||
|
||
|
||
""" | ||
|
||
import time | ||
import board | ||
import displayio | ||
import adafruit_ssd1680 | ||
|
||
displayio.release_displays() | ||
|
||
# This pinout works on a Metro M4 and may need to be altered for other boards. | ||
spi = board.SPI() # Uses SCK and MOSI | ||
epd_cs = board.CE0 | ||
epd_dc = board.D22 | ||
epd_reset = board.D27 # Set to None for FeatherWing | ||
epd_busy = board.D17 # Set to None for FeatherWing | ||
|
||
display_bus = displayio.FourWire( | ||
spi, command=epd_dc, chip_select=epd_cs, reset=epd_reset, baudrate=1000000 | ||
) | ||
time.sleep(1) | ||
|
||
# For issues with display not updating top/bottom rows correctly set colstart to 8 | ||
display = adafruit_ssd1680.SSD1680( | ||
display_bus, | ||
colstart=8, | ||
width=250, | ||
height=122, | ||
busy_pin=epd_busy, | ||
highlight_color=0xFF0000, | ||
rotation=90, | ||
) | ||
|
||
|
||
g = displayio.Group() | ||
|
||
with open("display-ruler.bmp", "rb") as f: | ||
pic = displayio.OnDiskBitmap(f) | ||
t = displayio.TileGrid(pic, pixel_shader=pic.pixel_shader) | ||
g.append(t) | ||
|
||
display.show(g) | ||
|
||
display.refresh() | ||
|
||
print("refreshed") | ||
|
||
time.sleep(display.time_to_refresh + 5) | ||
# Always refresh a little longer. It's not a problem to refresh | ||
# a few seconds more, but it's terrible to refresh too early | ||
# (the display will throw an exception when if the refresh | ||
# is too soon) | ||
print("waited correct time") | ||
|
||
|
||
# Keep the display the same | ||
while True: | ||
time.sleep(10) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.