You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import board
from digitalio import DigitalInOut, Direction, Pull
led = DigitalInOut(board.D13)
led.direction = Direction.OUTPUT
while True:
led.value = not led.value
then soft reset or save the file, you get a
main.py output:
Traceback (most recent call last):
File "main.py", line 4, in
ValueError: Pin PA21 in use
The text was updated successfully, but these errors were encountered:
run this code
then soft reset or save the file, you get a
The text was updated successfully, but these errors were encountered: