We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f297762 commit 5ec1c88Copy full SHA for 5ec1c88
README.rst
@@ -36,11 +36,13 @@ For a board with a built-in display.
36
import terminalio
37
from adafruit_display_text import label
38
39
+
40
text = "Hello world"
41
text_area = label.Label(terminalio.FONT, text=text)
42
text_area.x = 10
43
text_area.y = 10
- board.DISPLAY.show(text_area)
44
+ while True:
45
+ board.DISPLAY.show(text_area)
46
47
48
Contributing
examples/display_text_simpletest.py
@@ -0,0 +1,11 @@
1
+import board
2
+import terminalio
3
+from adafruit_display_text import label
4
5
6
+text = "Hello world"
7
+text_area = label.Label(terminalio.FONT, text=text)
8
+text_area.x = 10
9
+text_area.y = 10
10
+while True:
11
0 commit comments