Maker Pi Pico STEM board mini review with CircuitPython

In my early list of third-party Raspberry Pi RP2040 boards, I shortly mentioned Cytron Maker Pi Pico baseboard for Raspberry Pi Pico that exposes all pins via female headers, includes LEDs for all GPIOs pin, six Grove connectors, three user push-buttons, one RGB LED, a piezo buzzer, an audio jack, a MicroSD card, and an ESP-01 socket to add WiFi connectivity. The beta version sold for $5, and at the time I missed that included Raspberry Pi Pico board as well, so basically you got a free baseboard.

The Malaysian company has now sent me a review sample to play around with, so let’s have a closer at the hardware and code samples for the board.

Maker Pi Pico Unboxing and Specifications

I received the board in Cytron package together with a pinout diagram for Raspberry Pi Pico, and we can see the latter is already soldered to Maker Pi Pico.
Maker Pi Pico Unboxing

Maker Pi Pico specifications:

  • Based on Raspberry Pi Pico
  • Storage – MicroSD card slot connected to GP10-15
  • Audio
    • 1x Piezo buzzer connected to GP18 plus switch to turn it on/off
    • 1x 3.5mm stereo audio jack connected to GP18-19
  • Wireless connectivity – Socket for optional ESP-01 WiFi module (ESP8266 based)
  • Expansion
    • All Raspberry Pi Pico’s pins can be found on two 20 ways pin headers with LED indicators on all GPIO pins
    • 6x Grove connectors (I2C, digital, analog, UART)
  • Misc – 3x programmable push-button connected to GP20-22, Reset button, 1x RGB LED (NeoPixel) connected to GP28
  • Power Supply – 5V via micro USB port on Raspberry Pi Pico
  • Dimensions – 94 x 68.6 mm

Maker Pi Pico

Everything is well marked so we know each I/Os are connected to which port, and the LED attached to each pin of the board makes it easy for debugging. I’d wish the Grove ports were clearly marked too to know which feature is available, but you’d have to look at the included Pico pin diagram to find out Grove 1 supports digital, I2C, or UART mode for example.

Maker Pi Pico Markings

Since the board looks to be destined to the STEM education market, it’s nice to see there’s a white zone on the board to write to who the board belongs, so if Peter steals from Paul in the classroom, there’s proof!

The bottom of the board also includes more detailed markings, and if after a while all those GPIO LEDs get on your nerves, you can disable all of them by cutting a trace on the board (see “Cut to disabled GPIO LEDs” on silkscreen).

First boot and MicroPython LED blinking

Let’s play with the board by connecting a micro USB cable between a computer and the Raspberry Pi Pico.

Maker Pi Pico First Boot

Some of the LEDs are on and music plays through the buzzer for a short time. That’s the pre-installed firmware. I then followed our Raspberry Pi Pico getting started guide to install MicroPython. I did not have to disconnect the micro USB cable, and instead, I simply pressed the Bootsel button on Raspberry Pi Pico, and the RUN button (aka Reset button) on Maker Pi Pico to enter bootloader mode. That means there’s no need to disconnect the cable each time you want to flash a UF2 file.

I copied rp2-pico-20210205-unstable-v1.14-8-g1f800cac3.uf2 file to RPI-RP2 drives and loaded my “alternate LED blinking MicroPython sample” that I used with a red LED on a breadboard. But this time, no need to wire a circuit on a breadboard since GP14 is already connected to one…

Maker Pi PIco LED Demo

Maker Pi Pico and CIrcuitPython samples

But it’s not quite enough to just blink and LED on that board since it has some extra features, notably a microSD card, a 3.5mm audio jack and a buzzer.

Cytron has prepared some tutorials for the board, including a CircuitPython program to write a file on the microSD card. First, we’ll need to install CircuitPython on the board as explained on Adafruit website. It’s just the same as installing MicroPython, we need to enter bootloader mode, and copy the firmware in this case adafruit-circuitpython-raspberry_pi_pico-en_US-6.2.0-beta.2.uf2.

I then opened Thonny to run the sample provided by Cytron, and I had to change the Interpreter to CircuitPython (generic) and select the port “Pico -CircuitPython CDC control (/dev/ttyACM0).

Here’s the source code to create a text file on the SD card and write some text in CircuitPython.


CircuitPython hides a lot of the complexity of performing the operation, so it’s almost as easy as writing the same program to create a file on a PC.

Raspberry Pi Pico SD Card-Programming CircuitPythonWe can also change it easily, not forgetting to add the carriage return code “\r\n” between new lines.  It did not work the first time, as I had to format the microSD card to FAT32 on my computer to use a file system compatible with the program.

There’s no tutorial for the audio part at the time of writing, and at first I though to use the “pico-playground” sample for Raspberry Pi Pico VGA, SD Card, and Audio demo board, but looking at the schematics the design looks different, and I eventually found out MAKER-PI-PICO repository on Github with more CircuitPython and MicroPython samples, including the default firmware in Out-of-the-box Demo Code/MicroPython folder.

But since I’m specifically looking at audio code, there’s another CircuitPython sample in Example Code/CircuitPython/MelodyDoraemon/ with two files: code.py and pitches.py.

The former comes with the code to play a melody and control the Neopixel RGB LED, plus some arrays for the melody and rhythm, while the latter only contains an array for the tones used in the melody.

Raspberry Pi Pico Audio Demo CircuitPythonWe won’t go through the full code, but the main loop above shows PWM output to GP18 connected to both the buzzer and audio jack is used to play the melody, with the RGB LED switching between red and blue following the music. At first, I did not work as pitches.py was missing from the board, so I just saved pitches.py to Raspberry Pi Pico before running code.py.

Check out the demo using both speakers and the buzzer below.

That’s all for this mini version. Maker Pi Pico is currently out of stock, but the next batch is coming soon for $10 or lower (currently $7.4) including Raspberry Pi Pico, and you can register your interest on Cytron store.

Share this:

Support CNX Software! Donate via cryptocurrencies, become a Patron on Patreon, or purchase goods on Amazon or Aliexpress

ROCK Pi 4C Plus
Subscribe
Notify of
guest
The comment form collects your name, email and content to allow us keep track of the comments placed on the website. Please read and accept our website Terms and Privacy Policy to post a comment.
Khadas VIM4 SBC