Dodecahedron PCB Design

1 minute read

Dodecahedron It seems to be a right of passage that people learning how to design PCBs make an LED Cube. It’s a good learning project because it only has a few components and each face (PDB Boards) is identical.

I wanted to test out a few PCB design elements on a larger board so I decided to use Pentagons instead of [Equilateral Triangles] to make a Regular Pentagon Dodecahedron.

This idea came from Idea 077 - Equilateral triangles LED panels from the year of ideas project.

The project files can be found on my github project page: https://github.com/funvill/dodecahedron-pcb

Pentagon front PCB

Pentagon back PCB

Creating a polyhedral shape involves welding together several faces. To ensure a robust mechanical connection to the edges of the boards, I devised a custom footprint with large pads that could be welded together. Each pad features a through hole through which solid core wire could be threaded and welded, providing additional strength.

or-pad I ordered the pads with 5V in the center pin 1. Then two data pads on either side (Pin 2 and Pin 3). With two identical GND pads on the far ends. I wanted to keep the positive and negative power pads away from each other incase they get accidentally bridged.

or-pad One of the design goals is to make each of the PCB boards (faces) identical. Identical boards would reduce the costs of manufacturing and hopefully simplify the construction. To do this I needed a method that would allow me to configure what edge of the PDB board the LED OUT, and LED IN data line are connected to. I designed this “OR PAD” that allows for configuration via a solder bridge.

I still will need to figure out the Hamiltonian path problem aka the Traveling Salesman problem, or NP-hard problem. Creating a path in a directed graph that visits each face exactly once.

In other words I need a way of configuring a path for the LED Data line where it touches all faces only once. Luckily for me William Rowan Hamilton used a dodecahedron in the Hamilton’s puzzle as an example of a platonic solids that has a Hamiltonian path. (Warning Hamiltonian path is a huge wiki rabbit hole)

hamiltonian-path

Leave a comment