Skip to content

WEEK 08 Electronics Production

GROUP ASSIGNMENT:

FITCAM

I downloaded FLACAM software for the PCB CNC milling from https://bitbucket.org/jpcgt/flatcam/downloads/

My instructor Ricardo gave me this SVG line test.

In Flatcam just drag and drop the file and double click the geometry

flatcamlinetest0.jpg

I changed those values. You can hold the cursor over and it will give you explanations. Finally create a CNC job

flatcamlinetest.jpg

From here we can see the traces and we can generate a G-CODE file

flatcamsetup2.jpg

CANDLE

I downloaded from https://github.com/Denvi/Candle

  1. check connection of your USB port with the machine

    candle1.jpg

  2. Drag and drop the g-code file and set up the probe test

    candle3.jpg

  3. I used arrows on the side to move the drill to my XY ZERO. I used a piece of paper to determine my Z ZERO (moving the frill down with very small step till the paper is squeezed tight between the plate and the drill but still possible to remove) ATTACH THE PROBE CLIP TO THE MILL AND PRESS PROBE

    probe.jpg

    candle4.jpg

    candle5.jpg

  4. VERY IMPORTANT: REMOVE THE PROBE FROM THE ENDMILL!

    probe2.jpg

  5. I went to EDIT, and the I pressed SEND and unpressed the PAUSE button that is automatically ON after sending the file to the machine

    candle6.jpg

  6. After seeing the milling decided to ABORT the process because I didn’t like the result. I lover the Z 0.01mm down. I moved also XY to a new ZERO location and SEND it again

    candle7.jpg

  7. As you can see there were few tests (because I didn’t activate the heigh map and was trying to compensate with changing the Z depth and slowing down the feed rate)

    linetest1a.jpg

    linetest1.jpg

  8. It’s very important to activate the HEIGHMAP that is not automatically ON

    candle8.jpg

    linetest2.jpg

CHANGING THE COPPER PLATE

I downloaded The GSENDER program to clean up and level up the CNC’s workspace https://github.com/Sienci-Labs/gsender/releases

The program is very intuitive. You need to be disconnected from other programs

gsender.jpg

gsender2.jpg

Remove the old copper board

cleaning.jpg

Apply the levelling milling bit

cleaning2.jpg

cleaning2a.jpg

cleaning3.jpg

cleaning3a.jpg

I put the CNC to a box to make less mess 🙂

cleaning4.jpg

Obviously some mistakes were done. As well as my surface was a bit tilted because of the guides that felt down (you can see horizontal lines on the MDF piece)

cleaning5.jpg

But after putting them back on and running the program again. Everything looks perfect. The hole wont bother me for now.

cleaning5a.jpg

Time to put a new v-shaped end mill

cleaning7.jpg

In the meantime I practiced soldering on the old copper board

cleaning8.jpg

Attach double tape and place it on the CNC

cleaning9.jpg

cleaning10.jpg

Remember to solder the new copper board to the probe

cleaning8a.jpg

BOARDHOUSE

To make a professional fancy boards you can visit https://jlcpcb.com/

Here’s a simulation:

boardhouse.jpg

INDIVIDUAL ASSIGMENT:

PCB PRODUCTION:

KICAD EXPORT

After designing the board in KiCad I exported the files. Firstly the paths and cut-out

You need to choose layers (copper lines and edge cut-out)

kicadexport.jpg

kicadexport2.jpg

Next the drill holes

kicadexport3.jpg

kicadexport4.jpg

FITCAM PREPARATION

Drag and drop 3 files exported from KiCad. Select them all and move to the canter.

Flatcam.jpg

Select the fist one (double click) and choose CUTOUT TOOL

FC2.jpg

I choose those settings (holding cursor over the function, it gives explanation) and CREATED GEOMETRY

FC3.jpg

In the PROJECT TAB select the geometry (double click)

FC4.jpg

I choose those settings and GENERATE CNC JOB

FC5.jpg

Now I confirm that everything looks ok and SAVE G-CODE

FC6.jpg

Time to set up the paths. Double click the second file.

FC6b.jpg

ISOLATION ROUTING and GENERATE GEOMETRY

FC7.jpg

FC8.jpg

FC8b.jpg

I choose those settings and GENERATE CNC JOB

FC9.jpg

But there’s a problem, the drill won’t pass everywhere because of its thickness. I need to change the drawing.

FC9b.jpg

Back to KiCad, save again, delete the old file, update the new one, place in the same spot and now it works good.

FC9c.jpg

FC9d.jpg

GENERATE the CNC JOB and after SAVE THE G-CODE

Time for the drill holes, back to the PROJECT TAB, double click Excellon file

FC9e.jpg

Choose Drilling Tool

FC10.jpg

I change those settings and generated CNC JOB

FC11.jpg

Save the G-CODE

FC12.jpg

FINAL PROJECT:

FC13.jpg

That’s a great online G-CODE visualizer, for checking if everything is fine with the code before running it into the machine

https://ncviewer.com/

CANDEL CUT OUT

For the circuit I followed the same steps as in the LINE TEST And for the cot-out I change the milling bit

newbit.jpg

