Thursday, November 28, 2019

DIY Numpad: Enclosure

The numpad plate and PCB didn't fit into the test case I had cut out mainly because the encoder (which sticks off of the PCB a little bit) didn't fit into the slot I originally designed into the case.

To fix this, I made the slot larger and added a little more margin for the plate and PCB (added 0.5mm to all sides of the cutout). I also made the case deeper and added a cutout for the underglow LEDs at the bottom of the PCB. I'm not sure how I want to do the hole in the bottom for the LEDs to shine out of, but a simple hole will do for now. I considered a grid of circles or a grid of hexagons but will have to try that out at a later time. The bottom may also become some frosted acrylic or something like that.

New case design.
After cutting it out of 1/2" MDF (I need to find some nice wood to make later cases out of), I got this:

Case!
My stock was most likely not level so one side was slightly deeper than the other, but the plate and PCB fit. You can see that on one side the lip for the plate is slightly higher than the other side:



I had to manually cutout a slot for the USB-C connection:
Finding where the hole should go.
Not the prettiest but good enough.
I didn't cut out the top plate wood yet (the piece that covers the plate and adds a lip around the keys), but I wanted to test screwing everything together:

Pretty good!
Temporarily using some keycaps from my Quickfire Rapid.
Bottom side. The LED under the encoder is not exposed.
And after adding in an encoder knob I had lying around the numpad looks pretty good:

Clean.

Next steps are to get a prototype of the top piece of the case made and get the RGB LEDs working. On the side I need to find and try out some different pieces of wood for making the final cases.

Thursday, November 14, 2019

DIY Numpad

In the summer I replaced all the switches on my keyboard from Cherry Blues to Hako Royal Clears and wasn't sure what to do with the rest of the switches. Why not build a numpad!

I first began making a few drawings of what the numpad should look like. I wanted to have an encoder and the layout would be 4x5. The size would be dictated by the size of the largest PCB I could get manufactured for cheap (100mm x 100mm). This is perfect for a fully filled out 5x5 layout, but I wanted that encoder and an angle in the design.
Layout.
Render of the PCB from KiCAD.

With a general concept in mind, I went over to Fusion 360 to generate a CAD model. A few iterations later and relearning how to CAD in a not entirely garbage manner, I had a workable design. I still don't know what is the best way to create the sketches and dimensions in a way that is easy to adjust later, but I tried my best.
CAD Model of the case.
At the same time I began putting together a schematic and layout for the circuitry. The microcontroller of choice was the ATMega32u4, since it is the most popular microcontroller for the QMK firmware I plan to use. A few switches, diodes, and LEDs later, I had something ready for shipout:

With parts and boards on the way, I tested out making the case for the numpad (Oct 12). The cutting operation began with an adaptive clearing for the pocket in the middle:
Adaptive Clearing with 1/8" endmill.
Afterwards, the program cut out the inner lip for the plate, then the drills for the corner screws, and finally the contour operation for the outside:
Inner lip, drills, and outer contour operations all done with 1/8" endmill.
The finished cutout (the part was not removable since I tested it out in 3/4" MDF while the model is 1/2"): 
Test cutting of the case in MDF.


I laser cut out some stencils for solder paste and reflowing the parts (Oct 29):
Stencil laser cut in 0.003" Duralar.

Spreading the paste.
After reflow:
Didn't have the USB C connector at the time and had to hand solder that later.

For the plate, I wanted to use aluminum. I never cut aluminum before on my CNC but now was a great time to try (Nov 11).  The stock was 1.5mm thick 5052 aluminum, and I used a 1/8, 2 flute end mill and some Tap Magic. The feedrate was 20 IPM with 0.012" depth of cut per pass:
Test cutting out the holes of the switches.
Got a little too ambitious trying to see if it would fit in the bottom hole with 1/16" radius corners (datasheet max is 0.3mm).
Switch fits in the dogbone'd hole.
After that successful run, I went on to the whole plate. I slightly modified the dogbone geometry for the corners so they would be smaller. My first dogbones in the cutting test I manually put in, but there was a nice add-in for Fusion 360 that I used to add dogbones for the whole plate that can be found here.
1/8" 2 flute endmill for all operations.


After exporting the G-code and continuous application of Tap Magic for cooling, I got this:
Messy.
With some clean up:
Removed most of the burrs.
Switches all fit!
The plate dimensions in CAD were 108.00 mm by 104.43 mm. The actual cut out plate came out to 107.9 mm by 104.7 mm. Not bad.

Before soldering all the switches to the PCB I realized there was going to be a clearance issue with the USB C connector with some types of USB C cables that have a thicker housing:
Uh-oh. USB C connection collides with the plate.
Soldering the PCB to the bottom of the legs for the switches (instead of the PCB sitting flush with the the bottom of the switches) gives just enough room for most cables to fit. It also turns out the cables I bought were very low quality and in some ports the USB-A side is loose, which led to my numpad being intermittently connected. When I used a snug cable or a C to C cable the numpad works fine every time.
Plate and PCB all together.
Backside.
The basic QMK firmware was easy to get working, and I was able to get keypresses on the switches and volume control on the encoder with minutes. However, the RGB LED control turned out to be a large pain in the neck. The APA102 driver in the QMK firmware has never been used before by anyone else's design and it clearly shows. Right off the bat, the base file does not compile since there was an unmatched parenthesis. I'm going to need to put some time into fixing the code and hopefully can get some nice colors running.