9 lines
125 B
Python
9 lines
125 B
Python
import time
|
|
from machine import Pin
|
|
|
|
onboard_led = Pin(25, Pin.OUT)
|
|
onboard_led.value(1)
|
|
|
|
time.sleep(1)
|
|
|
|
onboard_led.value(0) |