Skip to content
#

lcd

Here are 656 public repositories matching this topic...

FoamyGuy
FoamyGuy commented Sep 27, 2021

There are missing type annotations for some functions in this library.

The typing module does not exist on CircuitPython devices so the import needs to be wrapped in try/except to catch the error for missing import. There is an example of how that is done here:

try:
    from typing import List, Tuple
except ImportError:
    pass

Once imported the typing annotations for the argum

Improve this page

Add a description, image, and links to the lcd topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the lcd topic, visit your repo's landing page and select "manage topics."

Learn more