circuitpython
Here are 401 public repositories matching this topic...
-
Updated
Mar 17, 2022 - Python
-
Updated
Mar 17, 2022 - Shell
-
Updated
Mar 17, 2022 - Python
-
Updated
Mar 3, 2022
-
Updated
Mar 9, 2021 - Python
-
Updated
Jan 28, 2022 - C
-
Updated
Mar 10, 2022 - C
-
Updated
Feb 15, 2022 - Python
-
Updated
Mar 15, 2022 - Python
-
Updated
Feb 15, 2022 - Python
-
Updated
Mar 18, 2022 - Python
-
Updated
Mar 17, 2022 - Python
Libraries List Page
The Adafruit_CircuitPython_Bundle has a nice list of all the libraries.
- The community bundle should have a similiar page.
- Add a link to that page from Awesome CP - Code
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:
passOnce imported the typing annotations for the argum
-
Updated
Feb 27, 2021 - Python
-
Updated
Feb 22, 2022 - Python
-
Updated
Jan 12, 2022
-
Updated
Feb 15, 2022 - Python
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:
passOnce imported the typing annotations for the argum
-
Updated
Jan 8, 2021 - C++
-
Updated
Aug 1, 2021 - Python
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:
passOnce imported the typing annotations for the argum
-
Updated
Feb 15, 2019 - Python
-
Updated
May 22, 2021 - Python
-
Updated
Mar 6, 2021 - Python
-
Updated
Mar 16, 2022 - C#
Improve this page
Add a description, image, and links to the circuitpython topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the circuitpython topic, visit your repo's landing page and select "manage topics."
TileGrid.setitem enforces, but does not document, a limitation to 255 tile elements.
This limitation is not great for my needs, but the failure to document what's going on, or provide a more informative error message, led to a merry hour of debugging. TileGrid also doesn't allow