First init.

This commit is contained in:
2025-10-12 09:13:56 +02:00
commit 1548aeaf9b
458 changed files with 118808 additions and 0 deletions

10
_Lab_Micropython/main.py Normal file
View File

@@ -0,0 +1,10 @@
# 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)