Last active
August 21, 2021 11:33
-
-
Save tm-sanjay/38833c13f99d337262f51b7e96de0a59 to your computer and use it in GitHub Desktop.
program to blink led using pi pico (pyhon)
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
from machine import Pin | |
from time import sleep | |
led = Pin(25,Pin.OUT) | |
while True: | |
led.toggle() | |
sleep(1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
name change