banner
News center
Wide-ranging knowledge in sales and production

How to Make an Arduino-Based Copper Wire Winding Machine

Oct 14, 2024

Automate your copper wire winding needs with this awesome kit.

If the video player is not working, you can click on this alternative video link.

Need some copper wire wound? Then why not check out this amazing Arduino-based copper wire winding machine.

No longer will you need to do this laborious task by hand. Just let the power of Arduino do the heavy lifting for you.

RELATED: HOW TO BUILD YOUR VERY OWN ARDUINO-BASED DIY BRAIDING MACHINE

Like most projects of this nature, you’ll need a few basic tools (listed below), and some other bits and bobs to get the job done.

We have included links to some of the products in case you need to buy them:

Main components:

Gear needed:

Right, now to get on with the build. Hold on tight, there is a lot to get through.

The basic concept of the machine is to create a smaller spool of copper wire from a larger one automatically. A rotary dial is used to select the number of turns of the wire you want, which displays on the OLED display.

Once set, the machine gets to work in short order.

The first step is to dismantle that old DVD drive you’ve managed to salvage. You are after the DVD laser head assembly inside.

With that piece isolated, strip and solder the stepper motor terminals to the appropriate contacts on the salvaging DVD player’s optical laser head’s motor. This will vary depending on the design of the DVD player in question.

Strip off the part you don’t need (basically the optical pickup) and make room for the wire guider you will build later. Watch the video for more details on this part.

Next up, take the bolt and file flat the topmost part of two opposite sides. This will be used to make the wire guider later on.

Then drill a hole in the center to guide the copper wire between the spools. Bevel the hole, if required.

Now insert the wire guider into the middle of the former DVD laser head assembly. Use a bolt to secure it into place.

Next, take some random plastic pieces, or 3D print them to design. Make, or include in the design, an off-center 5/16 inch (8mm) hole. It will need to be deep enough to hold three 693 ZZ bearings when complete.

Drill and tap one of the sides too, as shown in the video. You will need two identical pieces later. If required, cut down to the final shape.

Again watch the video for more detailed instructions on this section as it will depend on what you get your hands on.

Insert 3 no. ball bearings into the hole.

Test it by Inserting the 1/8 inch (3mm) shaft through the eyes of the ball bearings. This will hold the bobbin for the copper wire later on.

Now take the 13/16 inch (20 mm) aluminum rod. We are now going to machine the pully and bobbin gripper parts of the machine.

Secure into a vice, and drill holes into it as shown in the video, This make take some trial and error. They will need to be M3 size, and tapped, and will be used for the locking nuts.

Machine into shape, as shown in the video. DrilL A 1/8 inch (3mm) hole into the end to fit on the 1/8 inch (3mm) shaft used earlier. Further machine and part-off the finished piece, as shown in the video.

You will also need to make a pulley piece to hold the rubber band. This will be used to turn the bobbin using the DC motor later.

Now assemble the gripper and pulley assembly.

Now scavenge some more pieces from the DVD player to built a holder for the DC motor. The process, and dimensions, will vary depending on the DVD player design.

Watch the video for more details on this stage.

Attach the motor assembly to the DVD laser head assembly frame as shown in the video. Also, attach the bobbin gripper assembly in a similar fashion.

Now take the M5 threaded rods. These will be used to make the legs to hold the assembly in place.

Next, we will make the display and knob mounting. Take the acrylic sheet and cut to size, as shown in the video.

Drill holes and cut in notches as also shown in the video. You may want to mock this up before committing to cutting the acrylic sheet.

Heat and bend it to the desired angle.

Attached the OLED display and rotary dial to the acrylic mounting.

Now take the IR sensor. This will be used to count the number of turns of the bobbin.

Create a suitably sized, and shaped, mounting for it, and attached the appropriate place on the ex-DVD player’s main assembly.

Make a small opaque black semi-circle to attach the outer face of the pulley on the bobbin gripper. This will turn with the pulley and obscure the IR sensor every turn.

