Building a 8x8x8 cube with a PB. At the assembling stage, need advice with wiring the channels

So I’m back. I’ll try not to let this thread turn in to another sprawling monster like the last one lol. So here’s the deal I’m about at the point of assembling the LED planes in to the PCB (in photo below) and I’m not quite sure how I should connect the data points. The construction of this is based off of the design MaltWhiskey did for his 16x16x16 cube. I’ll link the video down below for reference.

What I’m going for is ease of programming for patterns, mainly because I’m clueless at it so I’m gonna be learning on the fly. There’s going to be 4 separate PCBs with 8 LED planes on them each (photos below).

As far as the photos, blue circles are my potential data points going back to the Pixelblaze and the red lines are potential data paths. Would it be easier to just wire each plane on the PCB in to series so there’s only 4 channels going to the expansion board or is that going to limit me on patterns or make coding worse. Or should I have 2 separate channels per PCB, one channel controlling half of the PCB (this is how MaltWhiskey did his). Or does it really matter? Is it just something I’d have to potentially adjust in the code? Kinda stumped as this wasn’t really explained well and I’m just unsure how to proceed.

I have the feeling it doesn’t really matter and it’s gonna just be up to coding but I figure I’d ask for advice.




16x16x16 cube

Patterns and mapping are separated from each other, once it’s mapped you’re patterns are working in 0-1 space for each dimension. so go with whatever will give you the easiest wiring and assembly.

that said, if you can write your mapping as a function instead of a big table of values, it’ll make things a tiny bit easier for you Mapping in Pixelblaze — Ben Hencke

I’ve done a project that has fairly random wiring and the mapping sorts it all out.

1 Like

Thank you! I only barely understand the whole mapping thing (I’ve read the tutorial before but it’s been a few) but I am relieved to hear that it’s something that’s relatively, well maybe not easy for me, but relatively easy to accomplish. My brain was having a hard time reconciling how the mapping could be accomplished. It still is tbh but I feel much better about it knowing it doesn’t really matter physically how it’s mapped.