The equipment used in Litchee’s studio for PCB fabrication is the Snapmaker.
Official website: https://www.snapmaker.cn/
Snapmaker is a versatile 3-in-1 desktop manufacturing tool that integrates 3D printing, laser engraving, and CNC carving in one machine. With its sleek design and intuitive operation, it is ideal for makers, designers, educators, and labs. Its innovative modular design allows users to easily switch between different work modules to meet a wide range of creative needs.
*Note: Users can use third-party software such as Autodesk Fusion 360 to convert supported file formats.
As a 3-in-1 desktop manufacturing tool, Snapmaker integrates 3D printing, laser engraving, and CNC carving. Beyond its standard features, Snapmaker can also be used to mill PCBs (Printed Circuit Boards) using the CNC module. The machine provides high precision for operations such as trace isolation and drilling. Below are the steps and principles for milling PCBs with Snapmaker:
1. Prepare the PCB Design Files:
2. Install the CNC Module:
3. Secure the PCB:
4. Choose the Right Bits and Tools:
5. Set the Machining Parameters:
6. Start CNC Milling:
7. Post-processing and Cleaning:
In the previous week 6 assignment, I created the schematic in JLCPCB EDA.
JLCPCB (JLC Electronics) is a company that provides one-stop infrastructure services for the electronics industry, headquartered in Shenzhen. Since its establishment in 2006, JLCPCB has been committed to providing cost-effective PCB prototyping, small batch production, SMT assembly, laser stencil, FA mechanical parts, and other services to electronic engineers, research institutions, and enterprises around the world.
Therefore, I can directly open the already saved PCB files in my account and place an order.
Go to the "Order" menu at the top and select "PCB Order" to proceed.
After clicking, the Gerber files, coordinate files, and BOM list will be automatically generated.
JLCPCB allows online ordering. You only need to confirm the board specifications, which is very convenient.
I chose FR-4 as the board material, and selected the default quantity of 5 pieces, which is free.
The solder mask layer I designed in week 6 is black, with gold-plated pads.
I kept all other settings as default. Finally, I selected the delivery time. Black solder mask takes a little longer, and production can be completed in 3 days.
The delivery is also free!!!!
Finally check the order information and it can be submitted.
I exported the Gerber file in JLCPCB EDA.
Before exporting, it will prompt to check DRC.
It is exported as a compressed file package.
I used Gerber2PNG to generate PNG images from the PCB file.
Website: https://gerber2png.fablabkerala.in/
After opening it, I found some problems. The PCB layout I drew in JLCPCB EDA is a two-layer board.
I sent the PCB layout to my friends for review. They pointed out that this part had copper fill, which would require wire-jumping (flywires), and that it needed to be made as a two-layer board. Then, the two layers would need to be combined into one.
Considering that my ability to fabricate a double-layer board is limited and the failure rate would be high, I decided to modify the layout.
I redrew the layout as a single-layer board and kept only the extended part. Below is the modified schematic:
Schematic file:
I opened the new design file with Gerber2PNG, and everything looks perfect!
I exported the cutout and drilling images.
Since the CNC machine I was using this week broke down, I decided to try one of the most traditional methods—chemical etching—to make my own PCB. Although this process is more cumbersome than mechanical machining and involves chemical handling, the overall experience was rewarding and helped me better understand the fundamental principles of PCB formation.
What is the etching method?
The etching method is a technique that removes excess copper from a copper-clad board using an etching solution. Simply put, it involves protecting the parts of the circuit you want to keep (for example, using toner or oil-based ink), and then using the etching solution to "bite away" the unwanted copper. In the end, only the conductive traces of the circuit pattern remain.
Item | Description |
---|---|
Single-sided copper-clad board | Common phenolic board or fiberglass board |
Laser printer | Used to print the circuit pattern (inkjet printers do not work) |
Glossy paper / transfer paper | Used for transferring the pattern (I used magazine paper) |
Iron / laminator | Used to heat-transfer the pattern |
Ferric chloride (FeCl₃) | Commonly used etching solution |
Plastic container | For holding the etching solution (metal containers are not allowed) |
Gloves, mask | Basic protection during chemical handling |
Alcohol / nail polish remover | For cleaning the board and removing toner |
Electric drill / manual drilling tool | For drilling component holes |
After applying a solder mask sticker, I proceeded with soldering. I soldered the ESP32S3 main board onto the extension board.
After completing the PCB etching process, I continued with functional testing of the output device. This time, I chose a single-color LED module and used simple programming to make it blink, in order to verify whether the output pin on the extension board was functioning correctly.
The LED module I used comes with a built-in current-limiting resistor, so it can be connected directly to the development board without an external resistor. The module lights up with a HIGH signal.
LED Module Pin | Connection |
---|---|
VCC | 3.3V |
GND | GND |
Signal | GPIO2 (D2) |
I wrote the following simple code in Arduino IDE to make the LED blink in a 0.5-second cycle:
#define XIAO_ESP32S3_D1
#define LED_PIN 3 // Connected to D2
void setup() {
pinMode(LED_PIN, OUTPUT);
digitalWrite(LED_PIN, HIGH); // Turn on the LED
}
void loop() {
digitalWrite(LED_PIN, HIGH);
delay(500);
digitalWrite(LED_PIN, LOW);
delay(500);
}
After uploading the code, the LED module started blinking as expected.
I tried modifying the delay()
values to observe changes in the blinking rhythm.
At the same time, I confirmed that the D2 pin on the extension board was outputting the correct logic level.
There was no heat or abnormality from the power wiring or the module, indicating that the current-limiting design worked well.
Through this small test, I verified the following: