Portal about bathroom renovation. Useful tips

Spot welding machine based on Arduino Nano. Time relay timer for spot welding Types of timers for spot welding

2017-08-22 at 01:31

There was a need to weld 18650 batteries. Why weld and not solder? Yes, because soldering is not safe for batteries. Soldering may damage the plastic insulator, resulting in a short circuit. Welding heat is achieved for a very short period of time, which is simply not enough to heat the battery.

Internet search ready-made solutions led me to very expensive devices, and only with delivery from China. Therefore, it was a pleasant decision to assemble it yourself. Moreover, “factory” devices spot welding They use some basic homemade components, namely a transformer from a microwave oven. Yes, yes, it is he who will be useful to us in the first place.

List of required components welding machine batteries.
1. Transformer from a microwave oven.
2. Arduino board (UNO, nano, micro, etc.).
3. 5 keys - 4 for setting and 1 for welding.
4. Indicator 2402, or 1602, or some other 02.
5. 3 meters of PuGV 1x25 wire.
6. 1 meter of PuGV 1x25 wire. (so as not to confuse you)
7. 4 tinned copper cable lugs type KVT25-10.
8. 2 tinned copper cable lugs type SC70.
9. Heat shrink with a diameter of 25 mm - 1 meter.
10. A little heat shrink 12 mm.
11. Heat shrink 8 mm - 3 meters.
12. Circuit board - 1 pc.
13. Resistor 820 Ohm 1 W - 1 pc.
14. Resistor 360 Ohm 1 W - 2 pcs.
15. Resistor 12 Ohm 2 W - 1 pc.
16. Resistor 10 kOhm - 5 pcs.
17. Capacitor 0.1 uF 600 V - 1 pc.
18. Triac BTA41-600 - 1 pc.
19. Optocoupler MOC3062 - 1 pc.
20. Two-pin screw terminal - 2 pcs.
In terms of components, everything seems to be there.

Transformer conversion process.
We remove the secondary winding. It will consist of a thinner wire, and the number of its turns will be large. I recommend cutting it off on one side. After cutting, we knock out each part in turn. The process is not fast. You will also need to knock out the plates separating the windings, which are glued.

After we have the transformer left with one primary winding, we prepare the wire for winding a new secondary winding. To do this, we take 3 meters of PuGV wire with a cross-section of 1x25. Completely remove the insulation from the entire wire. We put heat-shrinkable insulation on the wire. Heat to shrink. In the absence of an industrial hair dryer, I did the shrinking over a candle flame. Replacing the insulation is necessary so that the wire can fit completely into the place for the winding. After all, the original insulation is quite thick.

After the new insulation has been installed, we cut the wire into 3 equal parts. We put together and wind two turns in this assembly. I needed help with this. But everything worked out. Then we align the wires with each other, strip them and put 2 copper cable lugs with a cross-section of 70 on the 2 ends. I couldn’t find copper ones, I took tinned copper ones. By the way, the wires get in the way, you just have to try. Once put on, take a crimper for crimping such tips and crimp them. Such crimpers are also hydraulic. It turns out much better than knocking it down with a hammer or something else.

After that, I took some 25mm heat shrink and put it over the ferrule and the entire part of the wire coming from the transformer.

The transformer is ready.

Preparation of welded wires.
To make cooking more convenient, I decided to make separate wires. I chose, again, the ultra-flexible power cable PuGV 1x25 red. The cost, by the way, did not differ from other colors. I took one meter of such wire. I also took 4 more tinned copper tips 25-10. I divided the wire in half and got two parts of 50 cm. I stripped the wire 2 cm from each side and put on heat shrink in advance. Now I put on tinned copper tips and crimped them with the same crimper. I applied the heat shrink and that’s it, the wires are ready.
Now we need to think about what we will cook with. I liked a soldering iron tip with a diameter of 5 mm at the local radio market. I took two. Now I had to think about where to attach them and how to attach them. And then I remembered that in the store where I bought the wires, I saw zero tires, just with many holes with a diameter of 5 mm. I also took two of them. In the photo you will see how I screwed them on.

