Add the following snippet to your HTML:<iframe frameborder='0' height='385' scrolling='no' src='https://www.hackster.io/433886/binking-an-led-507f85/embed' width='350'></iframe>
Binking an LED using PICO
Read up about this project on
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)
Please log in or sign up to comment.
Comments
Please log in or sign up to comment.