Week_8 Assignments


Group assignment

For testing our machine we started by surfacing the bed. We fixed a surfacing endlill to the machine and started surfacing.

\

After surfacing is done.

To fix the FR1 board to the sacrificial board with double face tape. But before adding the double face tape we use the yellow paint tape to make it easy for removal.

The testing board downloaded the testing board file went through the whole process explained later to get the gcode.

From the test I concluded that the machine can handle thin traces like 0.01 inch or 0.254mm.

Individual assignment

For my assignment I fabricated the same board I design in Week_6. I add a moseft, a voltage regulator and a powerjack to control a motor throughout two pins.

Testing the board and the on board input and output:

As you can see in the design I added a pushbutton connected to pin D3 in the Xiao ESP32 C3 board and connected to it a pull up resistor also I connected an LED and a resistor with pin D2 and an on board Input and output devices.

Code:

  
  void setup() 
  {
    Serial.begin(115200);
    pinMode(D3, INPUT);
    pinMode(D2, OUTPUT);

  }

  void loop() 
  {
    digitalWrite(D2, HIGH);
    Serial.println(digitalRead(D3));
    delay(1000);
  }

  

You can download my files from here: