-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassembly.html
More file actions
121 lines (108 loc) · 5.23 KB
/
assembly.html
File metadata and controls
121 lines (108 loc) · 5.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/default.css" />
<link rel="stylesheet" type="text/css" href="css/responsive_sm.css" />
<link rel="stylesheet" type="text/css" href="css/responsive_md.css" />
<script src="js/utility.js"></script>
<title>DaisyDriver - Graphical User Interface</title>
</head>
<body>
<div class="main-container">
<header>
<img src="assets/daisydrivertext.png">
<nav role="navigation">
<div id="dd-imgcontainer">
<img src="assets/reorder-three.svg" / id="dd-img">
</div>
<div id="dd-content">
<a href="index.html">Home</a
><a href="assembly.html" class="current">Assembly</a
><a href="operation.html">Operating</a
><a href="serial.html">Serial Interface</a
><a href="gui.html">GUI</a
><a href="programming.html">Programming</a>
</div>
</nav>
</header>
<section>
<h1 class="postheading">Assembly Instructions</h1>
<h3>You will need:</h3>
<ul>
<li>1 DaisyDriver PCB</li>
<li>(optional) 1 DaisyDriver solder stencil</li>
<li>1 BoM, as listed in the DaisyDriver design files</li>
<li>200 ml Isopropanol</li>
<li>Solder paste</li>
<li>2 hotplates capable of maintaining temperatures of 50℃ to 400℃</li>
<li>1 steel or aluminium plate large enough to support the DaisyDriver</li>
<li>2 pairs of spade tipped tweezers</li>
<li>1 pair safety glasses</li>
<li>1 pair heat resistant gloves</li>
</ul>
<hr>
<h2>Soldering Procedure</h2>
<ol>
<li>
Set one hotplate next to the other and ensure the tops are clean
and free from distortion. Turn one on to 100℃, and the other
to 350℃. Allow ample time for them to come to temperature.
</li>
<li>
Apply solder paste using either a stencil or an applicator syringe.
A stencil is recommended due to the high accuracy of paste deposition
it offers, as well as the superior evenness of the applied paste thickness.
<img class="assemblyimg" src="assets/assembly1.jpg">
</li>
<li>
Place surface mount components on the board, noting that slight errors
in the positions of the components will generally be corrected by the
surface tension of the solder at reflow.
<img class="assemblyimg" src="assets/assembly2.jpg">
</li>
<li>
Wearing the safety gloves and glasses, position the metal plate on
the 100℃ plate, and allow it to come to temperature. Note that
thermal distortion of the plate may initially occur, which can
be corrected by pressing down on the corners of the plate with the tweezers.
</li>
<li>
Once the plate has come to temperature, place the PCB on it and wait
for up to two minutes for it to heat up. During this time, thermal
distortions can be corrected by pushing gently on the corners of the
PCB, in the same manner as step 4. The solder paste may change slightly
in appearance, and the flux may activate.
</li>
<li>
Once the PCB has come to temperature on the 100℃ metal plate, transfer the PCB
on the metal plate to the 350℃ hotplate. Correct thermal distortions as before,
and observe the pads of the PCB carefully. The solder paste should begin to melt
within 2 minutes, and be fully molten within 3. Any pads that do not reflow within
3 minutes can be corrected by hand using a rework station. Take care also that
the silkscreen is not scorched before the PCB reflows; if this occurs, then a
redesign of the board may be necessary.
</li>
<li>
Transfer the PCB and the metal plate back to the 100℃ hotplate for approximately
one minute and then to a wire rack. This step is to avoid thermal shock to the
components. Once the PCB has cooled to around 50℃, the metal plate can be
safely extracted.
</li>
<li>
Repeat steps 1-7 with all further PCBs to be soldered, then turn off the hotplates
and allow them to cool. Wash the PCBs with isopropanol and allow to dry.
</li>
<li>
Solder any remaining through-hole components in by hand.
<img class="assemblyimg" src="assets/assembly3.jpg">
</li>
</ol>
</section>
</div>
<footer>
<p>Site code by Jonathan Louis Kaplan and Fergus Riche under MIT License unless otherwise stated.</p>
</footer>
</body>
</html>