Add initial scripts for LED control and network scanning

This commit is contained in:
2025-11-11 19:30:43 -05:00
parent 13f5e6465a
commit 9d8df6bcbe
13 changed files with 288 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import machine
led = machine.Pin("LED", machine.Pin.OUT)
led.off() # Make sure off
led.on() # Turn on last command, stays on
contactorV12 = Pin(12, Pin.OUT)
contactorV12.off()
contactorV12.on()