Created
January 11, 2025 06:00
-
-
Save schappim/8903ee29f2a5114ebd3630d865c61ac4 to your computer and use it in GitHub Desktop.
Turn the Raspberry Pi Pico WH LED on.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import machine | |
led = machine.Pin("LED", machine.Pin.OUT) | |
led.off() | |
led.on() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment