Metadata-Version: 2.1
Name: pyblinkpico-text
Version: 0.1.0
Summary: The BlinkPico text library
Home-page: https://github.com/ID220/BlinkPico-Text
Author: Nishant Nepal & Andrea Bianchi
Author-email: andrea@kaist.ac.kr
License: MIT
Keywords: education,matrix_shield,HT16K33,RPI Pico
Platform: UNKNOWN
Classifier: Intended Audience :: Education
Classifier: Programming Language :: Python :: Implementation :: MicroPython
Description-Content-Type: text/markdown
License-File: LICENSE

# BlinkPico-Text

This library works in combination with the [BlinkPico](https://github.com/ID220/BlinkPico) library and it allows to show on the display either a single character or a scrolling string.

Available characters are the alphabet letters `a-z` / `A-Z`, digits `0-9`, space, `_`, `.`, `,`, and `⬜️` ("block").

Example:

```python
from pyblinkpico_text import *

character_disp = character()
# A single character
character_disp.show('a')
# Scroll
character_disp.scroll('Hello world')
```


