8000
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.
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 8.0.0-beta.0-65-g5781bd318 on 2022-09-22; Raspberry Pi Pico W with rp2040
Adafruit CircuitPython 8.0.0-beta.0-65-g5781bd318 on 2022-09-22; Raspberry Pi Pico W with rp2040 >>> >>> import board >>> import digitalio >>> >>> led = digitalio.DigitalInOut(board.LED) >>> led.switch_to_output(False) >>> >>> led.value False >>> led.value = True >>> led.value False >>> led.value = not led.value >>> led.value False >>> led.value = not led.value >>> led.value False
Like #3353, but for Pico W.
Can't read the output value of board.LED.
board.LED
No response
The text was updated successfully, but these errors were encountered:
Enable reading back value of cyw43 pin
510bd11
Now, `led.value = not led.value` works as a way to toggle the LED state. Closes: adafruit#6959
Successfully merging a pull request may close this issue.
CircuitPython version
Code/REPL
Behavior
Like #3353, but for Pico W.
Can't read the output value of
board.LED
.Description
No response
Additional information
No response
The text was updated successfully, but these errors were encountered: