User Tools

Site Tools


other:soldering

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Last revision Both sides next revision
other:soldering [2019/09/09 09:49]
f4ija created
other:soldering [2019/09/09 09:55]
f4ija
Line 1: Line 1:
 ====== DIY point soldering unit ====== ====== DIY point soldering unit ======
 ===== Introduction ===== ===== Introduction =====
 +
 To make good battery packs made of 18650 cells, it's not a good idea to solder them with tin because you're going to heat up a lot the chemical components of the battery and this can reduce the battery life. To make good battery packs made of 18650 cells, it's not a good idea to solder them with tin because you're going to heat up a lot the chemical components of the battery and this can reduce the battery life.
  
Line 29: Line 30:
 Make a box, and an articulated arm for the tips. I've made a 3D printed part to have the tips with the right gap (about 4-5mm). Make a box, and an articulated arm for the tips. I've made a 3D printed part to have the tips with the right gap (about 4-5mm).
  
-The Arduino will be used, with a homemade program, to have precise pulses of high current when clicking on the microswitch,​ to make a solder spot. This will permit good repeatability of the process and will avoid sticking and destroying the cells.+{{ :​ebike:​img_20171013_205206.jpg?600 |}}
  
 +{{ :​ebike:​img_20171013_211552.jpg?​600 |}}
 +
 +The Arduino will be used, with a homemade program, to have precise pulses of high current when clicking on the microswitch,​ to make a solder spot. This will permit good repeatability of the process and will avoid sticking and destroying the cells.
  
 Voilà, your soldering unit is almost finished ! You need to flash the Arduino firmware with the code below and you're good to go ! Voilà, your soldering unit is almost finished ! You need to flash the Arduino firmware with the code below and you're good to go !
  
 ===== Arduino sketch ===== ===== Arduino sketch =====
 +
 +It's very simple. When you click on the microswitch,​ the Arduino will detect it and then launch a soldering sequence (buy activating the relay) for the time given in parameter.
 +
 +You can launch a cycle every 500ms to prevent sticking.
 +
 <​code>​ <​code>​
 int buttonState = 0; int buttonState = 0;
 const int buttonPin = 12;     // the number of the pushbutton pin const int buttonPin = 12;     // the number of the pushbutton pin
 const int relaisPin = 3;      // the number of the relay pin const int relaisPin = 3;      // the number of the relay pin
-int temps = 55; //le temps de la soudure ​75 +int temps = 55; //le temps de la soudure ​55ms 
-int attente = 500; //temps d'​attente entre chaque possible soudure+int attente = 500; //temps d'​attente entre chaque possible soudure ​en ms
  
 void setup() { void setup() {
Line 83: Line 92:
 </​code>​ </​code>​
  
 +===== Results =====
 +
 +The points are quite good. It take a little time to get used to it. Also, it's important to have the tips well in contact with the nickel strips. However, you'll make some arcs and that can damage the battery cell (I've made holes in 2 or 3 cells this way ; cells are after that leaking some juice and are unusable...).
 +
 +Also, the tips are getting hop during the process so during long soldering periods, I need to cool them down by putting them in a glass of water.
 +
 +Anyway, for very low price, it's a good project, and useful as you can use 18650 cells in lot of project.
  
other/soldering.txt · Last modified: 2019/09/09 20:54 by f4ija