Skip to content
#

oled-display

Here are 151 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

documentation good first issue

Improve this page

Add a description, image, and links to the oled-display 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 oled-display topic, visit your repo's landing page and select "manage topics."

Learn more