feat: inital commit

This commit is contained in:
xGlc
2026-04-11 23:31:41 +02:00
parent c4fe9a7213
commit 07d93402b3
5 changed files with 1214 additions and 0 deletions

13
led_program.py Normal file
View File

@@ -0,0 +1,13 @@
import time
from machine import Pin
led_pin = Pin(32, Pin.OUT)
def boostrap():
while True:
led_pin.on()
time.sleep(0.5)
led_pin.off()
time.sleep(0.5)