We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f401b7 commit cfa4f61Copy full SHA for cfa4f61
CircuitPython_Essentials/Pin_Map_Script/code.py
@@ -12,7 +12,7 @@
12
13
board_pins = []
14
for pin in dir(microcontroller.pin):
15
- if (isinstance(getattr(microcontroller.pin, pin), microcontroller.Pin) or
+ if (isinstance(getattr(microcontroller.pin, pin), microcontroller.Pin) or
16
(cyw43 and isinstance(getattr(microcontroller.pin, pin), cyw43.CywPin))):
17
pins = []
18
# uncomment to show microcontroller pins
0 commit comments