Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
KRIVANJADIYables
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

KRIVANJA
37 projects • 52 followers
www.krivanja.dev
Contact
DIYables
0 projects • 86 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.