Skip to content

Fixed TFT Gizmo to allow passing parameters #6

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
Nov 21, 2019
Merged
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
18 changes: 9 additions & 9 deletions adafruit_gizmo/tft_gizmo.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
Helper for the `TFT Gizmo <https://www.adafruit.com/product/4367>`_.


* Author(s): Carter Nelson
* Author(s): Carter Nelson, Melissa LeBlanc-Williams
"""

__version__ = "0.0.0-auto.0"
Expand All @@ -44,16 +44,16 @@ def __init__(self, *, spi=None, cs=None, dc=None, backlight=None):
displayio.release_displays()
if spi is None:
import busio
self._spi = busio.SPI(board.SCL, MOSI=board.SDA)
spi = busio.SPI(board.SCL, MOSI=board.SDA)
if cs is None:
self._cs = board.RX
cs = board.RX
if dc is None:
self._dc = board.TX
dc = board.TX
if backlight is None:
self._backlight = board.A3
self._display_bus = displayio.FourWire(self._spi,
command=self._dc,
chip_select=self._cs)
backlight = board.A3
self._display_bus = displayio.FourWire(spi,
command=dc,
chip_select=cs)
super().__init__(self._display_bus, width=240, height=240,
rowstart=80, backlight_pin=self._backlight,
rowstart=80, backlight_pin=backlight,
rotation=180)