← Back
Circuit Diagram
Circuit Build
from machine import Pin from utime import sleep led = Pin(2, Pin.OUT) while True: led.value(1) sleep(1) led.value(0) sleep(1)
INSERT