My Journey with Raspberry Pi Pico on windows 10

My Journey with Raspberry Pi Pico on windows

My Journey with Raspberry Pi Pico on windows 10



Downloaded Thorny Python IDE for windows
Thonny, Python IDE for beginners

First Issue:

Needed to setup rpi pico for use with micropython

Solution: Upload the uboot loader for use with micro python

Second Issue:

Had an issue that I didnt know how to run code on the raspberry pi pico, here was the solution:

Select micropython as the target python environment. Boom done!

Lets fun some code!

made using https://carbon.now.sh/
from machine import Pin
from time import sleep

led_onboard = machine.Pin(25,machine.Pin.OUT)
print("My first Blink Sketch!")
for i in range(10):
    led_onboard.value(1)
    sleep(1)
    led_onboard.value(0)
    sleep(1)

print("End of program")

Future Exploration:

Great resources

Link to awesome starter guide from the raspberry pi people  https://hackspace.raspberrypi.org/downloads/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBBaThSIiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--d43ee613629bddf78bc41c1479c2acb2ec6ef34e/RPi_PiPico_Digital_v10.pdf

Awesome rpi pico simulator in broswer!

Wokwi - Online Arduino Simulator
Simulate Uno, Mega, FastLED, LCD1602, OLED, Potentiometer and learn from Arduino code examples

Side Quest:

Awesome machine learning at the edge platform!

Edge Impulse edgeimpulse.com

this demo is awesome!

Author:

by oran collins
github.com/wisehackermonkey
oranbusiness gmailcom
20210603
If you want to help me out and give some donations here's my monero address: 432ZNGoNLjTXZHz7UCJ8HLQQsRGDHXRRVLJi5yoqu719Mp31x4EQWKaQ9DCQ5p2FvjQ8mJSQHbD9WVmFNhctJsjkLVHpDEZ I use a tracker that is pravicy focused so if you block its cool, im big on blocking stuff on my own machine. im doing it to see if anyone is actualy reading my blog posts...:)