Made a new Z ZERO with probe clip

newbit2.jpg

Remove the PCB with spatula

newbit3.jpg

Cleaned with alcohol

newbit4.jpg

And started soldering

soldering.jpg

Unfortunately I destroyed some lines and needed to use cable. But after checking with multimeter there were some unwanted connections

soldering1.jpg

So I needed to unsolder and make a new one

soldering2.jpg

After few more tries and mistakes I finally got my boards

soldering3.jpg

RUNNING PROGRAM:

CAT BUTTON PCB

I made again same circuit in Wokwi and edited my code from week 4 to show ON and OF in the serial monitor

WOKWI.jpg

PUSH BUTTON (pull up resistor)+ LED

const int buttonRed = D9;
const int ledRed = D7;

void setup() {
  Serial.begin(115200);       // Start Serial Monitor
  Serial.println("Ready");    // Prints "Ready"

  pinMode(buttonRed, INPUT);  // Button not pressed = pin reads HIGH (due to the pull-up resistor)
  pinMode(ledRed, OUTPUT);    // Set LED pin as OUTPUT

  digitalWrite(ledRed, LOW);  // Start with LED OFF
}

void loop() {
  bool redState = digitalRead(buttonRed);  // Reads HIGH or LOW
  bool ledState = !redState;               // Invert to match LED behavior

  digitalWrite(ledRed, ledState);          // Controls LED

  Serial.println(ledState ? "ON" : "OFF"); // Prints "ON" or "OFF"

  delay(100);
}

SOS LED BLINK (by chat GPT)

const int ledRed = D7;

void setup() {
  Serial.begin(115200);
  Serial.println("Ready");
  pinMode(ledRed, OUTPUT);
}

void loop() {
  // SOS in Morse Code: "... --- ..."

  // Three short blinks
  for (int i = 0; i < 3; i++) {
    blinkLED(200); // Short blink (200ms ON, 200ms OFF)
  }

  // Three long blinks
  for (int i = 0; i < 3; i++) {
    blinkLED(600); // Long blink (600ms ON, 200ms OFF)
  }

  // Three short blinks again
  for (int i = 0; i < 3; i++) {
    blinkLED(200); // Short blink (200ms ON, 200ms OFF)
  }

  delay(2000); // Pause before repeating SOS signal
}

void blinkLED(int duration) {
  digitalWrite(ledRed, HIGH);
  delay(duration);
  digitalWrite(ledRed, LOW);
  delay(200);
}

REWARD MACHINE PCB

I did the same for my Reward Machine PCB

WOKWI2.jpg

PUSH BUTTON (pull down resistor) + LED

const int buttonRed = D9;
const int ledRed = D6;

void setup() {
  Serial.begin(115200);
  Serial.println("Ready");

  pinMode(buttonRed, INPUT);  // Button with pull-down resistor (LOW when not pressed)
  pinMode(ledRed, OUTPUT);    

  digitalWrite(ledRed, LOW);  // Start with LED OFF
}

void loop() {
  bool redState = digitalRead(buttonRed);  // Reads HIGH when pressed, LOW when not

  digitalWrite(ledRed, redState);          // LED follows button state directly

  Serial.println(redState ? "ON" : "OFF"); // Prints "ON" when button is pressed, "OFF" when not

  delay(100);
}

SOS LED BLINK

const int ledRed = D6;

void setup() {
  Serial.begin(115200);
  Serial.println("Ready");
  pinMode(ledRed, OUTPUT);
}

void loop() {
  // SOS in Morse Code: "... --- ..."

  // Three short blinks (S)
  for (int i = 0; i < 3; i++) {
    blinkLED(200); // Short blink (200ms ON, 200ms OFF)
  }

  // Three long blinks (O)
  for (int i = 0; i < 3; i++) {
    blinkLED(600); // Long blink (600ms ON, 200ms OFF)
  }

  // Three short blinks (S)
  for (int i = 0; i < 3; i++) {
    blinkLED(200); // Short blink (200ms ON, 200ms OFF)
  }

  delay(2000); // Pause before repeating SOS signal
}

void blinkLED(int duration) {
  digitalWrite(ledRed, HIGH);
  delay(duration);
  digitalWrite(ledRed, LOW);
  delay(200);
}

FILES:

KICAD

REWARD MACHINE:

BUTTON:

FLATCAM

REWARD MACHINE:

BUTTON:

CHECKLIST:

Group assignment:

  • Characterize the design rules for your in-house PCB production process: document feeds, speeds, plunge rate, depth of cut (traces and outline) and tooling.
  • Document the workflow for sending a PCB to a boardhouse
  • Document your work to the group work page and reflect on your individual page what you learned

Individual assignment:

  • Make and test a microcontroller development board that you designed

Learning outcomes:

  • Described the process of tool-path generation, milling, stuffing, de-bugging and programming
  • Demonstrate correct workflows and identify areas for improvement if required

Have you answered these questions?

  • Documented how you made the toolpath
  • Documented how you made (milled, stuffed, soldered) the board
  • Documented that your board is functional
  • Explained any problems and how you fixed them
  • Uploaded your source code
  • Included a ‘hero shot’ of your board