08—Electronics Production

Assignment

00—Reflection

PCB making was a bit of a struggle. Mostly because I was rushing through the process a bit too much. I would rather work quickly though with something like this because it lets me go through the whole workflow more than once. That said I could have just been a bit more careful during soldering the first PCB… Early in the week I was mostly trying to work out my final project concept. I have a solid idea of what I want to do, but I needed to figure out how the composition should work. I also needed to check in with myself if it was an art piece worth making. So I was mainly concerned with the question “is this worth my time?” “will this be visually impactful?”.

Basically, at the moment I am working through the disenchantment phase of my project. The initial excitement has warn off and I need to address some of the fundamental questions of the project. These are the technical and aesthetic problems that I was aware of in the beginning that seemed trivial, but this weekend I realized some of them might actually threaten the intent and goals behind the final work.

01— Group Assignment

For the group assignment we did a custom PCB to send out to a PCB manufacturer.

Link to group asignment

02— Basics of PCB Milling

Notes From Class

03— Full Workflow PDF to PCB

Process Overview

Prepping in KiCAD

  1. The first step in the process is KiCAD. Here it is assumed that a finished board that is designed within the capabilities of the machine has been designed beforehand.
  1. Go to footprint workspace of finished board
  1. Click print and export the relevant layers. In this case check F.Cu (our top layer traces) and Edge.Cuts (our PCB profile).
  1. Save as PDF within the print dialog
  1. Open illustrator click top bar file → open select the PDF you generated. The file needs to be imported this way versus dragged in to allow for proper editing.
  1. Now this is a bit more of an art form, but you essentially need to make sure objects are properly demarcated. Delete the white background and use a combination of the unite and divide pathfinder functions.
  1. Now you need to group your elements in separate layers. The layers you need are your trace, holes, and edge cuts. There are different way to go about isolating and grouping them, but you should be able to figure out how to do this if you know the basics of Illustrator ;) .
  1. Final output: This should be your resulting output exported in PNG at 1000 DPI.

Loading The PNGs Into Mods

  1. This process will need to be repeated for every machining operation. The slight difference in settings for the various controls is noted below.
  1. Open Mods website (works better in Safari and Firefox in my experience)
  1. RMC → programs → open program → SR-20… Mill 2D PCB
  1. Bring your Traces PNG into the Read PNG block
  1. LMC → traces preset on Set PCB Defaults
    • For the holes and profile layers choose LMC → mill outline preset
  1. Cut Depth and Max Depth set to .15mm on the Mill Raster 2D block
    • For the holes and profile layers this setting does not need to be changed from default

  1. On the Roland SRM Milling Machine… block edit the following: Passes[2] X[0] Y[0] Z[0]
  1. For the input output Roland SRM Milling Machine… there is a slider button in the off state as default, change to On/Off [ON]
  1. This automatically downloads the machining file to your computer.
  1. Rename the files and place in a folder to be brought over to the Mill!

Machining With The Roland SRM20

  1. Bring the folder onto the machining PCs local drive
  1. Open machine and brush away dust on the bed so you have a clean surface to mount your PCB milling stock.
  1. Mount your PCB milling stock with the double sided adhesive tape
  1. Remove your endmill with the Allen wrench and put in a [1/64”] flat endmill finger tight in collet.
  1. Set your X and Y origin through the control software.
  1. Decrease rapid move settings and bring you endmill down slowly till it is close enough to just start to burnish the copper PCB surface when you rotate the endmill manually and set you z in software.
  1. LMC → cut delete any files currently loaded in the dialog and add in your first machining file which should be your traces initialize operation and close protective shroud.
  1. Repeat process with appropriate endmill for other operations.

04 — Soldering + Testing

BOM

Soldering workflow

  1. Visual inspection of PCB. Since it is a simple PCB I can see if shorts are present.
  1. Gather your components
  1. Solder smallest components first from center of the PCB outward. This meant I started with the LEDs first applying solder to one of each of the SMD LED pads. Then I held the LED down with Tweezers and soldered one of the LED pads down then I solder the other side down while holding module with tweezers. This basic process was repeated for all SMD components.
  1. Code was loaded onto Xiao (code is below) and ran with Xiao was connected to PCB female header pins.
    const int button1 = 8;  // Button connected to pin 8
    const int button2 = 9;  // Button connected to pin 9
    const int led1 = 0;     // LED connected to pin D0
    const int led2 = 2;     // LED connected to pin D2
    
    void setup() {
        pinMode(button1, INPUT_PULLUP); // Use internal pull-up resistor
        pinMode(button2, INPUT_PULLUP);
        pinMode(led1, OUTPUT);
        pinMode(led2, OUTPUT);
    }
    
    void loop() {
        if (digitalRead(button1) == LOW) {  // Button is pressed (active-low)
            digitalWrite(led1, HIGH);
        } else {
            digitalWrite(led1, LOW);
        }
    
        if (digitalRead(button2) == LOW) {  // Button is pressed (active-low)
            digitalWrite(led2, HIGH);
        } else {
            digitalWrite(led2, LOW);
        }
    }
  1. Final Working PCB

05— My results

I had to do two versions of my PCB from a soldering error on the first PCB. To save time I was using the castellated pins on the Xiao to solder directly to the PCB instead of using female sockets. This was a mistake because the XIAO has pins on its underside and these were shorting across the exposed copper on the PCB. I had actually anticipated this and was planning to add tap underneath the Xiao to Isolate it from the copper PCB, but I was working quickly and forgot to do this. Instead of desoldering I decided to remake the PCB. Ultimately, from this experience I will never use castellated pins unless it is an explicit design requirement.

For both PCBs I had no issue milling the traces, but many issues trying to initialize the profile milling operation. I spent an hour trying to work this out the first time and figured out it was simply the Mac OS to PC file transfer on the portable drive. Basically it was doubling the files and creating a copy of each machining file that was a larger size. This larger copy was some kind of artifact and it was just the smaller version that was the usable copy.

06— Volt_Jig for Fast Multi Voltage Testing

This was a quick personal project I made to test out different actuators I am looking at using for my final project. In the past constantly switching between different voltage when testing different output devices is a pain so I wanted something that could provide 4 of the most common voltages I use. If this is something I end up using a lot (I think I will) I will turn it into a custom PCB version. For now Though I am quite happy with how it turned out.

Project Files