Daily tips and tricks from the experts at Adafruit!
View this email in your browser

Nick Price put together 200+ boards for the 26th DEF CON conference, and hit a few hiccups along the way.  For posterity (and to help others design their own PCBs), he compiled a list of some helpful tips he came up with after the fact. And while these are useful for anyone putting together a small handmade batch of boards, they have implications for industrial manufacturing as well.

1)Cut some holes in your boards

2)Add proper programming and debugging interfaces

3)Align all of your pin headers to be on the same 0.1″ grid

4)Think about component dimensions

5)Eliminate as many assembly steps as possible

6)Rename your components once your board layout is finalized

7)Add a test cycle to your firmware

A few of them you might have already thought of, but simple things like adding holes to your boards, even if not for through-hole mounting, are helpful when doing something as simple as alignment. It’d be prudent to repeat these before you set out on a manufacturing journey.

A theme through all of these is that, if you’re dealing with one or two units, what can seem relatively simple and efficient is going to cost you a lot of time when multiplied by whatever your production factor is. Will it take 15 minutes for one of your QA processes, like a test cycle? Well, you’re going to have to do that for 50 hours if you’re making 200 boards.

I also really wished I’d added some sort of proper debugging/programming interface to the each of the boards. I had every pin for every device broken out on the board, but I didn’t realize what a pain it would be to reprogram them en masse if the firmware I burned onto the microcontrollers wasn’t perfect. The first step was to forcibly disable 1) the display, 2) the radio, and 3) the flash chip from using the SPI bus by adding three jumper wires to tie their CE pins to VCC. With those three jumper wires in place, the next task was to wire up the four SPI bus lines, the reset line, and VCC and GND. It would’ve been a massive pain to solder wires or pins into the through-holes to do this, even temporarily, so the end result was a bodge of ten leads going to various places on the board, all being held in place by thoughts and prayers.

This concern is true for all levels of industrial manufacturing, and magnifies astronomically. While not always dealing in quite such time consuming hands-on tasks, if a process for a board requires 10 seconds of attention, vs 5 seconds, that’s going to really add up over 10,000 units, let alone hundreds of thousands. It pays to keep the process as simple and lean as possible.

Sometimes you have to learn all this the hard way, but thanks to Price, you don’t have to! Check out the whole post over at his site spun.io