5119+ reviews
Order by 16:00 for same day shipping
14 days return
GB
EN
Individual
Business
Learn to program with the Raspberry Pi Pico with our simple project for beginners. This practical tutorial is ideal for introducing the Thonny programming tool and MicroPython. Discover step by step how to connect the Raspberry Pi Pico to your computer, upload programs and flash the internal LED. Follow our simple instructions to quickly become familiar with the capabilities of the Pico. The LED is located next to the USB port on the Raspberry Pi Pico. A perfect start for your adventure in the world of Raspberry Pi !
This manual covers:
A Raspberry Pi Pico is a microcontroller board developed by the same organization responsible for the popular Raspberry Pi single-board computers.
Some features of the Raspberry Pi Pico include:
In order to program the Raspberry Pi co with MicroPython we first need to flash the firmware of the Pico.
This means that we provide the internal software that starts the pico with a special python version.
Download firmware from the website below (uf2 file)
https://micropython.org/download/RPI_PICO/
https://micropython.org/download/RPI_PICO_W/
(Make sure you select the correct firmware version, the wifi version and the non-wifi version are different)
Press and hold the white boot button on the pico.
Plug the pico into a USB port on your computer. (Then you can release the button)
A drive letter, accessible like a memory stick, will now appear.
Copy the firmware file RPI_PICO_xxxxxx.uf2 to this drive
(pico will reboot and the firmware will be installed)
Download and install Thonny on your PC.
( https://thonny.org/ )
Select the MicroPython Interpreter under
Tools > Options > Interpreter > MicroPython ( Raspberry Pi Pico)
Now you can retype the program below into the Thonny interface.
Note: For the Pico-W the variable 'GP25' must be changed to 'LED'.
Explanation of the program:
from machine import Pin
import utime
led_onboard = Pin(‘LED’, Pin.OUT)
while True:
led_onboard.on()
utime.sleep(1)
led_onboard.off()
utime.sleep(1)
Then press save, and save the program on your own computer.
Press the red stop sign button to restart the 'backend'.
(Thonny is now reconnecting to your Pico)
Then you could press green button (Run current script).
The LED should now be flashing. One second off and one second on.
If the pico is now removed from the computer and reconnected the program will not start.
We only tested the programming code.
To enable automatic start we need to save the program again, but then select the pico.
File > Save As > Raspberry Pi Pico
Save the program with the name main.py . The pico will automatically start the program with this name when connecting the Pico to a USB port or another power supply.
You now have Thonny installed and a Raspberry Pi co connected to your PC. Then wrote and ran the code.
Is the LED not blinking? Then take a look at the previous steps and try again!
Did you enjoy doing this project? Check out our other projects, or Les electronicsforyou.com /pico-les-2-led-drukknop/">two of this Pico series!