Skip to content

adding_new_example #11

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 1 commit into from
Feb 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,12 @@ Ensure your device works with this simple test.
.. literalinclude:: ../examples/ssd1680_simpletest.py
:caption: examples/ssd1680_simpletest.py
:linenos:

2.13 ePaper Display FeatherWing Simple test
---------------------------------------------

Ensure your 2.13 ePaper Display FeatherWing works with this simple test.

.. literalinclude:: ../examples/ssd1680_2.13_featherwing.py
:caption: examples/ssd1680_2.13_featherwing.py
:linenos:
3 changes: 3 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,14 @@ Table of Contents
.. toctree::
:caption: Tutorials

Adafruit 2.13" eInk Display Breakouts and FeatherWings <https://learn.adafruit.com/adafruit-2-13-eink-display-breakouts-and-featherwings>

.. toctree::
:caption: Related Products

Adafruit 2.13" 250x122 Tri-Color eInk / ePaper Display with SRAM - SSD1680 Driver <https://www.adafruit.com/product/4947>
Adafruit 2.13" HD Tri-Color eInk / ePaper Display FeatherWing <https://www.adafruit.com/product/4814>
Adafruit 2.13" Mono eInk Display FeatherWing <https://www.adafruit.com/product/4195>

.. toctree::
:caption: Other Links
Expand Down
60 changes: 60 additions & 0 deletions examples/ssd1680_2.13_featherwing.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# SPDX-FileCopyrightText: 2017 Scott Shawcroft, written for Adafruit Industries
# SPDX-FileCopyrightText: Copyright (c) 2023 Jose D. Montoya
#
# SPDX-License-Identifier: Unlicense


"""Simple test script for 2.13" 250x122 eInk Display FeatherWing
Supported products:
* 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.D9
epd_dc = board.D10

display_bus = displayio.FourWire(
spi, command=epd_dc, chip_select=epd_cs, baudrate=1000000
)
time.sleep(1)

display = adafruit_ssd1680.SSD1680(
display_bus,
colstart=8,
width=250,
height=122,
highlight_color=0xFF0000,
rotation=270,
)

g = displayio.Group()

with open("/display-ruler.bmp", "rb") as f:
pic = displayio.OnDiskBitmap(f)

t = displayio.TileGrid(
pic, pixel_shader=getattr(pic, "pixel_shader", displayio.ColorConverter())
)

g.append(t)

display.show(g)

display.refresh()

print("refreshed")

time.sleep(120)