Upload files to "/"

This commit is contained in:
2026-08-17 09:21:01 +00:00
parent f6c672dd74
commit daad6db369
4 changed files with 87 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
from machine import Pin
import time
pin = Pin(19, Pin.OUT)
for i in range(10):
pin.value(1)
time.sleep(0.5)
pin.value(0)
time.sleep(0.5)
print(i)