snipplets.dev/code/MicroPython/blink.py

10 lines
115 B
Python
Raw Normal View History

2024-05-16 20:38:19 +03:00
import machine
import time
led = machine.Pin(15, machine.Pin.OUT)
led.on()
time.sleep(1)
led.off()
time.sleep(1)