12 lines
245 B
Python
12 lines
245 B
Python
import board
|
|
import terminalio
|
|
from adafruit_display_text import bitmap_label
|
|
|
|
|
|
text = "Hello world"
|
|
text_area = bitmap_label.Label(terminalio.FONT, text=text)
|
|
text_area.x = 10
|
|
text_area.y = 10
|
|
board.DISPLAY.show(text_area)
|
|
while True:
|
|
pass
|