circuitpython
Here are 369 public repositories matching this topic...
-
Updated
Dec 22, 2021 - Python
-
Updated
Dec 24, 2021 - Shell
-
Updated
Dec 3, 2021
-
Updated
Mar 9, 2021 - Python
-
Updated
Dec 22, 2021 - Python
-
Updated
Sep 16, 2021 - C
-
Updated
Dec 17, 2021 - C
-
Updated
Nov 23, 2021 - Python
-
Updated
Dec 17, 2021 - Python
-
Updated
Nov 23, 2021 - Python
-
Updated
Dec 6, 2021
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
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
Aug 20, 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:
passOnce imported the typing annotations for the argum
-
Updated
Jan 8, 2021 - C++
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
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
Nov 20, 2021 - Python
-
Updated
Dec 23, 2021 - 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."
CircuitPython version
Code/REPL
Behavior