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.
This commit is contained in:
2023-12-10 17:00:19 -05:00
parent 047b8f1723
commit 8c17d1d2cb
3 changed files with 18 additions and 0 deletions

View File

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

View File

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