Files
arduino/_Lab_Micropython/main.py
2025-10-12 09:13:56 +02:00

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)