circuitpython
Here are 361 public repositories matching this topic...
-
Updated
Nov 23, 2021 - Python
-
Updated
Nov 29, 2021 - Shell
-
Updated
Nov 27, 2021
-
Updated
Mar 9, 2021 - Python
-
Updated
Nov 17, 2021 - Python
-
Updated
Nov 24, 2021 - C
-
Updated
Sep 16, 2021 - C
-
Updated
Nov 23, 2021 - Python
-
Updated
Nov 26, 2021 - Python
-
Updated
Nov 23, 2021 - 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
Nov 19, 2021
-
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
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
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
Jan 8, 2021 - C++
-
Updated
Mar 6, 2021 - Python
-
Updated
May 22, 2021 - Python
-
Updated
Nov 20, 2021 - Python
-
Updated
Nov 6, 2021 - Python
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