14 lines
190 B
Python
14 lines
190 B
Python
import time
|
|
|
|
from machine import Pin
|
|
|
|
led_pin = Pin(32, Pin.OUT)
|
|
|
|
|
|
def boostrap():
|
|
while True:
|
|
led_pin.on()
|
|
time.sleep(0.5)
|
|
led_pin.off()
|
|
time.sleep(0.5)
|