Installation of electronic components.
To build the welding machine I decided to use an Arduino board. I wanted it to be possible to adjust both the cooking time and the number of such boilings. To do this, I used a 24-character display on 2 lines. Although you can use any, the main thing is to configure everything in the sketch. But more about the program later. So, the main component in the circuit is a triac BTA41-600. Here are the diagrams of a welding machine for batteries.

Key block diagram.

Connection diagram of the display to Arduino.

Here's how I soldered it all together. I didn’t bother with the board, I didn’t want to waste time on drawing and etching. I found a suitable case and adjusted everything using hot glue.

Here is a photo of the process of finishing the program.

Here's how to temporarily make a welding key. In the future I want to find a ready-made foot key so that I don’t have to occupy my hands.

We've sorted out the electronics. Now let's talk about the program.

Welding machine microcontroller program.
I took some part from this article https://mysku.ru/blog/aliexpress/37304.html as the basis for the program. True, we had to change it significantly. There was no encoder. It was necessary to add the number of boils. Make sure that settings can be made using four buttons. Well, so that the welding itself is carried out using a foot button, or something else, without timers.

#include

int bta = 13; //The output to which the triac is connected
int svarka = 9; // Output welding key
int secplus = 10; // Display a key to increase the cooking time
int secminus = 11; // Display the key to reduce cooking time
int razplus = 12; // Display the key to increase the number of brews
int razminus = 8; // Display the key to reduce the number of brews

int lastReportedPos = 1;
int lastReportedPos2 = 1;
volatile int sec = 40;
volatile int raz = 0;

LiquidCrystal lcd(7, 6, 5, 4, 3, 2);

pinMode(svarka, INPUT);
pinMode(secplus, INPUT);
pinMode(secminus, INPUT);
pinMode(razplus, INPUT);
pinMode(razminus, INPUT);
pinMode(bta, OUTPUT);

lcd.begin(24, 2); // Specify which indicator is installed
lcd.setCursor(6, 0); // Set the cursor to the beginning of 1 line

lcd.setCursor(6, 1); // Set the cursor to the beginning of line 2

delay(3000);
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Delay: Milliseconds");
lcd.setCursor(0, 1);
lcd.print("Repeat: times");
}

for (int i = 1; i<= raz; i++) {
digitalWrite(bta, HIGH);
delay(sec);
digitalWrite(bta, LOW);
delay(sec);
}
delay(1000);

