DEV Community

Cover image for Raspberry Pi Pico - getting excited about the smallest things!
Andy Piper
Andy Piper

Posted on • Updated on

Raspberry Pi Pico - getting excited about the smallest things!

I’ve been a fan of the Raspberry Pi before it was even launched, back in February of 2012. Fun fact: I got to play with a prototype of that original board nearly 6 months before it launched, and one of my most popular YouTube videos remains a preview from an event I attended in 2011:

Since those beginnings, I’ve followed the project closely (both the commercial and non-profit sides); I’ve always had a particular affinity for the educational mission of the Raspberry Pi Foundation, bringing affordable devices to communities to educate and explain and to ignite the spirit of excitement with code and hardware, that I strongly remember myself from the 1980s.

The announcement of the first RPi Silicon, RP2040-powered microcontroller - the Pi Pico! - last week came as a total surprise to me. After all, I remember those early days in 2012, explaining why and how an Arduino and a Raspberry Pi Model B are different things, a microcontroller vs a single board computer, with different capabilities; and now, the Raspberry Pi folks jump in to the microcontroller space as well. Nevertheless, I quickly headed to one of their ecosystem partners and suppliers I’ve often used here in the UK - Pimoroni - and put in an order. In the same way as the Pi Zero, originally distributed on the cover of the MagPi magazine back in 2015, the Pi Pico was also attached to copies of HackSpace magazine this month.

The service was, as usual, swift and efficient; and, on Saturday morning, I was in possession of some new tech toys!

Here’s my LEGO Minifig with his (ahem, my) new Pico :-)

The Pi Pico is minifig tiny!

Here’s a couple of the expansion boards from Pimoroni, that I added to my order in order to play with some of the hardware features later:

Some accessories from Pimoroni


The Pi Pico is not the same as a Raspberry Pi: it is not a fully-capable Linux computer at the size of a credit card. It has far more in common with an Arduino, an Adafruit Circuit Playground, or an ESP8266 (barring the wireless capabilities). So, why am I excited about it?

  • microcontrollers are a great way to learn about the basics of hardware and software
  • the Pi Pico is really, really tiny, and light, and uses a miniscule amount of power
  • it’s extremely affordable, around $4
  • it runs C or MicroPython (or CircuitPython) from the outset
    • the Raspberry Pi team supported MicroPython for the Pico, as well as the addition of support to the Thonny editor (I love to see Open Source contributions and support like this)
    • this makes it a great way to learn MicroPython / Python
  • it came out alongside really nice starting education materials (I picked up a copy of the “Get Started with MicroPython on Raspberry Pi Pico” book with my order, but HackSpace magazine contains a lot of good materials too)
  • the RP2040 chip!
    • the chip has some very interesting design features and characteristics, including two cores (good for learning about multi threading), low power modes, and Programmable IO
    • we already know that it is going to appear in a raft of other upcoming devices from well-known companies like Adafruit, Arduino, Pimoroni and Sparkfun (to name just a few), so it already has traction as a newcomer on the silicon scene

These are early days. A lot of what you’ll initially read, if you’re just starting out, covers some of the same basics - getting MicroPython installed, using the REPL and editor, blinking an LED - but as this space grows, there’s a lot of opportunity for everyone to share what they are learning, and that’s exciting! I had a lot of fun playing around with the board using Thonny on Windows this weekend, and hope to share more in the next few weeks, if I have time.

In the meantime, I recommend checking out HackSpace magazine #39, you can download a free PDF to learn a lot more about this interesting new world.

Top comments (2)

Collapse
 
cashoefman profile image
Cas Hoefman

I think the idea is interesting, mostly because of the price and the hype they are able to create around it. However, I think I will stick with the good old ESP32, the fact that the Pico lacks wifi/bluetooth (for me) makes it rather useless. Am I missing something here?

Collapse
 
andypiper profile image
Andy Piper

I think the wireless connectivity is definitely worth noting - for the moment - there are likely to be future versions that add that, if the Zero/Zero W are anything to go by (and I strongly suspect a third party will get there first, using the RP2040). I certainly have a lot of ESP8266 and ESP32 devices as well, and get a lot of value from these, but the ecosystem that is already being built around the RP2040 makes it interesting for me to learn. Thanks for the thoughts! Exciting times for makers.