Overview
Getting Started
Loading the Firmware
- You will need to download the latest micropython version to load onto the Raspberry Pi Pico W. Ensure you grab the latest build and not a preview build.
- Place your Raspberry Pi Pico into the breadboard to protect the pins and your fingers.
- Hold down the BOOTSEL button on the raspberry Pi Pico
- Connect the Pi Pico to the USB cable connected to you laptop.
- When the drive is displayed in Windows Explorer or Mac Finder copy the uf2 file from step 1 onto the Pi Pico drive.
- If this was successful the drive will disappear as the device has been reset ready for use.
Your First Program
We will be using VSCode so ensure you have that installed.
- Disconnect the Pi Pico from your laptop.
- Download the VSCode profile for the Pi Pico from VSCode Setup Repo, RP Pico.code-profile by clicking on the
Download raw file
icon. - Follow the instructions here to import it into VSCode
- You should now see a new icon on the left called
Raspberry Pi Pico Project
- Connect the Pi Pico to your laptop
- Click on it and select
New MicroPython Project
- Give your project a name
Blinky
and change the location to where you want the project to be created. - Click
Create
to create your new Pi Pico project - If everything has gone smoothly you should have a new project that looks like the below image.
- You should see that the Pico is connected and you can click on the run icon in the bottom left position to run the code python conde in
blink.py
on the Pi Pico.