diff --git a/README.md b/README.md index cf728b6..2d0319c 100644 --- a/README.md +++ b/README.md @@ -5,3 +5,13 @@ This will be a staging spot for all my python scripts mostly. Hopefully use this to update pico w in the future possibly?
+Note 1: ++Using thonny as my IDE for micropython on raspberry pi pico w. +First thing to know is main.py will auto start with pico. Then you can call your other python scripts as needed really. +
+ +Note 2: ++Grounding the RUN terminal will reset the Pico. I've jumped run to a button and the other side of the button to ground. Easy clickable reset. +
diff --git a/Scripts/Lights-on-off-intervals.py b/Scripts/Lights-on-off-intervals.py new file mode 100644 index 0000000..d0d97f9 --- /dev/null +++ b/Scripts/Lights-on-off-intervals.py @@ -0,0 +1,4 @@ +import machine +led = machine.Pin("LED", machine.Pin.OUT) +led.off() +led.on() \ No newline at end of file diff --git a/Scripts/Onboard-LED-On.py b/Scripts/Onboard-LED-On.py new file mode 100644 index 0000000..d0d97f9 --- /dev/null +++ b/Scripts/Onboard-LED-On.py @@ -0,0 +1,4 @@ +import machine +led = machine.Pin("LED", machine.Pin.OUT) +led.off() +led.on() \ No newline at end of file