7 lines
97 B
Python
7 lines
97 B
Python
import utime
|
|
from picozero import pico_led
|
|
|
|
while True:
|
|
pico_led.toggle()
|
|
utime.sleep(1)
|