Auto-Garden/Scripts/Onboard-LED-On.py
sickprodigy 8c17d1d2cb On branch main
Changes to be committed:
	modified:   README.md
	new file:   Scripts/Lights-on-off-intervals.py
	new file:   Scripts/Onboard-LED-On.py

Modified readme with additional notes.
Started on a few scripts I'd like to take note of.
At least showing on gitea.
2023-12-10 17:00:19 -05:00

4 lines
75 B
Python

import machine
led = machine.Pin("LED", machine.Pin.OUT)
led.off()
led.on()