void loop() (
if (sec<= 9) {
sec = 10;
lastReportedPos = 11;
}

if (sec >= 201) (
sec = 200;
lastReportedPos = 199;
}
else
( if (lastReportedPos != sec) (
lcd.setCursor(7, 0);
lcd.print(" ");
lcd.setCursor(7, 0);
lcd.print(sec);
lastReportedPos = sec;
}
}

if (raz<= 0) {
raz = 1;
lastReportedPos2 = 2;
}

if (raz >= 11) (
raz = 10;
lastReportedPos2 = 9;
}
else
( if (lastReportedPos2 != raz) (
lcd.setCursor(8, 1);
lcd.print(" ");
lcd.setCursor(8, 1);
lcd.print(raz);
lastReportedPos2 = raz;
}
}

if (digitalRead(secplus) == HIGH) (
sec += 1;
delay(250);
}

if (digitalRead(secminus) == HIGH) (
sec -= 1;
delay(250);
}

if (digitalRead(razplus) == HIGH) (
raz += 1;
delay(250);
}

if (digitalRead(razminus) == HIGH) (
raz -= 1;
delay(250);
}

if (digitalRead(svarka) == HIGH) (
fire();
}

As I said. The program is designed to work on the 2402 indicator.

If you have a 1602 display, replace these lines with the following:

lcd.begin(12, 2); // Specify which indicator is installed
lcd.setCursor(2, 0); // Set the cursor to the beginning of 1 line
lcd.print("Svarka v.1.0"); // Output text
lcd.setCursor(2, 1); // Set the cursor to the beginning of line 2
lcd.print("site"); // Output text
delay(3000);
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Delay: Ms");
lcd.setCursor(0, 1);
lcd.print("Repeat: times");

lcd.setCursor(7, 0);
lcd.print(" ");
lcd.setCursor(7, 0);
lcd.print(sec);
lastReportedPos = sec;

lcd.setCursor(8, 1);
lcd.print(" ");
lcd.setCursor(8, 1);
lcd.print(raz);
lastReportedPos2 = raz;

Everything in the program is simple. We experimentally adjust the cooking time and the number of infusions. Maybe 1 time is enough for you. I just feel like if you cook it twice, it turns out much better. But it may be different for you.

Here's how it worked out for me. First I checked everything on a regular light bulb. Afterwards I went to the garage (just in case).

Using a microcontroller in such tasks may seem too complicated and unnecessary to some. For another person, a car battery may be enough. But it’s interesting for a homemaker to make homemade products using his own homemade products!

Circuit test on an incandescent lamp.

Don't miss updates! Subscribe to our group

A time relay timer is a device with which you can adjust the time of exposure to a current or pulse. The time relay timer for spot welding measures the duration of exposure of the welding current to the parts being connected and the frequency of its occurrence. This device is used to automate welding processes, the production of a weld seam, in order to create a variety of structures from sheet metal. It controls the electrical load in accordance with a given program. The time relay for contact welding is programmed in strict accordance with the instructions. This process consists of setting time intervals between certain actions, as well as the duration of the welding current.

Principle of operation

This time relay for spot welding will be able to turn the device on and off in a given mode with a certain frequency on an ongoing basis. To put it simply, it closes and opens contacts. Using a rotation sensor, you can adjust the time intervals in minutes and seconds after which you need to turn welding on or off.

The display is used to display information about the current switching time, the period of exposure to the metal of the welding machine, the number of minutes and seconds before switching on or off.

Types of timers for spot welding

You can find digital or analogue programmed timers on the market. The relays used in them come in different types, but the most common and inexpensive are electronic devices. Their operating principle is based on a special program, which is recorded on a microcontroller. It can be used to adjust the delay or on time.

Currently you can purchase a time relay:

  • with shutdown delay;
  • with delay on switching on;
  • configured for a set time after voltage is applied;
  • configured for a set time after the pulse is given;
  • clock generator.

Accessories for creating a time relay

To create a time relay timer for spot welding you will need the following parts:

  • Arduino Uno board for programming;
  • prototyping board or Sensor shield – facilitates the connection of installed sensors with the board;
  • female-to-female wires;
  • a display that can display a minimum of two lines with 16 characters per row;
  • relay that switches the load;
  • rotation angle sensor equipped with a button;
  • power supply to ensure the device is supplied with electric current (during testing, it can be powered via a USB cable).

Features of creating a time relay timer for spot welding on an arduino board

To make it, you must strictly follow the diagram.

At the same time, it would be better to replace the frequently used arduino uno board with an arduino pro mini since it has a significantly smaller size, costs less and is much easier to solder the wires.

After collecting all the components of the timer for resistance welding on Arduino, you need to solder the wires that connect the board to the rest of the elements of this device. All elements must be cleaned of plaque and rust. This will significantly increase the operating time of the relay timer.

You need to select a suitable case and assemble all the elements in it. It will provide the device with a decent appearance, protection from accidental shocks and mechanical influences.

To complete, it is necessary to install the switch. It will be needed if the welding owner decides to leave it unattended for a long time in order to prevent fire or damage to property in the event of an emergency. With its help, any user can easily turn off the device when leaving the room.

"Note!

The resistance welding timer on 561 is a more advanced device, as it is created on a new modern microcontroller. It allows you to measure time more accurately and set the frequency of turning the device on and off.”

The timer for contact welding on the 555 is not so perfect and has reduced functionality. But it is often used to create such devices, since it is cheaper.

To better understand how to create a welding machine, you should contact the company’s employees. In addition, we propose to consider the design of this device. It will help you understand the principle of operation of the device, what needs to be soldered and where.

Conclusion

The timer for spot welding on Arduino is an accurate and high-quality device that, with proper operation, will last for many years. It is a fairly simple device, so it can be easily mounted on any welding site. In addition, the spot welding timer is easy to maintain. It works even in severe frost, and is practically unaffected by negative manifestations of the natural environment.

You can assemble the device yourself or turn to professionals. The latter option is more preferable, as it guarantees the final result. The company will test the device elements, identify problems, fix them, thus restoring its functionality.

We present to your attention a diagram of a welding inverter that you can assemble with your own hands. Maximum current consumption is 32 amperes, 220 volts. The welding current is about 250 amperes, which allows you to easily weld with a 5-piece electrode, an arc length of 1 cm, which passes more than 1 cm into low-temperature plasma. The efficiency of the source is at the level of store-bought ones, and maybe better (meaning inverter ones).

Figure 1 shows a diagram of the power supply for welding.

Fig.1 Schematic diagram of the power supply

The transformer is wound on ferrite Ш7х7 or 8х8
The primary has 100 turns of 0.3mm PEV wire
Secondary 2 has 15 turns of 1mm PEV wire
Secondary 3 has 15 turns of 0.2mm PEV
Secondary 4 and 5, 20 turns of PEV wire 0.35mm
All windings must be wound across the entire width of the frame; this gives a noticeably more stable voltage.


Fig.2 Schematic diagram of a welding inverter

Figure 2 shows a diagram of the welder. The frequency is 41 kHz, but you can try 55 kHz. The transformer at 55 kHz is then 9 turns by 3 turns, to increase the PV of the transformer.

41kHz transformer - two sets Ш20х28 2000nm, gap 0.05mm, newspaper gasket, 12vit x 4vit, 10kv mm x 30kv mm, copper tape (tin) in paper. The transformer windings are made of copper sheet 0.25 mm thick and 40 mm wide, wrapped in cash register paper for insulation. The secondary is made of three layers of tin (sandwich) separated from each other by fluoroplastic tape, for insulation between themselves, for better conductivity of high-frequency currents, the contact ends of the secondary at the output of the transformer are soldered together.

Inductor L2 is wound on a Ш20x28 core, ferrite 2000nm, 5 turns, 25 sq.mm, gap 0.15 - 0.5mm (two layers of paper from the printer). Current transformer - current sensor two rings K30x18x7 primary wire threaded through the ring, secondary 85 turns of wire 0.5 mm thick.

Welding assembly

Winding the transformer

Winding the transformer must be done using copper sheet 0.3mm thick and 40mm wide, it must be wrapped in thermal paper from a cash register 0.05mm thick, this paper is durable and does not tear as much as usual when winding a transformer.

You tell me, why not wind it with an ordinary thick wire, but it’s not possible because this transformer operates on high-frequency currents and these currents are displaced onto the surface of the conductor and the middle of the thick wire is not used, which leads to heating, this phenomenon is called the Skin effect!

And you have to fight it, you just need to make a conductor with a large surface, so thin copper sheet has this, it has a large surface along which current flows, and the secondary winding should consist of a sandwich of three copper tapes separated by fluoroplastic film, it is thinner and all these are wrapped layers in thermal paper. This paper has the property of darkening when heated, we don’t need this and it’s bad, it won’t do anything, let the main thing remain that it doesn’t tear.

You can wind the windings with PEV wire with a cross-section of 0.5...0.7 mm consisting of several dozen cores, but this is worse, since the wires are round and are connected to each other with air gaps, which slow down heat transfer and have a smaller total cross-sectional area of ​​the wires combined compared to tin by 30 %, which can fit into the ferrite core window.

It is not the ferrite that heats up the transformer, but the winding, so you need to follow these recommendations.

The transformer and the entire structure must be blown inside the housing by a fan of 220 volts 0.13 amperes or more.

Design

To cool all powerful components, it is good to use radiators with fans from old Pentium 4 and Athlon 64 computers. I got these radiators from a computer store doing upgrades, for only $3...4 apiece.

The power oblique bridge must be made on two such radiators, the upper part of the bridge on one, the lower part on the other. Screw bridge diodes HFA30 and HFA25 onto these radiators through a mica spacer. IRG4PC50W must be screwed without mica through KTP8 heat-conducting paste.

The terminals of the diodes and transistors need to be screwed towards each other on both radiators, and between the terminals and the two radiators, insert a board connecting the 300-volt power circuit to the bridge parts.

The diagram does not indicate the need to solder 12...14 pieces of 0.15 micron 630 volt capacitors to this board into a 300V power supply. This is necessary so that the transformer emissions go into the power circuit, eliminating the resonant current surges of the power switches from the transformer.

The rest of the bridge is connected to each other by hanging installation of conductors of short length.

The diagram also shows snubbers, they have capacitors C15 C16, they should be brand K78-2 or SVV-81. You can’t put any garbage there, since snubbers play an important role:
first- they dampen the resonant emissions of the transformer
second- they significantly reduce IGBT losses when switching off since IGBTs open quickly, but are closing much slower and during closing, the capacitance C15 and C16 is charged through the VD32 VD31 diode longer than the closing time of the IGBT, that is, this snubber intercepts all the power onto itself, preventing heat from being released on the IGBT switch three times than it would be without it.
When IGBT is fast open, then through resistors R24 R25 the snubbers are smoothly discharged and the main power is released on these resistors.

Settings

Apply power to the 15-volt PWM and at least one fan to discharge capacitance C6, which controls the relay response time.

Relay K1 is needed to close resistor R11 after capacitors C9...12 are charged through resistor R11, which reduces the current surge when the welding machine is turned on to a 220-volt network.

Without direct resistor R11, when turned on, there would be a large BAC while charging a 3000 μm 400V capacitance, which is why this measure is needed.

Check the operation of the relay closing resistor R11 2...10 seconds after power is applied to the PWM board.

Check the PWM board for the presence of rectangular pulses going to the HCPL3120 optocouplers after both relays K1 and K2 are activated.

The width of the pulses should be relative to the zero pause 44% zero 66%

Check the drivers on optocouplers and amplifiers that drive a rectangular signal with an amplitude of 15 volts and make sure that the voltage on the IGBT gates does not exceed 16 volts.

Apply 15 Volt power to the bridge to check its operation and ensure that the bridge is manufactured correctly.

The current consumption should not exceed 100mA at idle.

Verify the correct phrasing of the windings of the power transformer and current transformer using a two-beam oscilloscope.

One beam of the oscilloscope is on the primary, the second on the secondary, so that the phases of the pulses are the same, the only difference is in the voltage of the windings.

Apply power to the bridge from power capacitors C9...C12 through a 220 volt 150..200 watt light bulb, having previously set the PWM frequency to 55 kHz, connect an oscilloscope to the collector-emitter of the lower IGBT transistor, look at the signal shape so that there are no voltage surges above 330 volts as usual.

Start lowering the PWM clock frequency until a small bend appears on the lower IGBT switch indicating oversaturation of the transformer, write down this frequency at which the bend occurred, divide it by 2 and add the result to the oversaturation frequency, for example, divide 30 kHz oversaturation by 2 = 15 and 30 + 15 = 45 , 45 this is the operating frequency of the transformer and PWM.

The current consumption of the bridge should be about 150 mA and the light bulb should barely glow; if it glows very brightly, this indicates a breakdown of the transformer windings or an incorrectly assembled bridge.

Connect a welding wire at least 2 meters long to the output to create additional output inductance.

Apply power to the bridge through a 2200-watt kettle, and set the current on the light bulb to PWM at least R3 closer to resistor R5, close the welding output, check the voltage on the lower switch of the bridge so that it is no more than 360 volts according to the oscilloscope, and there should be no noise from the transformer. If there is one, make sure that the transformer-current sensor is correctly phased, pass the wire in the opposite direction through the ring.

If the noise remains, then you need to place the PWM board and optocoupler drivers away from sources of interference, mainly the power transformer and inductor L2 and power conductors.

Even when assembling the bridge, the drivers must be installed next to the radiators of the bridge above the IGBT transistors and no closer to the resistors R24 R25 by 3 centimeters. The driver output and IGBT gate connections must be short. The conductors going from the PWM to the optocouplers should not pass near sources of interference and should be as short as possible.

All signal wires from the current transformer and going to the optocouplers from the PWM should be twisted to reduce noise and should be as short as possible.

Next, we begin to increase the welding current using resistor R3 closer to resistor R4, the welding output is closed on the lower IGBT switch, the pulse width increases slightly, which indicates PWM operation. More current means more width, less current means less width.

There shouldn't be any noise, otherwise it will fail.IGBT.

Add current and listen, watch the oscilloscope for excess voltage of the lower key, so that it does not exceed 500 volts, a maximum of 550 volts in the surge, but usually 340 volts.

Reach the current where the width suddenly becomes maximum, indicating that the kettle cannot provide maximum current.

That's it, now we go straight without a kettle from minimum to maximum, watch the oscilloscope and listen so that it is quiet. Reach the maximum current, the width should increase, emissions are normal, no more than 340 volts usually.

Start cooking for 10 seconds at the beginning. We check the radiators, then 20 seconds, also cold and 1 minute the transformer is warm, burn 2 long electrodes 4mm transformer is bitter

The radiators of the 150ebu02 diodes noticeably warmed up after three electrodes, it’s already difficult to cook, a person gets tired, although he cooks great, the transformer is hot, and no one cooks anyway. The fan, after 2 minutes, brings the transformer to a warm state and you can cook it again until it becomes puffy.

Below you can download printed circuit boards in LAY format and other files

Evgeny Rodikov (evgen100777 [dog] rambler.ru). If you have any questions when assembling the welder, write to E-Mail.

List of radioelements

Designation Type Denomination Quantity NoteShopMy notepad
power unit
Linear regulator

LM78L15

2 To notepad
AC/DC converter

TOP224Y

1 To notepad
Voltage reference IC

TL431

1 To notepad
Rectifier diode

BYV26C

1 To notepad
Rectifier diode

HER307

2 To notepad
Rectifier diode

1N4148

1 To notepad
Schottky diode

MBR20100CT

1 To notepad
Protection diode

P6KE200A

1 To notepad
Diode bridge

KBPC3510

1 To notepad
Optocoupler

PC817

1 To notepad
C1, C2 10uF 450V2 To notepad
Electrolytic capacitor100uF 100V2 To notepad
Electrolytic capacitor470uF 400V6 To notepad
Electrolytic capacitor50uF 25V1 To notepad
C4, C6, C8 Capacitor0.1uF3 To notepad
C5 Capacitor1nF 1000V1 To notepad
C7 Electrolytic capacitor1000uF 25V1 To notepad
Capacitor510 pF2 To notepad
C13, C14 Electrolytic capacitor10 µF2 To notepad
VDS1 Diode bridge600V 2A1 To notepad
NTC1 Thermistor10 ohm1 To notepad
R1 Resistor

47 kOhm

1 To notepad
R2 Resistor

510 Ohm

1 To notepad
R3 Resistor

200 Ohm

1 To notepad
R4 Resistor

10 kOhm

1 To notepad
Resistor

6.2 Ohm

1 To notepad
Resistor

30Ohm 5W

2 To notepad
Welding inverter
PWM controller

UC3845

1 To notepad
VT1 MOSFET transistor

IRF120

1 To notepad
VD1 Rectifier diode

1N4148

1 To notepad
VD2, VD3 Schottky diode

1N5819

2 To notepad
VD4 Zener diode

1N4739A

1 9V To notepad
VD5-VD7 Rectifier diode

1N4007

3 To reduce voltage To notepad
VD8 Diode bridge

KBPC3510

2 To notepad
C1 Capacitor22 nF1 To notepad
C2, C4, C8 Capacitor0.1 µF3 To notepad
C3 Capacitor4.7 nF1 To notepad
C5 Capacitor2.2 nF1 To notepad
C6 Electrolytic capacitor22 µF1 To notepad
C7 Electrolytic capacitor200 µF1 To notepad
C9-C12 Electrolytic capacitor3000uF 400V4 To notepad
R1, R2 Resistor

33 kOhm

2 To notepad
R4 Resistor

510 Ohm

1 To notepad
R5 Resistor

1.3 kOhm

1 To notepad
R7 Resistor

150 Ohm

1 To notepad
R8 Resistor

1Ohm 1Watt

1 To notepad
R9 Resistor

2 MOhm

1 To notepad
R10 Resistor

1.5 kOhm

1 To notepad
R11 Resistor

25Ohm 40Watt

1 To notepad
R3 Trimmer resistor2.2 kOhm1 To notepad
Trimmer resistor10 kOhm1 To notepad
K1 Relay12V 40A1 To notepad
K2 RelayRES-491 To notepad
Q6-Q11 IGBT transistor

IRG4PC50W

6

In some cases, it is more profitable to use spot welding instead of soldering. For example, this method may be useful for repairing batteries consisting of several batteries. Soldering causes excessive heating of the cells, which can lead to cell failure. But spot welding does not heat the elements as much, since it operates for a relatively short time.

To optimize the entire process, the system uses Arduino Nano. This is a control unit that allows you to effectively manage the energy supply of the installation. Thus, each welding is optimal for a particular case, and as much energy is consumed as necessary, no more and no less. The contact elements here are copper wire, and the energy comes from a regular car battery, or two if higher current is required.

The current project is almost ideal in terms of complexity of creation/efficiency of work. The author of the project showed the main stages of creating the system, posting all the data on Instructables.

According to the author, a standard battery is enough to spot weld two nickel strips 0.15 mm thick. For thicker strips of metal, two batteries will be required, assembled in a circuit in parallel. The pulse time of the welding machine is adjustable and ranges from 1 to 20 ms. This is quite sufficient for welding the nickel strips described above.


The author recommends making the board to order from the manufacturer. The cost of ordering 10 such boards is about 20 euros.

During welding, both hands will be occupied. How to manage the entire system? Using a foot switch, of course. It's very simple.

And here is the result of the work:

There comes a time in the life of every “radio killer” when you need to weld several lithium batteries together - either when repairing a laptop battery that has died from age, or when assembling power for another craft. Soldering "lithium" with a 60-watt soldering iron is inconvenient and scary - you will overheat a little - and you have a smoke grenade in your hands, which is useless to extinguish with water.

Collective experience offers two options - either go to the trash heap in search of an old microwave, tear it apart and get a transformer, or spend a lot of money.

For the sake of several welds a year, I didn’t want to look for a transformer, saw it and rewind it. I wanted to find an ultra-cheap and ultra-simple way to weld batteries using electric current.

A powerful low-voltage DC source available to everyone - this is an ordinary used one. Car battery. I'm willing to bet that you already have it somewhere in your pantry or that your neighbor has it.

I suggest - the best way to get an old battery for free is this

wait for frost. Approach the poor guy whose car won’t start - he will soon run to the store for a fresh new battery, and give the old one to you for nothing. In the cold, an old lead battery may not work well, but after charging the house in a warm place it will reach its full capacity.

To weld batteries with current from the battery, we will need to supply current in short pulses in a matter of milliseconds - otherwise we will not get welding, but burning holes in the metal. The cheapest and most accessible way to switch the current of a 12-volt battery is an electromechanical relay (solenoid).

The problem is that conventional 12-volt automotive relays are rated for a maximum of 100 amperes, and short-circuit currents during welding are many times higher. There is a risk that the relay armature will simply weld. And then, in the vastness of Aliexpress, I came across motorcycle starter relays. I thought that if these relays can withstand the starter current, many thousands of times, then they will be suitable for my purposes. What finally convinced me was this video, where the author tests a similar relay: