Add initial project files and implement LED control via UART commands

This commit is contained in:
rxf
2025-07-31 17:00:59 +02:00
commit 670eafefa2
7 changed files with 189 additions and 0 deletions

9
blink.py Normal file
View File

@@ -0,0 +1,9 @@
from machine import Pin
from time import sleep
led = Pin('LED', Pin.OUT)
print('Blinking LED Example')
while True:
led.value(not led.value())
sleep(0.5)