10 lines
194 B
Python
10 lines
194 B
Python
# This program was created in Arduino Lab for MicroPython
|
|
|
|
import machine
|
|
import time
|
|
led = machine.Pin(15, machine.Pin.OUT)
|
|
while True:
|
|
led.value(1)
|
|
time.sleep(1)
|
|
led.value(0)
|
|
time.sleep(1) |