6. Electronics Design¶
Overview¶
This week I learned how to design a PCB board in KiCAD and milled it for my indvidual work. For my group work I tested a XIAO RP2040 with a oscilloscope and a analog discovery 2.
Group Work¶
This week we were asked to test a microcontroller using diffrent hardware testing devices. The ones we used were a multimeter, a oscilloscope, and a analog discovery 2. We used these tools to measure the voltage flow in a fadding LED that was hooked to an XIAO RP2040. First with the multimeter we saw the change in number form. With the Ociloscope when the alligator clips were put onto the two ends of the LED, we saw the change in the form of 2 lines, one represented low and the other high. The line that was low would get bigger when the LED went low and would get smaller when the LED went bright. It was opposite for the other line which represented the HIGH part of an LED. Finally with the Analog Discovery 2, we used pinheader wires on the same track as the LED to get jagged waves the repreastented the LEDs rise and fall in brightness.
What is Electroinc Design Automation¶
Electronic Design Automation (EDA) is a type of software used to help engineers design and build electronic circuits, such as microchips and circuit boards. These tools make the process faster and more accurate by allowing engineers to create, test, and improve their designs before they are built.
Some important parts of EDA include:¶
-
Schematic Design: Engineers use software to draw circuits and connect components.
-
Simulation: The design is tested in a virtual environment to make sure it works correctly.
-
Synthesis: The circuit design is turned into a format that can be built, like a blueprint.
-
Layout and Routing: The physical design of the circuit is created, arranging components in a way that makes them work efficiently.
-
Testing: The final design is checked for errors before it is manufactured.
EDA is important because modern electronics, like computers and smartphones, are extremely complex. Without these tools, designing and building advanced technology would take much longer and be more difficult.
Designing a Board¶
Lookback¶
I first thought of what I was going to design in KiCAD. I landed on making my pull down resistor LED design I used for my embeded programing week.
Seting up KiCAD¶
I first went to the KiCAD website and downloaded the version for mac. Then to get the libraries that we use for fab I first went under the assingment for the week and open the link to the libraries. This led me to a git website with multiple options for librarys for diffrent PCB board designing softwares such as eagle and KiCAD. Under the KiCAD file I followed the instrucions:
Adding Componets¶
To understand how to use KiCAD I followed this Tutorial and learned how to make PCBs. I had used KiCAD in the past and its the only board designing software I used during the week. To setup the PCB I first had to have all the componets needed and what they were connected to. To do this I made a new project and opened schematic editor. To add componets I clicked on the symbol button and added the following componets: 1 XIAO RP2040, 1 Surface Mount Button, 1 Surface Mount Light Emiting Diode, and 2 Resistors (The value doesnt matter since its added after the board). After I had all my componets in the editor, I added wires going from componet to componet based off my design I made on the breadboard for embeded programing with a few diffrences since a PCB is pretty diffrent from a breadboard.
Componet and wire tools
Heres my completed schematic design. You can see the wires each go from place to place for thier respective componet. The button was a birt strange since it has 4 nodes in design but only 2 in schematic mode, but after checking it in the PCB editor, I learned that as long as the corrolation of the wires were correct (where the signals were to go to) then it didnt matter that I had two wires going into the same port in the schematic editor
Mapping them out¶
The PCB editor is where the real work comes in for KiCAD. To start when you open it you first needed to press the update button to bring all the componets and connections from schematic editor to PCB editor. Once thats done I had to setup the componets in a way where the wires wouldnt overlap one another since it wouldnt work if they did. This was completed through a very intricate process known as guess and check. I would place the componets in a way and run wires to all the diffrent componets. Eventually I would run into a problem and would need to move around componets. I did this several times and eventually got my wires to work. From thier I changed my line type from an F cut to an edge cut. From thier I made a box almost encapcilating all the componets except the RP2040 so that it would be easier to plug in the USB-C plug. Its a process that tests the paticientce of the individual.
Milling¶
Installing bit and PCB Board¶
First thing I had to do when using the CNC machine is install the drill bit. I assumed Id be using the 1/32 bit for most if not all of my custom PCB so I installed that one. To do it I first had to remove the drill but that was curently in the CNC Machine to learn how to switch them out. To do this I use two wrenches, one right above the drill to unscrew it and one high up to hold the drill in place. After the old bit was removed I added the new bit into the hole and manually screwed it in until I needed the wrench. From thier I used the wrenches again but this time to tighten the bit into place. For the PCB board I found one that could fit into the machine in the fab lab and put double sided tape on the non-copper side.
Setting up file¶
I first exported my files using the plot feature. I only grabbed the files for edge and f cuts since they were the only types of cuts I design for my board. From thier I sent the files to the Milling Machine. It gave me a third file known as the job file when I plotted it, I didnt need it for milling but its in my files refgardless. On the Bantam Software I added both files (F and edge cuts) and finsihed prep.
Milling¶
Cleanup and soldering¶
After the milling was completed I cleaned up the the excess pcb from the drilling with a shop vac and removed the PCB. Afterwards I found the right resitors, an LED, a button, and a RP2040 for the board. After a bit of struggle soldering because surface mount is tricky I had a working example of my PCB design.
Reflection¶
This week was a bit tricky since KiCAD is much diffrent from something like Wokwi so thier were a few challenges faced during the week. Mainly in deisgn the PCB Board without having the wires overlap. I learned how to add libraries to KiCAD and I thought that was very cool since it allows me to download other libiraries for unique componets in the future. Overall it was an enjoyable week.