Three days ago, the Raspberry Pi Foundation released the Raspberry Pi Pico microcontroller. As always, the tech enthusiasts and hobbyists community are starting to take off on this tiny little development board, and we thought we’d share our take as well on the all-new Raspberry Pi Pico with you.
Time to read:
3
minutes
The name Raspberry Pi has been popular for quite some time in the industry, among hobbyists and enthusiasts, and has built up an image where this significantly small circuit board which has an SD card slot, a couple USB ports, maybe an ethernet port and an HDMI, display connectors which is able to run a linux-based operating system on it. In short, Raspberry Pi is known for its line of microprocessors, and not for microcontrollers.
But this time around, the company has developed their very own microcontroller for the makers, and has designed a development board to bring it to them - The raspberry Pi Pico!
Many developers prefer the heavy computationally expensive tasks to be done by a microprocessor, and timing related, time critical, simple I/O tasks to be put on to a microcontroller. Until now, Raspberry Pis have been providing the tech community with the processors, and now, they have completed their lineup by adding a controller to the mix as well.
The Pico is a microcontroller development board from Raspberry Pi, which is announced to have a mere $4 of price tag. The pico is going to have its own uses in the world of electronics since there are certain tasks that are better suited for a microcontroller instead of a microprocessor; such as critical timing and interrupt capabilities.(if you’re confused what microcontrollers and microprocessors are, be sure to read this microcontroller vs microprocessor comparison done by CircuitsDigest for more information)
The board comes in a small, breadboard-friendly package which almost has the same footprint as an Arduino Nano.
Whenever a new microcontroller is released, everyone is looking for its tech specs such as the speed, GPIO count, special peripherals etc. So, here are the key features of the Raspberry Pi Pico (RP2040 microcontroller)
Like every other microcontroller out there, Raspberry Pi has made a C/C++ toolchain for the RP2040 microcontroller as well. However, with the sheer power this little guy packs, this is also capable of running MicroPython framework as well. Micropython is a full fledged Python compiler and runtime that can run on bare-metal microcontrollers.
Especially, this device supports firmware update over the USB mounted as a mass-storage device. Therefore, by holding BOOTSEL button when plugging in the Pico, you can enter the mass-storage mode and simply copy the compiled binary to the mounted drive, and reboot the Pico to start running the code!
For a Getting Started guide, check out Raspberry Pi foundation’s Raspberry Pi Pico - Getting Started Guide
For example projects done with Raspberry Pi Pico, visit the projects section by Raspberry Pi.