We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adafruit CircuitPython 9.1.0-rc.0 on 2024-07-09; Adafruit Metro RP2040 with rp2040 >>> import board, busio >>> u = busio.UART(board.SDA, board.SCL) >>> u.deinit() >>> u = busio.UART(board.SDA, board.SCL) >>> u.deinit() >>> u = busio.UART(board.SDA, board.A0) Traceback (most recent call last): File "<stdin>", line 1, in <module> ValueError: Invalid pins >>> u = busio.UART(board.SDA, board.A1) Traceback (most recent call last): File "<stdin>", line 1, in <module> ValueError: SDA in use
SDA should not be in use.
User in discord encountered this when trying to run the Where's My UART code.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
SDA should not be in use.
User in discord encountered this when trying to run the Where's My UART code.
The text was updated successfully, but these errors were encountered: