Taking lucky car dice to infinity
At some point in everybody’s life, they get their first taste of infinity. Thanks to my dad carrying around an enormous VHS recorder on his shoulder in the 80s, I have footage of the moment I first saw it in a hall of mirrors at the Ontario Science Center:
Infinity mirrors incorporating LED lighting are ubiquitous at this point:
As life goes on it gets harder to experience the surprise of something completely new, luckily all roads lead to hypercubes:
A cubical arrangement of infinity mirrors, while not exactly a representation of a hypercube, would be a very cool effect. We could make one as a desk ornament, but surely there is a more unique use case for a visually interesting infinity cube? Something more iconic?
We have our idea: lucky car dice, taken to infinity. Let’s get started.
Since our final product must hang from a car’s rear-view mirror, we start with a size constraint. The typical size (based on Amazon listings) is a cube with edges of 2.75" each, so we will stick to this standard.
Our process will be:
The principle behind infinity mirrors is simple:
The use of a half-silvered/one-way mirror allows some of the light to escape at each bounce. The repeated bounces create the infinity effect (with diminishing brightness after each bounce) for the viewer.
We can create a one-way mirror out of any transparent glass with the use of mirror film:
The process is simple: cut the film to size, spray soapy water over the glass (keeps the film from sticking immediately), and apply:
We’ll use laser cut acrylic for ours, but before we can size the mirrors we need to design the surrounding structure.
We’ve already decided that our cube will have edge lengths of 2.75", but there is one other size restriction we have to work with: the width of the LED strip which will line the inner edges. Once again we will use the ubiquitous WS2812B Individually Addressable Programmable RGB LED Strip, commonly known as NeoPixel.
We will use the narrow (8mm) 144 LEDs/m variant (3535-size LEDs, 35mm x 35mm each):
This gives us 8mm to work with for the edges of our structure, leading to the following design:
The channel will be used for running the wires connecting each LED strip. We finish the cube structure in two pieces for ease of assembly:
And print it out with an Ender 3:
With our mirror sizes constrained (60mm x 60mm) we can cut those out with the trusty K40 laser cutter and assemble before moving onto the electronics.
The wiring for the LED strips is straightforward:
To keep the wiring as discreet as possible, we will use extremely thin insulated wire - specifically AWG30 wire wrapping wire:
The TS-100 soldering iron with a TS-D24 tip is ideal for this time of fine work:
Since this will be hanging from a rear-view mirror, we’ll use heatshrink tubing and some thicker wire (XX AWG) to create a cable which reaches back to the Arduino Pro Micro which will be running everything. To allow us to detach the hanging cube from the car when not needed, we will use a 3-Pin JST SM connector:
We will want the ability for the driver to change lighting modes (brightness, speed, animation pattern, color, etc.) during operation - we can allow for this by adding a small momentary switch to the JST connector:
Everything runs back to the Arduino Pro Micro which will be tucked out of the way:
To receive power in the vehicle we can use a fuse tap on a 12V circuit. We choose a circuit which is only active during vehicle operation (to avoid draining the battery when not in use), and run that through a 5V step-down converter before running it up to the Arduino Pro Micro along the trim:
Testing that everything fits as expected:
With our lucky infinity cube assembled, we can now work on the software driving it.
The software driving our infinity cube will be simple, we want to present the user with a variety of selectable LED animations and give them an intuitive way of changing them.
We’ll be using the FastLED library due to its efficiency - with animations we want the lowest latency possible. An added benefit is it gives us easy access to pre-defined color gradients we can use for the LED strips color palettes. After an exhaustive review, we select the following:
For the choice of animations, we will go with the following:
Solid color: light all edges in a user-selected color from the active palette
Fade cycle: cycle from current colour to a random colour from the active palette at a user-selected speed
With only one button for the user to provide inputs, we will use the length and number of presses to distinguish various inputs.
Long Press: Change to the next animation (wrapping around when reaching the end)
1 Short Press: cycle through options for the current animation (e.g. speed, colour)
2 Short Presses: cycle through brightness levels
3 Short Presses: change active color palette
The homemade half-silvered mirrors are subpar. They don’t transmit enough light, and they are not perfectly smooth (air bubbles). Purchasing a large panel of commercial half-silvered mirror and cutting it down to size would produce a better result.