pyblinkpico-text

The BlinkPico text library


Keywords
education, matrix_shield, HT16K33, RPI, Pico
License
MIT
Install
pip install pyblinkpico-text==0.1.1

Documentation

BlinkPico-Text

This library works in combination with the 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 ,.

Example:

from pyblinkpico_text import *

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