renamed: add initial LED control script to turn LED on and off

This commit is contained in:
2025-11-04 17:31:36 -05:00
parent f1e89e1262
commit d7a8a00636

4
Scripts/light_on.py Normal file
View File

@@ -0,0 +1,4 @@
import machine
led = machine.Pin("LED", machine.Pin.OUT)
led.off()
led.on()