4. Electronics Production

This week we worked on milling our first PCB (Printed circuit board) and soldering some basic components (LEDs, resistors, a button, a microcontroller and some headers). I was particularly excited for electronics production as I have always wanted to design and make my own PCBs. While we did not get to design them (yet), we did get to use the Roland SRM-20 milling machines to cut the PCB blanks. I've also soldered a lot the last few years and am quite familiar with electronics, so that part was not new and was quite easy for me. Fo example, I worked on an old French recording console, and switched out over 900 components for new ones! Girardin C206 C206 slot

Group Project

You can find the group project for this week here!

PCB Milling

First we learned about the milling machine (Roland SRM-20), and the different sized endmills we will be using. The sizes are in Imperial units, and the common ones are 1/64" for milling the traces, and 1/32" for making holes and cutting around the PCB. For the cutting speed, we generally use 3mm/s for traces (the actual connections between components, like cables), 1,5mm/s for holes, and 0,5mm/s for cutting the size of PCB we want from our blank board. These are very fragile and we were warned several times to not drop them or touch the tips so as to not break them. Luckily I managed to not break anything this time! I first accessed the Mods Project Website, which can convert images to files for use with different machines, as well as connect directly to the machines. Then I uploaded the three images below (one by one), for Traces, Holes and Outline cut Traces image Holes image Outline image I was then able to get a file to feed into the SRM-20 for PCB milling. Before milling, it is necessary to prepare the machine, first loading a PCB blank with double sided tape, making sure it is as flat as possible. Next, I attached the 1/64" endmill (being very careful not to drop it or touch the cutting part), calibrated the X/Y axis and the Z axis, and launched the milling! Once the Traces was finished, I switched out the endmill for a 1/32", and made the holes and outline cut with that. And that was the PCB done! PCB Milling After milling the PCB, I realised the endmill had not gone deep enough in the top left corner. PCB issue To remedy the problem, I scratched away the copper with a small knife to make sure my traces were not connected. I tested continuity with a multimeter and it all worked!

Soldering

After milling, I went to select my components and started soldering them onto the board. Soldering components To do this, I followed the diagram provided on the Fab Academy assessment documentation. PCB wiring diagram I had no trouble soldering as I was quite used to it. Soldering view Soldering Top View

Testing the PCB

Once I finished soldering all the components, I coded a quick Blink example in the Arduino IDE: The .ino file is available here: const int buttonPin = D1; const int ledPin = D0; int buttonState = 0; void setup() { pinMode(ledPin, OUTPUT); pinMode(buttonPin, INPUT_PULLDOWN); } void loop() { buttonState = digitalRead(buttonPin); if (buttonState == HIGH){ digitalWrite(ledPin, HIGH); } else{ digitalWrite(ledPin, LOW); } } I was stuck for some time as I had simply forgotten the == and instead had written =... After some debugging and the help of a friendly instructor, the issue was found and corrected! The Blink worked! And so I was done for this week!