SBRDIYables
Published © CC BY

Binking an LED

Binking an LED using PICO

BeginnerProtip30 minutes96
Binking an LED

Things used in this project

Story

Read more

Schematics

Blinking an LED

Code

Blinking an LED

MicroPython
from machine import Pin
import time

led = Pin(15, Pin.OUT)

while True:
    led.value(1)
    time.sleep(0.5)
    led.value(0)
    time.sleep(0.5)

Blinking an LED

Credits

SBR
37 projects • 52 followers
Mechanical Engineer
Contact
DIYables
0 projects • 88 followers
I would like to invite you to join and add your projects to DIYables platform https://www.hackster.io/diyables
Contact

Comments

Please log in or sign up to comment.