Connect the pulley and DC motor with the rubber belt.

Now take the MDF board. This will form the main base for the entire contraption and will also hold the main PCB board in the center.

Drill holes to match the positions of the main assembly legs and secure them into place as shown in the video.

With most of the mechanical parts complete, the next stage is to complete the electrical circuitry. You will need to watch the video for detailed instructions on this part.

Especially for information on the custom PCB design. Solder on the necessary component as shown in the video and below image.

Attach the stepper motor drivers, Arduino Nano, and stepper motor controller into their respective slots on the PCB board.

Fix the PCB and main assembly to the base.

Now you will need to copy the code to the Arduino. Here it is in all its glory:

#include #include “SSD1306Ascii.h”#include “SSD1306AsciiWire.h”#define I2C_ADDRESS 0x3C#define RST_PIN -1SSD1306AsciiWire oled;

#define EN 5 #define M1 3 #define M2 4 #define OUTA 9 #define OUTB 8 #define SW 6

int state = 0; int statea = 0; int Astate = 0;int Alaststate = 0;int count = 0;int PWM=200;int startpos =120;int minpos=140;int maxpos =178;int pos;int pause = 20;int k;int encoder_pin = 2; // pulse output from the module

int pulses;int x ;

void counter(){ //Update count pulses++;}

void setup() { Wire.begin(); Wire.setClock(400000L); //Serial.begin(9600);#if RST_PIN >= 0 oled.begin(&Adafruit128x64, I2C_ADDRESS, RST_PIN);#else // RST_PIN >= 0 oled.begin(&Adafruit128x64, I2C_ADDRESS);#endif // RST_PIN >= 0

oled.setFont(Adafruit5x7); oled.clear(); pinMode(SW, INPUT_PULLUP); pinMode(OUTA, INPUT); pinMode(OUTB, INPUT); pinMode(EN, OUTPUT); pinMode(M1, OUTPUT); pinMode(M2, OUTPUT); Alaststate = digitalRead(OUTA); Serial.begin(9600);

pinMode(encoder_pin, INPUT); //Interrupt 0 is digital pin 2 //Triggers on Falling Edge (change from HIGH to LOW) attachInterrupt(0, counter, RISING); // Initialize pulses = 0;}

void loop() { motstop(); oled.set2X(); oled.setCursor(0, 0); oled.println(” TURNS”); oled.set1X(); oled.setCursor(0, 13); oled.println(“———————“); Astate = digitalRead(OUTA); if (Astate != Alaststate){ // If the outputB state is different to the outputA state, that means the encoder is rotating clockwise if (digitalRead(OUTB) != Astate) { count ++; } else { count ++; } // Serial.print(“Position: “); // Serial.println(count); oled.set2X(); oled.setCursor(40,4); oled.println( count*10); }

if(!digitalRead(SW)){ Serial.println(“START”); motrun();

}

}

void motrun(){ digitalWrite(EN, HIGH); digitalWrite(M1,HIGH); digitalWrite(M2,LOW);}

void motstop(){ digitalWrite(EN, LOW); digitalWrite(M1,LOW); digitalWrite(M2,LOW);}

Upload to the Arduino, attached the main copper spool to the main assembly, thread through the guider, and attach to the smaller bobbin. Your copper wire winder is ready to go!

To use, power up the electronics, turn the knob to the desired number of turns and press the rotary dial to kick it into action.

Happy copper wire winding!

If the video player is not working, you can click on this alternative video link.RELATED: HOW TO BUILD YOUR VERY OWN ARDUINO-BASED DIY BRAIDING MACHINE1/8 inch (3mm))3/8 inch (10mm) 7/16 inch (12mm) 1 no.1/8 inch (3mm)13/16 inch (20mm)3/16 inch (5mm)1 no.1 no.1 no.1 no.3 no.2 no.1 no.2 no.1 no.1 no. 5/16 inch (8mm)1/8 inch (3mm)13/16 inch (20 mm)1/8 inch (3mm)1/8 inch (3mm)