Skip to content

Instantly share code, notes, and snippets.

@gallaugher
Created January 11, 2025 18:09
Show Gist options
  • Save gallaugher/612fc2651990b5421292ff8b9262824d to your computer and use it in GitHub Desktop.
Save gallaugher/612fc2651990b5421292ff8b9262824d to your computer and use it in GitHub Desktop.
blink.py
import board, digitalio
led = digitalio.DigitalInOut(board.LED)
led.direction = digitalio.Direction.OUTPUT
print("CircuitPython is Awesome!")
while True:
led.value = True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment