Skip to content

ID220/BlinkPico-Text

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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')