Skip to content

eteq/Adafruit_CircuitPython_Display_Text

This branch is 353 commits behind adafruit/Adafruit_CircuitPython_Display_Text:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Oct 18, 2020
6513a95 · Oct 18, 2020
Apr 7, 2020
Oct 18, 2020
Aug 28, 2020
Aug 22, 2020
Aug 3, 2020
Jan 1, 2020
Mar 9, 2020
Jan 11, 2019
Mar 15, 2020
Jan 11, 2019
Jul 8, 2020
Jun 23, 2020
Jun 26, 2020

Repository files navigation

Introduction

Documentation Status Discord Build Status

Displays text using CircuitPython's displayio.

Dependencies

This driver depends on:

Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle.

Usage Example

For a board with a built-in display.

import board
import terminalio
from adafruit_display_text import label


text = "Hello world"
text_area = label.Label(terminalio.FONT, text=text)
text_area.x = 10
text_area.y = 10
board.DISPLAY.show(text_area)
while True:
    pass

Contributing

Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.

Documentation

For information on building library documentation, please check out this guide.

About

Library to display text using displayio

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%