Created
July 13, 2023 23:38
-
-
Save toxicantidote/65942c0d053f8f78831138fe766b8f73 to your computer and use it in GitHub Desktop.
ST7735S display test - CircuitPython (ESP32)
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
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries | |
# SPDX-License-Identifier: MIT | |
""" | |
This test will initialize the display using displayio and draw a solid green | |
background, a smaller purple rectangle, and some yellow text. | |
""" | |
import board | |
import terminalio | |
import displayio | |
import busio | |
from adafruit_display_text import label | |
from adafruit_st7735r import ST7735R | |
# Release any resources currently in use for the displays | |
displayio.release_displays() | |
#spi = board.SPI() | |
spi = busio.SPI(board.D18, MOSI=board.D23) | |
tft_cs = board.D5 | |
tft_dc = board.D2 | |
display_bus = displayio.FourWire( | |
spi, command=tft_dc, chip_select=tft_cs, reset=board.D4 | |
) | |
display = ST7735R(display_bus, width=160, height=128, rotation=90, bgr=True) | |
# Make the display context | |
splash = displayio.Group() | |
display.show(splash) | |
color_bitmap = displayio.Bitmap(160, 128, 1) | |
color_palette = displayio.Palette(1) | |
color_palette[0] = 0x00FF00 # Bright Green | |
bg_sprite = displayio.TileGrid(color_bitmap, pixel_shader=color_palette, x=0, y=0) | |
splash.append(bg_sprite) | |
# Draw a smaller inner rectangle | |
inner_bitmap = displayio.Bitmap(150, 118, 1) | |
inner_palette = displayio.Palette(1) | |
inner_palette[0] = 0xAA0088 # Purple | |
inner_sprite = displayio.TileGrid(inner_bitmap, pixel_shader=inner_palette, x=5, y=5) | |
splash.append(inner_sprite) | |
# Draw a label | |
text_group = displayio.Group(scale=2, x=11, y=64) | |
text = "Hello World!" | |
text_area = label.Label(terminalio.FONT, text=text, color=0xFFFF00) | |
text_group.append(text_area) # Subgroup for text scaling | |
splash.append(text_group) | |
while True: | |
pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment