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:
4
Scripts/Lights-on-off-intervals.py
Normal file
4
Scripts/Lights-on-off-intervals.py
Normal file
@@ -0,0 +1,4 @@
|
||||
import machine
|
||||
led = machine.Pin("LED", machine.Pin.OUT)
|
||||
led.off()
|
||||
led.on()
|
||||
4
Scripts/Onboard-LED-On.py
Normal file
4
Scripts/Onboard-LED-On.py
Normal file
@@ -0,0 +1,4 @@
|
||||
import machine
|
||||
led = machine.Pin("LED", machine.Pin.OUT)
|
||||
led.off()
|
||||
led.on()
|
||||
Reference in New Issue
Block a user