Skip to content

Instantly share code, notes, and snippets.

@schappim
Created January 11, 2025 06:00
Show Gist options
  • Save schappim/8903ee29f2a5114ebd3630d865c61ac4 to your computer and use it in GitHub Desktop.
Save schappim/8903ee29f2a5114ebd3630d865c61ac4 to your computer and use it in GitHub Desktop.
Turn the Raspberry Pi Pico WH LED on.
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