Week 08 Electronics Production
Starting to manufacture PCB's
Failed PCB
For this week, the circuit board from week 6 was physically made. First, I want to clarify that my first board was incorrect, but in that process, I show all the steps of how to use the software and machines. The correct board will be shown after that. That being said, these were all the parameters I used for KiCad 8.0:
This is how the board looks along with its cutting line, which is located in the 'Edge cuts' layer:

This is the path to export the SVG files used by the CNC software we use, which is called modsproject and is open source:

To export only the engraving areas, the rest of the layers must be removed, as shown in the image:


When entering the page, nothing will appear, so we must right-click and, at least for our machine, follow this path: programs > open program > Roland > mill 2D PCB.
For engraving, the colors must be inverted because the machine 'removes' the black area. For the rest of the specifications, I used all the default settings in the program, first selecting 'mill traces 1/64' to indicate that it will be engraved. (If it's the board's cutting area, 'mill outline 1/12' is selected, and the image colors are not inverted.) Then, I set the axes to 0 and finally pressed 'calculate' to show how the route would be made and to download the file that will be sent to the CNC.


It is important to note that the CNC software will not open unless the machine is connected.
The first step is to set the axes to 0, making sure the corresponding tool is already placed in the machine.



Then, the program is loaded, and the machine does the rest, but we have to change the tool and set the 0 of the axis.



Once that is done, the components are soldered onto the board.


After this, the board is programmed, but as I mentioned at the beginning, the first board was not made correctly, so it is not worth showing failed codes.
True PCB
This is how my SVG files looks like:


Now, here is a quick summary of the second board:







To program this Attiny412, I used a development board made at the Fablab called Quentorres. Here is the link so you can see the full process.
However, it is important to clarify that to program it, new board definitions must be installed in the Arduino IDE, and a resistor must be placed in parallel with RX and TX for proper programming.
Once everything is installed correctly according to the tutorial in the link, the parameters should be set as follows:

And it is uploaded using this button:

This is how it's connected my PCB:

I used this two codes to demostrate that my board works
//blink int LED = 4; int LED2 = 3; void setup() { pinMode(LED, OUTPUT); pinMode(LED2, OUTPUT); } void loop() { digitalWrite(LED, HIGH); delay(1000); digitalWrite(LED, LOW); delay(1000); digitalWrite(LED2, HIGH); delay(1000); digitalWrite(LED2, LOW); delay(1000); }
//button const int led1 = 3; const int led2 = 4; const int boton1 = 0; const int boton2 = 1; void setup() { pinMode(led1, OUTPUT); pinMode(led2, OUTPUT); pinMode(boton1, INPUT_PULLUP); pinMode(boton2, INPUT_PULLUP); } void loop() { if (digitalRead(boton1) == LOW) { digitalWrite(led1, HIGH); } else { digitalWrite(led1, LOW); } if (digitalRead(boton2) == LOW) { digitalWrite(led2, HIGH); } else { digitalWrite(led2, LOW); } }
This week, I had several problems. First, since I am not very skilled in KiCad, I struggled a lot with exporting things to the online program. Second, most of my boards came out fine, but they were ruined by the outer cut of the board. I ended up solving this by shifting the axes slightly down and to the left. The biggest problem I had was a "small" typing error, where the buttons were not correctly placed in KiCad itself. So, I basically had to redo the entire board. But in the end, everything was successfully completed.
Here you have the link to our group page
Here you can find the files of each process: