Snowflake Decoration Available on the Pimoroni Store

published: November 13, 2019 — last modified: October 23, 2025

We have some great news about my Snowflake Decoration: Starting today, you can buy an assembled version of the project from Pimoroni that can be shipped worldwide.

Pimoroni did an excellent job on this project. No soldering is required at all, meaning this is the user-friendliest version of the project ever released!

The project comes in a nice package, containing a pre-assembled panel and flat cables used to connect all snowflake boards.

Changes to the Original Project

The overall design from Francesco Mazzola did not change. The snowflakes look exactly the same, and all delicate lines on the front side are perfectly manufactured.

The circuit did receive some improvements. First, the platform is now powered by 5V instead of 3.3V. Each board utilizes a small voltage regulator to provide the 3.3V for the microcontroller.

A higher voltage reduces the current on the flat cable on the strand. Also, the voltage regulator will provide a less noisy power supply on each board.

Next, the 19 resistors for the LEDs are combined in resistor banks. I have considered doing this in the past, but decided against it, primarily because the components are quite difficult to hand-solder.

The boards can be connected using the provided flat cables. This is simply an addition to the solder pads. If you prefer, you can still solder your own cable to the snowflakes.

Finally, all components are pre-soldered. Assembling my original kit, which was available exclusively to Boldport Club members, was a great challenge – primarily due to the tiny 0402 LEDs.

Compatibility

The snowflakes from Pimoroni are 100% compatible with those used in my original project. Therefore, if you created your own firmware for the project as I suggested, you can easily use it on these new snowflakes as well.

If you have questions, missed any information, or simply want to provide feedback, feel free to comment below or reach out to us through Twitter!

More Posts

Quick 4h Build – PID Fan Controller

Posted on 2020-12-05— 3D Printing, Projects

I built a PID-controlled fan and temperature controller for my printer enclosure in about four hours using an Adafruit Feather, DHT22, OLED, MOSFET, and a PWM fan. I walk through printing the case, wiring, firmware setup, and assembly—read on if you'd like to build one yourself.

Read this post

Use Enum with More Class!

Posted on 2019-07-29— C++, Improve your Code, Learn

I explain C++11 enum class: why it prevents name conflicts, how it compares to traditional enums and common workarounds, with practical Arduino-friendly examples. If you want clearer, safer enum usage in your interfaces, read the full post for code samples and simple best-practice guidance.

Read this post

It's Time to Use #pragma once

Posted on 2019-07-13— C++, Improve your Code, Learn

I explain why I prefer #pragma once over macro header guards and how it prevents subtle build errors and wasted debugging time. I’ll show examples, common pitfalls, and practical steps to replace guards in existing projects — read on if you want a simple, low-risk improvement.

Read this post

Box with Random Line Pattern

Posted on 2021-01-17— 3D Printing, Projects

I created a set of 500 printable boxes with a random line pattern—each box unique, sized 35–120 mm with two lid fits per size. I cover part naming, printing tips, and where to download the STLs. If you use 3D printing, please read the full post for files and guidance.

Read this post

Units of Measurements for Safe C++ Variables

Posted on 2019-07-11— C++, Improve your Code, Learn

I show how I avoid unit mistakes in C++ by creating a templated Duration type and user-defined literals like 100_ms. I explain declaring Seconds/Milliseconds/Nanoseconds, adding conversions, and how the compiler catches unit mismatches with no runtime cost. Read the full article for code examples and the GitHub repo.

Read this post

Are My Documents Safe in the Root Cellar at ~80% Humidity?

Posted on 2015-08-20— Projects

I'm concerned my archived documents could absorb moisture in a root cellar with 75–90% humidity, so I built a DIY data logger to monitor conditions inside sealed boxes. I walk through parts, breadboard-to-stripboard assembly, tests and a wiring diagram — please read the full post for the complete build.

Read this post