rename: add lights on/off intervals script for LED and contactor control

This commit is contained in:
2025-11-04 17:31:48 -05:00
parent d7a8a00636
commit 18e6e4b406

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()