Little Bird
PicoSystem
All Products
New Arrivals
Raspberry Pi
Brands and Manufacturers
Microcontrollers & Development Boards
Raspberry Pi Pico
Pico
RP2040
Digital Technologies
Raspberry Pi Gaming
Microcontrollers
Raspberry Pi Microcontrollers
Furniture & Storage
Pimoroni
Arcade & Gaming
Game Controllers
$133.13
|
Only 1 left
PicoSystem is a pocket sized handheld games console, built around Raspberry Pi's RP2040 chip (that's the little fella that's the core of a Raspberry Pi Pico)...
Estimated Delivery
Arrives
Disclaimer
Secure checkout
PicoSystem is a pocket sized handheld games console, built around Raspberry Pi's RP2040 chip (that's the little fella that's the core of a Raspberry Pi Pico).
We've taken these lucky bits of silicon to the component spa and treated them to the full works: a big chunk of flash memory, a vibrant 240x240 screen and a nice D-pad and buttons picked out by our most particular arcade enthusiasts. There's also a piezo speaker for discreet retro bleeps and chirps and a rechargeable LiPo battery so you can take your homebrew games on the bus.
The finished product looks and feels great - so we couldn't resist going all out on the build quality by adding a custom matt black anodised aluminium case with a handy wrist strap.
We think RP2040 has tons of potential as an experimental gaming platform, and we're really looking forward to seeing what folks create.
Features
- Powered by RP2040 (Dual Arm Cortex M0+ running at up to 133Mhz with 264kB of SRAM)
- 16MB of QSPI flash supporting XiP
- 1.54" colour SPI IPS LCD (240 x 240 pixels)
- D-pad and buttons
- 525mAh LiPo battery (should be good for at least 6 hours of on-time)
- Piezo buzzer/speaker
- On/off power button
- RGB LED
- CNC milled aluminium case *swoon*
- Wrist strap
- Programmable and rechargeable via USB-C (cable not included)
- Comes fully assembled.
- C++/MicroPython API
- Schematic
Software
As PicoSystem is RP2040-powered, you've got an array of options for making your own games. Here's a quick rundown!
- C++/MicroPython - Our official PicoSystem API is designed to be lightweight, easy to use and to not get in the way while you're developing games. You can find a C++ tutorial here and a function cheatsheet here. A MicroPython build is coming soon.
- CircuitPython - You can use the Stage library to make simple games in CircuitPython (thanks deshipu!). Download a PicoSystem flavoured CircuitPython build here.
- 32blit SDK - It's also possible to make PicoSystem games using C++ and the 32blit SDK, thanks to the heroic efforts of the 32blit community. Click here for 32blit x PicoSystem getting started instructions and here for a boilerplate template.
PicoSystem ships flashed with the mighty Super Square Bros. by Scorpion Games - if you like it as much as we do check out their itch.io page and show them some love.
Games
Want to try out some pre-built games while you wait for inspiration to strike? Give these a go!
- Super Square Bros. by Scorpion Games - A bouncy quadrilateral platformer.
- Dots - Dot popping puzzler. Create chains of two or more and race to get the biggest score.
- Rocks and Diamonds - Classic game of dodging rocks and grabbing diamonds.
- Geometry - Smash up space boulders with lasers to make smaller space boulders!
- Rainbow Ascent - The Dark Souls of procedurally generated vertical jumping puzzles. Good luck.
- Super Blit Kart by Daft_Freak - A "Mode7"-based racing game.
To get into bootloader mode so you can flash a new .uf2, turn your PicoSystem on whilst holding down the X button - it should then show up as a drive called RPI-RP2 on your computer.
Notes
- Dimensions: 96.6 x 42.7 x 15.5mm (L x W x H, including buttons)
- There are broken out debug pins on the PCB for if you want to program PicoSystem with an external debugger but you'll have to remove the case (with the screws on the back) to get at them.
- If you want to have a look at PicoSystem's insides without having to take yours apart take a look at HackSpace's dissection report.
- Check out ETA Prime's review for unboxing, teardown and gameplay footage!
About RP2040
Raspberry Pi's RP2040 microcontroller is a dual core ARM Cortex M0+ running at up to 133Mhz. It bundles in 264kB of SRAM, 30 multifunction GPIO pins (including a four channel 12-bit ADC), a heap of standard peripherals (I2C, SPI, UART, PWM, clocks, etc), and USB support.
One very exciting feature of RP2040 is the programmable IOs which allow you to execute custom programs that can manipulate GPIO pins and transfer data between peripherals - they can offload tasks that require high data transfer rates or precise timing that traditionally would have required a lot of heavy lifting from the CPU.
Jargon buster
Plain-language definitions for the technical terms used above.
- ADC
- An analogue-to-digital converter reads a changing voltage and turns it into a number the microcontroller can use. It matters when connecting analogue sensors such as light, sound, or variable-resistor sensors.
- Bootloader
- Small starter software on a microcontroller that lets new code be uploaded before the main program runs. Knowing how to enter bootloader mode matters when you need to program the board or recover it after a faulty sketch.
- CircuitPython
- A beginner-friendly version of Python designed to run directly on microcontroller boards. If a product supports CircuitPython, you can often program it by copying code files onto the board rather than setting up a more complex toolchain.
- Flash memory
- Non-volatile memory that keeps stored data even when power is removed. In this sensor, it matters because enrolled fingerprint templates can remain saved after the project is turned off.
- GPIO
- General-purpose input/output pins are microcontroller pins you can set in software to read signals, switch devices on and off, or connect to peripherals. The number of GPIO pins matters because it limits how many buttons, LEDs, sensors, and other parts you can wire directly to the board.
- I2C
- I2C is a two-wire communication bus used by many sensors and small modules. It matters because several I2C devices can share the same two wires, but each device needs a compatible address and your controller must support I2C.
- IPS
- IPS is a type of LCD panel that keeps colours and contrast more consistent when viewed from an angle. This matters for small displays that may be mounted in a dashboard, handheld project, or enclosure where the viewer is not always looking straight on.
- LCD
- LCD stands for liquid crystal display, a screen technology that uses a backlight and liquid crystals to show images or text. It matters because LCD modules usually need a display driver and enough controller pins or a bus interface to send image data.
- LED
- A light-emitting diode is a small electronic component that lights up when current flows through it in the correct direction. In this kit, LEDs create the flashing effect, so polarity and correct soldering matter for the project to work.
- LiPo
- A lithium polymer rechargeable battery commonly used in portable electronics projects. It matters because LiPo batteries need correct charging circuitry and care, and this board includes hardware intended for that battery type.
- microcontroller
- A microcontroller is a small computer on a chip that runs your program and controls connected inputs and outputs. For this product, it is the part that reads buttons and sensors, drives the display and speaker, and communicates over Bluetooth.
- MicroPython
- A version of the Python programming language made to run on microcontrollers. It matters because it lets beginners write readable code to control LEDs, sensors, motors and displays without needing to start with lower-level languages.
- PCB
- A printed circuit board is a rigid board with copper tracks that connect electronic parts without loose wires. For this kit, the PCBs also form the airplane shape, so they are both the circuit base and part of the finished model.
- PWM
- Pulse Width Modulation is a way for a digital pin to simulate variable output power by switching on and off very quickly. It matters for controlling things like LED brightness, motor speed, or servo-style signals from a microcontroller pin.
- RGB
- Short for red, green and blue, usually referring to an LED that can mix those three colours. It matters because controlling an RGB LED teaches how separate outputs combine to create different colours.
- RP2040
- A microcontroller chip used on many maker boards, with enough speed and flexible I/O for some camera and display projects. Compatibility with RP2040 matters because camera modules often need many pins and careful timing to read image data successfully.
- SPI
- A fast serial communication bus often used for displays, memory cards, and sensors. It matters because SPI devices need specific pins for clock and data, plus a separate chip-select line for each device.
- SRAM
- Fast temporary memory used by a processor while a program is running. More SRAM helps with projects that handle larger data buffers, networking, displays, or more complex code.
- UART
- UART is a simple serial connection that sends data over separate transmit and receive wires, often labelled TX and RX. It matters because this module is designed to replace a wired UART cable with a wireless link while keeping the same serial data format.
- USB-C
- A modern reversible USB connector used for power and data connections. On this product it matters because it can connect directly to a computer as well as to a microcontroller project.
Find this product in
Brands
Microcontrollers