A full-optional, custom-built PCB driller.

0 Shares
0
0
0

Simple DIY PCB drill machine.

When it comes to PCB fabrication, a good PCB drill is necessary to finish the fabrication quickly and perfectly.

I’m demonstrating my fully customizable, do-it-yourself PCB power drill. This updated drill includes new features: a pedal press drill, an air blower, and LED lighting for the drill area. A CD drive mechanism is essential for its primary functionality.

Hardware and supplies I used include a CD drive mechanism, Arduino, air blower, LED strip, aluminum angle and plates, acrylic sheet, thread rod, nuts, bolts, and screws.

The material and part used for the project

CD drive modification

Modified CD drive mechanism, bottom view

I removed the laser head from the CD drive and converted the space into a flat mount for the drill motor. I used a piece of aluminum and a plain PCB board, fastening them with a couple of screws.

Modified CD drive mechanism, top view
Fixing Dc motor
Drill motor holder

Drill-pressing system

Press and release system - exploded

A servo horn is placed between two roller shafts to press and release the driller.

Press and release system- assembled
Completed drill press and release mechanism

Front and rear views of the completed drill press/release system.


Column and base of the driller

Old hard disk case

I employed a hard disk case as the primary base to enhance stability during drilling. Its substantial weight effectively reduces vibrations, ensuring a steady foundation for the operation.

Base and column of the driller

A 4mm thick aluminum plate is attached to the hard drive case to create a work area and a 10mm thread bar mounted on the plate serves as a vertical column.

Base and power plug holder

A piece of acrylic is bent and inserted into the column rod and it is used as a DC power plug holder.

Beam holder

To create a horizontal beam for mounting the drill mechanism, I fastened two aluminum “L” angles to the vertical column.

Base, Column, beam holder and beam

Four 70mm M8 bolts and nuts are used to build four beams. The rear side of the beam is used to mount the circuit board.

Circuit board

The circuit board includes an Arduino Nano and a power supply for the blower, LED, and drill motor. Arduino is used for pressing and releasing the drill.


Circuit and Arduino code
Circuit schematic
PCB design
#include <Servo.h>

//Include the servo library

Servo servo1;

int joyX =0;
int joyY =1;


int joyVal;

void setup()
{ //attaches our servos on pins PWM 5
 servo1.attach(5);
}

void loop()
{
  //read the value of joystick (between 0-1023)
  joyVal = analogRead(joyX);
  joyVal = map (joyVal, 0, 1023, 0, 180); //servo value between 0-180
  servo1.write(joyVal); //set the servo position according to the joystick value

  joyVal = analogRead(joyY);
  joyVal = map (joyVal, 0, 1023, 0, 180);
  servo2.write(joyVal);
  delay(15);
}

Servo motor assembly

I attached a servo motor to an acrylic plate and positioned it on the front side of the beam.

Drill base and drill mechanism mount

Another pair of “L” angles are vertically fixed at the end of the beam, with four spacers attached at the ends of each aluminum angle. The drill mechanism will be mounted on these four spacers.


Pedal for drill press

A drill press pedal is created using a joystick module connected to the Arduino via a USB connector.

Drill Pedal board
Drill Pedal board

Completed drill machine
Completed drill machine rear view
0 Shares
Leave a Reply

Your email address will not be published. Required fields are marked *

You May Also Like