Update cookies preferences
PLEASE NOTE: New orders will be shipped on Tuesday 2 April.
Pico Unicorn Pack - PIM546 Maximize

Pico Unicorn Pack - PIM546

7x16 matrix of RGB LEDs that fits perfectly on the Raspberry Pi Pico

More details

Availability: On_stock

19,95 €

Here's what Pimoroni says about it:

A sparkly matrix of over a hundred fantabulous RGB LEDs for all your rainbow needs and some handy buttons - sized perfectly for the Raspberry Pi Pico!

We've resized our familiar Unicorn setup so that it fits nicely on the back of your Pico - with a tidy 7x16 matrix (that's 112 RGB LEDs!) it's surely the fanciest backpack going. The four tactile buttons can be used to switch between modes, as controls for simple games, or adjusting brightness.

It's possible to control the colour and brightness of each LED individually so you can use it to display animations, text, simple images, and more. Make a mini photo FX lamp, a smart status light for Zoom, use it to display colourful scrolling messages on your fridge, or just enjoy some pretty animations.

A Raspberry Pi Pico is not included.

Your Pico will need to have male headers soldered to it (with the pins pointing downwards) to attach to our add-on boards.

Features

  • 16x7 matrix of RGB LEDs (112 total)
  • Individual colour/brightness control of each LED
  • 4 x tactile buttons
  • Pre-soldered female headers for attaching to Pico
  • Compatible with Raspberry Pi Pico.
  • Fully assembled
  • No soldering required (as long as your Pico has header pins attached).
  • Dimensions: approx 62mm x 25mm x 10mm (L x W x H, including headers and buttons)
  • C/C++ and MicroPython libraries

[...]

Pinout

Pico Unicorn Pack drives its display via the PIO feature of the RP2040.

The display is updated one row at a time (but very quickly, so you won't notice!) by selecting one of the SR1..7 pins which control the row driving FETs.

Column data is fed into shift registers via SIN/SCLK and then LATCHed to hold during display. BLANK enables the column driving FETs to turn on the LEDs and produce the image.

The four switches are wired up as SW_A, SW_B, SW_X, and SW_Y.

Power is supplied through VSYS meaning that you can use Pico Scroll Pack both on USB power and from external supplies (so long as they can supply 3V+) making it ideal for battery powered projects.

[...]

Making use of the RP2040's programmable IOs (PIOs)

What's exciting is that these LEDs are controlled by the programmable IO on the RP2040 meaning they update in the background with very little CPU usage. The programmable IOs are so fast that we can achieve 14-bits of resolution instead of the 8-bits you usually get with LED drivers.

We use these extra bits of resolution to apply gamma correction to the colours displayed meaning that gradients are smooth and linear.

This means that the LEDs perform wonderfully through their full range of brightness rather than being poor at handling lower brightness levels. You don't really need to care about the details (though we think they are interesting!) as our software library just handles it all for you in the background.