Add the following snippet to your HTML:
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)
Comments