Created
January 11, 2025 18:09
-
-
Save gallaugher/612fc2651990b5421292ff8b9262824d to your computer and use it in GitHub Desktop.
blink.py
This file contains hidden or 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 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