MicroPython stuff

This commit is contained in:
2024-05-16 20:38:19 +03:00
parent a8e26be242
commit 60ba2c59e7
17 changed files with 478 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import machine
import time
led = machine.Pin(15, machine.Pin.OUT)
led.on()
time.sleep(1)
led.off()
time.sleep(1)