Electronics Production

Zach's Information, Notes, Documentation, etc. for w08 will live here. Please click on the collapsibles to view more detailed information. In each of the sections, more information about the Process, Improvements to Worflow, General Takeaways, Research, and any Necessary Files.

The distance between insanity and genius is measured only by success — Bruce Feirstein

Plan/Dates:

  1. We have at multiple options for milling at my FAB Lab. For this week, I am using the Carvera CNC machine and the Xtool F1 Ultra Laser are present, but only the Carvera CNC will work for this purpose because the XTool's Laser is not functioning correctly
  2. To start download the Makera CAM and the Carvera Controller
  3. For my Tools: 1/64 end mill, 10 degree engraving bit, 15 degree engraving bit
  4. For my Material: FR-1 PCB Board
  5. I prepared my files for the Carvera using MODS
  6. I took the KiCAD File from the board that I made in the past few weeks (a basic board with some pinouts) and milled it using the Carvera
  7. One of the best parts about the workflow for the Carvera is that because of its autoleveling feature, setting up the toolpath is essentially as simple as plugging in a PNG or SVG of your board and (more or less) just hitting "go." (This also helps to alleviate the issue of breaking copious numbers of bits)
  8. After I pulled everything off of the Carvera, I moved on to soldering. Because this was my first ever experience with Soldering I took a board from Adrian's site on networking, milled it, and found all of the components necessary (a capacitor, 3 and 6 pinout, an LED, and a transistor) and began to practice my Soldering on that before I moved on to my own board
  9. This practice took MUCH longer than I anticipated and because of a scheduling issue for me, I was not able to finish the soldering and testing of my own board. That said, I did test my connections on Adrian's boards and they worked well.
  10. I did, however, get a chance to test my updated board, at least approximately in Wokwi before I started soldering to make sure that my board (namely the LEDs that I was going to be blinking) and code, at least in theory, would work correctly.
  11. void setup() { // initialize digital pin D6 as an output pinMode(D6, OUTPUT); } // the loop function runs over and over again forever void loop() { digitalWrite(D6, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(D6, LOW); // turn the LED off by making the voltage LOW delay(500); // wait for a half second digitalWrite(D6, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(D6, LOW); // turn the LED off by making the voltage LOW delay(500); // wait for a half second digitalWrite(D6, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(D6, LOW); // turn the LED off by making the voltage LOW delay(500); }
  12. 3-19-25 Update: I will have everything soldered and tested for my own board by the EOW this week.

  1. The obvious first improvement to my workflow would be that I should have alotted more time for Soldering and testing my board. Frankly, I just was not exactly sure what I was getting into with the soldering when I started and the process took me so, so much longer to figure out than I thought.
  2. One of the next improvements that I would make to my workflow would be to CAD a case for the finished and tested boards - this would allow me to have a bit more peace of mind when moving them around.
  3. Try not to overthink the whole process - take each step one at a time

  1. Always budget more time for catch up than seems necessary at the beginning of the week
  2. Soldering sucks/is very tedious. Having a clean work environment and some quiet for concentration are very helpful.
  3. For the final project, I will obviously need to solder, but one of the things that I need to do for that project will be to think about what surface I want to attach my board to. If things go as planned, which is obviously not guaranteed, I may want to think about using a flexible board.

  • MODS Tutorial
  • Basic Soldering Guide