├── Arduino_Code
├── README.md
├── V4.0.1_Arduino_Code
│ ├── Arduino_Spot_Welder_V4_0_1.zip
│ └── README.md
├── V4.0.2_Arduino_Code
│ ├── Arduino_Spot_Welder_V4_0_2.zip
│ └── Readme.md
└── V4.0.3_Arduino_Code
│ ├── Arduino_Spot_Welder_V4_0_3.zip
│ └── Readme.md
├── KiCAD_PCB_Files
├── Gerber
│ ├── Arduino_PCB_V4
│ │ ├── Arduino_Board_Only_V4-B.Cu.gbr
│ │ ├── Arduino_Board_Only_V4-B.Mask.gbr
│ │ ├── Arduino_Board_Only_V4-B.SilkS.gbr
│ │ ├── Arduino_Board_Only_V4-Edge.Cuts.gbr
│ │ ├── Arduino_Board_Only_V4-F.Cu.gbr
│ │ ├── Arduino_Board_Only_V4-F.Mask.gbr
│ │ ├── Arduino_Board_Only_V4-F.SilkS.gbr
│ │ ├── Arduino_Board_Only_V4.drl
│ │ └── Readme.md
│ └── Mosfet_PCB_V4
│ │ ├── Mosfet_Board_Only_V4-B.Cu.gbr
│ │ ├── Mosfet_Board_Only_V4-B.Mask.gbr
│ │ ├── Mosfet_Board_Only_V4-B.SilkS.gbr
│ │ ├── Mosfet_Board_Only_V4-Edge.Cuts.gbr
│ │ ├── Mosfet_Board_Only_V4-F.Cu.gbr
│ │ ├── Mosfet_Board_Only_V4-F.Mask.gbr
│ │ ├── Mosfet_Board_Only_V4-F.SilkS.gbr
│ │ ├── Mosfet_Board_Only_V4.drl
│ │ └── Readme.md
├── KiCAD_Project
│ ├── Arduino_Spot_Welder-cache.lib
│ ├── Arduino_Spot_Welder.bak
│ ├── Arduino_Spot_Welder.kicad_pcb
│ ├── Arduino_Spot_Welder.kicad_pcb-bak
│ ├── Arduino_Spot_Welder.net
│ ├── Arduino_Spot_Welder.pro
│ ├── Arduino_Spot_Welder.sch
│ ├── Arduino_Spot_Welder.xml
│ ├── README.md
│ └── fp-lib-table
├── README.md
├── Spot_Welder_V4_PCB_Layout.JPG
└── Spot_Welder_V4_Schematic.pdf
├── LICENSE
├── Parts
├── Aluminum_Parts
│ ├── Alu_Part_V4_3d.JPG
│ ├── Alu_Part_V4_4mm.dxf
│ ├── Alu_Part_V4_sketch.JPG
│ ├── Alu_Parts_V4.pdf
│ └── README.md
├── BOM_Arduino_Spot_Welder_V4.xlsx
├── Mouser.com_Shopping_Cart_V4
│ └── README.md
├── README.md
└── Spot_Welder_V4_Case
│ ├── Arduino_Spot_Welder_V4_Case.f3d
│ ├── Arduino_Spot_Welder_V4_Case.step
│ ├── Arduino_Spot_Welder_V4_Case_3d.JPG
│ ├── README.md
│ ├── STL_3D_Printing
│ ├── Arduino_Spot_Welder_V4_Case_Bottom.stl
│ ├── Arduino_Spot_Welder_V4_Case_Top.stl
│ ├── README.md
│ └── Rotary_Knob.stl
│ └── case_kit_v4.jpg
└── README.md
/Arduino_Code/README.md:
--------------------------------------------------------------------------------
1 | This is the Arduino Code for the Spot Welder V4. Do not use it with the older V2 or V3 pcbs. It is not compatible with these.
2 |
3 | You need to have the Ardafruit_GFX library and the Ardafruit_SSD1306 library installed in your Arduino IDE to sucessfully compile the Code.
4 |
--------------------------------------------------------------------------------
/Arduino_Code/V4.0.1_Arduino_Code/Arduino_Spot_Welder_V4_0_1.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/KaeptnBalu/Arduino_Spot_Welder_V4/40e2d8a17df735c2a2b23d6d951538f4eaea7b9a/Arduino_Code/V4.0.1_Arduino_Code/Arduino_Spot_Welder_V4_0_1.zip
--------------------------------------------------------------------------------
/Arduino_Code/V4.0.1_Arduino_Code/README.md:
--------------------------------------------------------------------------------
1 | This is the initial release of the redesigned V4.0.1 Arduino Code for the Arduino Spot Welder.
2 |
3 | Improvements:
4 | - adjust Code to work with Spot Welder V4
5 | - add Buzzer routines
6 | - add temperature sensor routines
7 |
--------------------------------------------------------------------------------
/Arduino_Code/V4.0.2_Arduino_Code/Arduino_Spot_Welder_V4_0_2.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/KaeptnBalu/Arduino_Spot_Welder_V4/40e2d8a17df735c2a2b23d6d951538f4eaea7b9a/Arduino_Code/V4.0.2_Arduino_Code/Arduino_Spot_Welder_V4_0_2.zip
--------------------------------------------------------------------------------
/Arduino_Code/V4.0.2_Arduino_Code/Readme.md:
--------------------------------------------------------------------------------
1 | This is the V4.0.2 Arduino Code for the Arduino Spot Welder.
2 |
3 | Improvements:
4 | - minor code improvements
5 |
--------------------------------------------------------------------------------
/Arduino_Code/V4.0.3_Arduino_Code/Arduino_Spot_Welder_V4_0_3.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/KaeptnBalu/Arduino_Spot_Welder_V4/40e2d8a17df735c2a2b23d6d951538f4eaea7b9a/Arduino_Code/V4.0.3_Arduino_Code/Arduino_Spot_Welder_V4_0_3.zip
--------------------------------------------------------------------------------
/Arduino_Code/V4.0.3_Arduino_Code/Readme.md:
--------------------------------------------------------------------------------
1 | This is the V4.0.3 Arduino Code for the Arduino Spot Welder.
2 |
3 | Improvements:
4 | - updated the menue structure
5 | - added weld activation sound
6 | - added a sound in auto pulse mode when both welding tips touch the nickel
7 | - sound can be switched on and off in the menue
8 |
9 | After updating to this version please perform a "Full Reset" in the system menue of the welder to ensure proper functionality.
10 |
--------------------------------------------------------------------------------
/KiCAD_PCB_Files/Gerber/Arduino_PCB_V4/Arduino_Board_Only_V4-B.Mask.gbr:
--------------------------------------------------------------------------------
1 | G04 #@! TF.FileFunction,Soldermask,Bot*
2 | %FSLAX46Y46*%
3 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
4 | G04 Created by KiCad (PCBNEW 4.0.4-stable) date 08/18/21 08:25:54*
5 | %MOMM*%
6 | %LPD*%
7 | G01*
8 | G04 APERTURE LIST*
9 | %ADD10C,0.100000*%
10 | %ADD11R,1.974800X2.686000*%
11 | %ADD12O,1.974800X2.686000*%
12 | %ADD13O,1.920000X2.920000*%
13 | %ADD14C,3.600000*%
14 | %ADD15R,2.400000X3.000000*%
15 | %ADD16O,2.400000X3.000000*%
16 | %ADD17O,2.200000X2.900000*%
17 | %ADD18O,2.000000X2.900000*%
18 | %ADD19C,2.400000*%
19 | %ADD20C,2.150000*%
20 | %ADD21O,4.400000X4.400000*%
21 | %ADD22O,2.400000X1.924000*%
22 | %ADD23C,2.900000*%
23 | %ADD24C,2.100000*%
24 | G04 APERTURE END LIST*
25 | D10*
26 | D11*
27 | X112550000Y-60880000D03*
28 | D12*
29 | X110010000Y-60880000D03*
30 | X107470000Y-60880000D03*
31 | X104930000Y-60880000D03*
32 | X102390000Y-60880000D03*
33 | X99850000Y-60880000D03*
34 | X97310000Y-60880000D03*
35 | X94770000Y-60880000D03*
36 | X92230000Y-60880000D03*
37 | X89690000Y-60880000D03*
38 | X87150000Y-60880000D03*
39 | X84610000Y-60880000D03*
40 | X82070000Y-60880000D03*
41 | X79530000Y-60880000D03*
42 | X76990000Y-60880000D03*
43 | X76990000Y-76120000D03*
44 | X79530000Y-76120000D03*
45 | X82070000Y-76120000D03*
46 | X84610000Y-76120000D03*
47 | X87150000Y-76120000D03*
48 | X89690000Y-76120000D03*
49 | X92230000Y-76120000D03*
50 | X94770000Y-76120000D03*
51 | X97310000Y-76120000D03*
52 | X99850000Y-76120000D03*
53 | X102390000Y-76120000D03*
54 | X104930000Y-76120000D03*
55 | X107470000Y-76120000D03*
56 | X110010000Y-76120000D03*
57 | X112550000Y-76120000D03*
58 | D13*
59 | X88800000Y-55000000D03*
60 | X91340000Y-55000000D03*
61 | X99000000Y-55000000D03*
62 | X101540000Y-55000000D03*
63 | D14*
64 | X73000000Y-56000000D03*
65 | X117000000Y-127000000D03*
66 | D15*
67 | X78600000Y-126500000D03*
68 | D16*
69 | X81140000Y-126500000D03*
70 | D17*
71 | X111100000Y-127000000D03*
72 | X108100000Y-127000000D03*
73 | D18*
74 | X88640000Y-128000000D03*
75 | X91180000Y-128000000D03*
76 | X93720000Y-128000000D03*
77 | X96260000Y-128000000D03*
78 | X98800000Y-128000000D03*
79 | X101340000Y-128000000D03*
80 | D19*
81 | X95500000Y-109500000D03*
82 | X95500000Y-104500000D03*
83 | D20*
84 | X113000000Y-82500000D03*
85 | X108000000Y-82500000D03*
86 | X110500000Y-82500000D03*
87 | X108000000Y-97000000D03*
88 | X113000000Y-97000000D03*
89 | D21*
90 | X104300000Y-90000000D03*
91 | X116700000Y-90000000D03*
92 | D22*
93 | X73500000Y-107810000D03*
94 | X73500000Y-105270000D03*
95 | X73500000Y-102730000D03*
96 | X73500000Y-100190000D03*
97 | D23*
98 | X97800000Y-115650000D03*
99 | X74000000Y-115650000D03*
100 | X74000000Y-92350000D03*
101 | X97800000Y-92350000D03*
102 | D24*
103 | X83500000Y-94500000D03*
104 | X88500000Y-94500000D03*
105 | M02*
106 |
--------------------------------------------------------------------------------
/KiCAD_PCB_Files/Gerber/Arduino_PCB_V4/Arduino_Board_Only_V4-B.SilkS.gbr:
--------------------------------------------------------------------------------
1 | G04 #@! TF.FileFunction,Legend,Bot*
2 | %FSLAX46Y46*%
3 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
4 | G04 Created by KiCad (PCBNEW 4.0.4-stable) date 08/18/21 08:25:54*
5 | %MOMM*%
6 | %LPD*%
7 | G01*
8 | G04 APERTURE LIST*
9 | %ADD10C,0.100000*%
10 | %ADD11C,0.300000*%
11 | %ADD12C,0.200000*%
12 | G04 APERTURE END LIST*
13 | D10*
14 | D11*
15 | X89357143Y-69321429D02*
16 | X89357143Y-68107143D01*
17 | X89428571Y-67964286D01*
18 | X89500000Y-67892857D01*
19 | X89642857Y-67821429D01*
20 | X89928571Y-67821429D01*
21 | X90071429Y-67892857D01*
22 | X90142857Y-67964286D01*
23 | X90214286Y-68107143D01*
24 | X90214286Y-69321429D01*
25 | X90857143Y-67892857D02*
26 | X91071429Y-67821429D01*
27 | X91428572Y-67821429D01*
28 | X91571429Y-67892857D01*
29 | X91642858Y-67964286D01*
30 | X91714286Y-68107143D01*
31 | X91714286Y-68250000D01*
32 | X91642858Y-68392857D01*
33 | X91571429Y-68464286D01*
34 | X91428572Y-68535714D01*
35 | X91142858Y-68607143D01*
36 | X91000000Y-68678571D01*
37 | X90928572Y-68750000D01*
38 | X90857143Y-68892857D01*
39 | X90857143Y-69035714D01*
40 | X90928572Y-69178571D01*
41 | X91000000Y-69250000D01*
42 | X91142858Y-69321429D01*
43 | X91500000Y-69321429D01*
44 | X91714286Y-69250000D01*
45 | X92857143Y-68607143D02*
46 | X93071429Y-68535714D01*
47 | X93142857Y-68464286D01*
48 | X93214286Y-68321429D01*
49 | X93214286Y-68107143D01*
50 | X93142857Y-67964286D01*
51 | X93071429Y-67892857D01*
52 | X92928571Y-67821429D01*
53 | X92357143Y-67821429D01*
54 | X92357143Y-69321429D01*
55 | X92857143Y-69321429D01*
56 | X93000000Y-69250000D01*
57 | X93071429Y-69178571D01*
58 | X93142857Y-69035714D01*
59 | X93142857Y-68892857D01*
60 | X93071429Y-68750000D01*
61 | X93000000Y-68678571D01*
62 | X92857143Y-68607143D01*
63 | X92357143Y-68607143D01*
64 | X95000000Y-68821429D02*
65 | X95000000Y-67321429D01*
66 | X95000000Y-68750000D02*
67 | X95142857Y-68821429D01*
68 | X95428571Y-68821429D01*
69 | X95571428Y-68750000D01*
70 | X95642857Y-68678571D01*
71 | X95714286Y-68535714D01*
72 | X95714286Y-68107143D01*
73 | X95642857Y-67964286D01*
74 | X95571428Y-67892857D01*
75 | X95428571Y-67821429D01*
76 | X95142857Y-67821429D01*
77 | X95000000Y-67892857D01*
78 | X96571429Y-67821429D02*
79 | X96428571Y-67892857D01*
80 | X96357143Y-67964286D01*
81 | X96285714Y-68107143D01*
82 | X96285714Y-68535714D01*
83 | X96357143Y-68678571D01*
84 | X96428571Y-68750000D01*
85 | X96571429Y-68821429D01*
86 | X96785714Y-68821429D01*
87 | X96928571Y-68750000D01*
88 | X97000000Y-68678571D01*
89 | X97071429Y-68535714D01*
90 | X97071429Y-68107143D01*
91 | X97000000Y-67964286D01*
92 | X96928571Y-67892857D01*
93 | X96785714Y-67821429D01*
94 | X96571429Y-67821429D01*
95 | X97714286Y-67821429D02*
96 | X97714286Y-68821429D01*
97 | X97714286Y-68535714D02*
98 | X97785714Y-68678571D01*
99 | X97857143Y-68750000D01*
100 | X98000000Y-68821429D01*
101 | X98142857Y-68821429D01*
102 | X98428571Y-68821429D02*
103 | X99000000Y-68821429D01*
104 | X98642857Y-69321429D02*
105 | X98642857Y-68035714D01*
106 | X98714285Y-67892857D01*
107 | X98857143Y-67821429D01*
108 | X99000000Y-67821429D01*
109 | X100428571Y-68821429D02*
110 | X101000000Y-68821429D01*
111 | X100642857Y-69321429D02*
112 | X100642857Y-68035714D01*
113 | X100714285Y-67892857D01*
114 | X100857143Y-67821429D01*
115 | X101000000Y-67821429D01*
116 | X101500000Y-67821429D02*
117 | X101500000Y-69321429D01*
118 | X102142857Y-67821429D02*
119 | X102142857Y-68607143D01*
120 | X102071428Y-68750000D01*
121 | X101928571Y-68821429D01*
122 | X101714286Y-68821429D01*
123 | X101571428Y-68750000D01*
124 | X101500000Y-68678571D01*
125 | X102857143Y-67821429D02*
126 | X102857143Y-68821429D01*
127 | X102857143Y-69321429D02*
128 | X102785714Y-69250000D01*
129 | X102857143Y-69178571D01*
130 | X102928571Y-69250000D01*
131 | X102857143Y-69321429D01*
132 | X102857143Y-69178571D01*
133 | X103500000Y-67892857D02*
134 | X103642857Y-67821429D01*
135 | X103928572Y-67821429D01*
136 | X104071429Y-67892857D01*
137 | X104142857Y-68035714D01*
138 | X104142857Y-68107143D01*
139 | X104071429Y-68250000D01*
140 | X103928572Y-68321429D01*
141 | X103714286Y-68321429D01*
142 | X103571429Y-68392857D01*
143 | X103500000Y-68535714D01*
144 | X103500000Y-68607143D01*
145 | X103571429Y-68750000D01*
146 | X103714286Y-68821429D01*
147 | X103928572Y-68821429D01*
148 | X104071429Y-68750000D01*
149 | X105785715Y-68821429D02*
150 | X106071429Y-67821429D01*
151 | X106357143Y-68535714D01*
152 | X106642858Y-67821429D01*
153 | X106928572Y-68821429D01*
154 | X108142858Y-67821429D02*
155 | X108142858Y-68607143D01*
156 | X108071429Y-68750000D01*
157 | X107928572Y-68821429D01*
158 | X107642858Y-68821429D01*
159 | X107500001Y-68750000D01*
160 | X108142858Y-67892857D02*
161 | X108000001Y-67821429D01*
162 | X107642858Y-67821429D01*
163 | X107500001Y-67892857D01*
164 | X107428572Y-68035714D01*
165 | X107428572Y-68178571D01*
166 | X107500001Y-68321429D01*
167 | X107642858Y-68392857D01*
168 | X108000001Y-68392857D01*
169 | X108142858Y-68464286D01*
170 | X108714287Y-68821429D02*
171 | X109071430Y-67821429D01*
172 | X109428572Y-68821429D02*
173 | X109071430Y-67821429D01*
174 | X108928572Y-67464286D01*
175 | X108857144Y-67392857D01*
176 | X108714287Y-67321429D01*
177 | X111142858Y-68392857D02*
178 | X112285715Y-68392857D01*
179 | X113000001Y-68821429D02*
180 | X114142858Y-68392857D01*
181 | X113000001Y-67964286D01*
182 | D12*
183 | X116066667Y-97583331D02*
184 | X116066667Y-98059522D01*
185 | X116352381Y-97488093D02*
186 | X115352381Y-97821426D01*
187 | X116352381Y-98154760D01*
188 | X116352381Y-98488093D02*
189 | X115685714Y-98488093D01*
190 | X115876190Y-98488093D02*
191 | X115780952Y-98535712D01*
192 | X115733333Y-98583331D01*
193 | X115685714Y-98678569D01*
194 | X115685714Y-98773808D01*
195 | X116352381Y-99535713D02*
196 | X115352381Y-99535713D01*
197 | X116304762Y-99535713D02*
198 | X116352381Y-99440475D01*
199 | X116352381Y-99249998D01*
200 | X116304762Y-99154760D01*
201 | X116257143Y-99107141D01*
202 | X116161905Y-99059522D01*
203 | X115876190Y-99059522D01*
204 | X115780952Y-99107141D01*
205 | X115733333Y-99154760D01*
206 | X115685714Y-99249998D01*
207 | X115685714Y-99440475D01*
208 | X115733333Y-99535713D01*
209 | X115685714Y-100440475D02*
210 | X116352381Y-100440475D01*
211 | X115685714Y-100011903D02*
212 | X116209524Y-100011903D01*
213 | X116304762Y-100059522D01*
214 | X116352381Y-100154760D01*
215 | X116352381Y-100297618D01*
216 | X116304762Y-100392856D01*
217 | X116257143Y-100440475D01*
218 | X116352381Y-100916665D02*
219 | X115685714Y-100916665D01*
220 | X115352381Y-100916665D02*
221 | X115400000Y-100869046D01*
222 | X115447619Y-100916665D01*
223 | X115400000Y-100964284D01*
224 | X115352381Y-100916665D01*
225 | X115447619Y-100916665D01*
226 | X115685714Y-101392855D02*
227 | X116352381Y-101392855D01*
228 | X115780952Y-101392855D02*
229 | X115733333Y-101440474D01*
230 | X115685714Y-101535712D01*
231 | X115685714Y-101678570D01*
232 | X115733333Y-101773808D01*
233 | X115828571Y-101821427D01*
234 | X116352381Y-101821427D01*
235 | X116352381Y-102440474D02*
236 | X116304762Y-102345236D01*
237 | X116257143Y-102297617D01*
238 | X116161905Y-102249998D01*
239 | X115876190Y-102249998D01*
240 | X115780952Y-102297617D01*
241 | X115733333Y-102345236D01*
242 | X115685714Y-102440474D01*
243 | X115685714Y-102583332D01*
244 | X115733333Y-102678570D01*
245 | X115780952Y-102726189D01*
246 | X115876190Y-102773808D01*
247 | X116161905Y-102773808D01*
248 | X116257143Y-102726189D01*
249 | X116304762Y-102678570D01*
250 | X116352381Y-102583332D01*
251 | X116352381Y-102440474D01*
252 | X115828571Y-104297618D02*
253 | X115876190Y-104440475D01*
254 | X115923810Y-104488094D01*
255 | X116019048Y-104535713D01*
256 | X116161905Y-104535713D01*
257 | X116257143Y-104488094D01*
258 | X116304762Y-104440475D01*
259 | X116352381Y-104345237D01*
260 | X116352381Y-103964284D01*
261 | X115352381Y-103964284D01*
262 | X115352381Y-104297618D01*
263 | X115400000Y-104392856D01*
264 | X115447619Y-104440475D01*
265 | X115542857Y-104488094D01*
266 | X115638095Y-104488094D01*
267 | X115733333Y-104440475D01*
268 | X115780952Y-104392856D01*
269 | X115828571Y-104297618D01*
270 | X115828571Y-103964284D01*
271 | X116352381Y-105392856D02*
272 | X115828571Y-105392856D01*
273 | X115733333Y-105345237D01*
274 | X115685714Y-105249999D01*
275 | X115685714Y-105059522D01*
276 | X115733333Y-104964284D01*
277 | X116304762Y-105392856D02*
278 | X116352381Y-105297618D01*
279 | X116352381Y-105059522D01*
280 | X116304762Y-104964284D01*
281 | X116209524Y-104916665D01*
282 | X116114286Y-104916665D01*
283 | X116019048Y-104964284D01*
284 | X115971429Y-105059522D01*
285 | X115971429Y-105297618D01*
286 | X115923810Y-105392856D01*
287 | X115685714Y-105726189D02*
288 | X115685714Y-106107141D01*
289 | X115352381Y-105869046D02*
290 | X116209524Y-105869046D01*
291 | X116304762Y-105916665D01*
292 | X116352381Y-106011903D01*
293 | X116352381Y-106107141D01*
294 | X115685714Y-106297618D02*
295 | X115685714Y-106678570D01*
296 | X115352381Y-106440475D02*
297 | X116209524Y-106440475D01*
298 | X116304762Y-106488094D01*
299 | X116352381Y-106583332D01*
300 | X116352381Y-106678570D01*
301 | X116304762Y-107392857D02*
302 | X116352381Y-107297619D01*
303 | X116352381Y-107107142D01*
304 | X116304762Y-107011904D01*
305 | X116209524Y-106964285D01*
306 | X115828571Y-106964285D01*
307 | X115733333Y-107011904D01*
308 | X115685714Y-107107142D01*
309 | X115685714Y-107297619D01*
310 | X115733333Y-107392857D01*
311 | X115828571Y-107440476D01*
312 | X115923810Y-107440476D01*
313 | X116019048Y-106964285D01*
314 | X116352381Y-107869047D02*
315 | X115685714Y-107869047D01*
316 | X115876190Y-107869047D02*
317 | X115780952Y-107916666D01*
318 | X115733333Y-107964285D01*
319 | X115685714Y-108059523D01*
320 | X115685714Y-108154762D01*
321 | X115685714Y-108392857D02*
322 | X116352381Y-108630952D01*
323 | X115685714Y-108869048D02*
324 | X116352381Y-108630952D01*
325 | X116590476Y-108535714D01*
326 | X116638095Y-108488095D01*
327 | X116685714Y-108392857D01*
328 | X116304762Y-109964286D02*
329 | X116352381Y-110107143D01*
330 | X116352381Y-110345239D01*
331 | X116304762Y-110440477D01*
332 | X116257143Y-110488096D01*
333 | X116161905Y-110535715D01*
334 | X116066667Y-110535715D01*
335 | X115971429Y-110488096D01*
336 | X115923810Y-110440477D01*
337 | X115876190Y-110345239D01*
338 | X115828571Y-110154762D01*
339 | X115780952Y-110059524D01*
340 | X115733333Y-110011905D01*
341 | X115638095Y-109964286D01*
342 | X115542857Y-109964286D01*
343 | X115447619Y-110011905D01*
344 | X115400000Y-110059524D01*
345 | X115352381Y-110154762D01*
346 | X115352381Y-110392858D01*
347 | X115400000Y-110535715D01*
348 | X115685714Y-110964286D02*
349 | X116685714Y-110964286D01*
350 | X115733333Y-110964286D02*
351 | X115685714Y-111059524D01*
352 | X115685714Y-111250001D01*
353 | X115733333Y-111345239D01*
354 | X115780952Y-111392858D01*
355 | X115876190Y-111440477D01*
356 | X116161905Y-111440477D01*
357 | X116257143Y-111392858D01*
358 | X116304762Y-111345239D01*
359 | X116352381Y-111250001D01*
360 | X116352381Y-111059524D01*
361 | X116304762Y-110964286D01*
362 | X116352381Y-112011905D02*
363 | X116304762Y-111916667D01*
364 | X116257143Y-111869048D01*
365 | X116161905Y-111821429D01*
366 | X115876190Y-111821429D01*
367 | X115780952Y-111869048D01*
368 | X115733333Y-111916667D01*
369 | X115685714Y-112011905D01*
370 | X115685714Y-112154763D01*
371 | X115733333Y-112250001D01*
372 | X115780952Y-112297620D01*
373 | X115876190Y-112345239D01*
374 | X116161905Y-112345239D01*
375 | X116257143Y-112297620D01*
376 | X116304762Y-112250001D01*
377 | X116352381Y-112154763D01*
378 | X116352381Y-112011905D01*
379 | X115685714Y-112630953D02*
380 | X115685714Y-113011905D01*
381 | X115352381Y-112773810D02*
382 | X116209524Y-112773810D01*
383 | X116304762Y-112821429D01*
384 | X116352381Y-112916667D01*
385 | X116352381Y-113011905D01*
386 | X115352381Y-114011906D02*
387 | X116352381Y-114250001D01*
388 | X115638095Y-114440478D01*
389 | X116352381Y-114630954D01*
390 | X115352381Y-114869049D01*
391 | X116304762Y-115630954D02*
392 | X116352381Y-115535716D01*
393 | X116352381Y-115345239D01*
394 | X116304762Y-115250001D01*
395 | X116209524Y-115202382D01*
396 | X115828571Y-115202382D01*
397 | X115733333Y-115250001D01*
398 | X115685714Y-115345239D01*
399 | X115685714Y-115535716D01*
400 | X115733333Y-115630954D01*
401 | X115828571Y-115678573D01*
402 | X115923810Y-115678573D01*
403 | X116019048Y-115202382D01*
404 | X116352381Y-116250001D02*
405 | X116304762Y-116154763D01*
406 | X116209524Y-116107144D01*
407 | X115352381Y-116107144D01*
408 | X116352381Y-117059526D02*
409 | X115352381Y-117059526D01*
410 | X116304762Y-117059526D02*
411 | X116352381Y-116964288D01*
412 | X116352381Y-116773811D01*
413 | X116304762Y-116678573D01*
414 | X116257143Y-116630954D01*
415 | X116161905Y-116583335D01*
416 | X115876190Y-116583335D01*
417 | X115780952Y-116630954D01*
418 | X115733333Y-116678573D01*
419 | X115685714Y-116773811D01*
420 | X115685714Y-116964288D01*
421 | X115733333Y-117059526D01*
422 | X116304762Y-117916669D02*
423 | X116352381Y-117821431D01*
424 | X116352381Y-117630954D01*
425 | X116304762Y-117535716D01*
426 | X116209524Y-117488097D01*
427 | X115828571Y-117488097D01*
428 | X115733333Y-117535716D01*
429 | X115685714Y-117630954D01*
430 | X115685714Y-117821431D01*
431 | X115733333Y-117916669D01*
432 | X115828571Y-117964288D01*
433 | X115923810Y-117964288D01*
434 | X116019048Y-117488097D01*
435 | X116352381Y-118392859D02*
436 | X115685714Y-118392859D01*
437 | X115876190Y-118392859D02*
438 | X115780952Y-118440478D01*
439 | X115733333Y-118488097D01*
440 | X115685714Y-118583335D01*
441 | X115685714Y-118678574D01*
442 | X115352381Y-119630955D02*
443 | X116352381Y-119964288D01*
444 | X115352381Y-120297622D01*
445 | X115685714Y-121059527D02*
446 | X116352381Y-121059527D01*
447 | X115304762Y-120821431D02*
448 | X116019048Y-120583336D01*
449 | X116019048Y-121202384D01*
450 | X118052381Y-101797618D02*
451 | X117052381Y-101797618D01*
452 | X118052381Y-102226190D02*
453 | X117528571Y-102226190D01*
454 | X117433333Y-102178571D01*
455 | X117385714Y-102083333D01*
456 | X117385714Y-101940475D01*
457 | X117433333Y-101845237D01*
458 | X117480952Y-101797618D01*
459 | X117385714Y-102559523D02*
460 | X117385714Y-102940475D01*
461 | X117052381Y-102702380D02*
462 | X117909524Y-102702380D01*
463 | X118004762Y-102749999D01*
464 | X118052381Y-102845237D01*
465 | X118052381Y-102940475D01*
466 | X117385714Y-103130952D02*
467 | X117385714Y-103511904D01*
468 | X117052381Y-103273809D02*
469 | X117909524Y-103273809D01*
470 | X118004762Y-103321428D01*
471 | X118052381Y-103416666D01*
472 | X118052381Y-103511904D01*
473 | X117385714Y-103845238D02*
474 | X118385714Y-103845238D01*
475 | X117433333Y-103845238D02*
476 | X117385714Y-103940476D01*
477 | X117385714Y-104130953D01*
478 | X117433333Y-104226191D01*
479 | X117480952Y-104273810D01*
480 | X117576190Y-104321429D01*
481 | X117861905Y-104321429D01*
482 | X117957143Y-104273810D01*
483 | X118004762Y-104226191D01*
484 | X118052381Y-104130953D01*
485 | X118052381Y-103940476D01*
486 | X118004762Y-103845238D01*
487 | X118004762Y-104702381D02*
488 | X118052381Y-104797619D01*
489 | X118052381Y-104988095D01*
490 | X118004762Y-105083334D01*
491 | X117909524Y-105130953D01*
492 | X117861905Y-105130953D01*
493 | X117766667Y-105083334D01*
494 | X117719048Y-104988095D01*
495 | X117719048Y-104845238D01*
496 | X117671429Y-104750000D01*
497 | X117576190Y-104702381D01*
498 | X117528571Y-104702381D01*
499 | X117433333Y-104750000D01*
500 | X117385714Y-104845238D01*
501 | X117385714Y-104988095D01*
502 | X117433333Y-105083334D01*
503 | X117957143Y-105559524D02*
504 | X118004762Y-105607143D01*
505 | X118052381Y-105559524D01*
506 | X118004762Y-105511905D01*
507 | X117957143Y-105559524D01*
508 | X118052381Y-105559524D01*
509 | X117433333Y-105559524D02*
510 | X117480952Y-105607143D01*
511 | X117528571Y-105559524D01*
512 | X117480952Y-105511905D01*
513 | X117433333Y-105559524D01*
514 | X117528571Y-105559524D01*
515 | X117004762Y-106750000D02*
516 | X118290476Y-105892857D01*
517 | X117004762Y-107797619D02*
518 | X118290476Y-106940476D01*
519 | X118052381Y-108130952D02*
520 | X117385714Y-108130952D01*
521 | X117480952Y-108130952D02*
522 | X117433333Y-108178571D01*
523 | X117385714Y-108273809D01*
524 | X117385714Y-108416667D01*
525 | X117433333Y-108511905D01*
526 | X117528571Y-108559524D01*
527 | X118052381Y-108559524D01*
528 | X117528571Y-108559524D02*
529 | X117433333Y-108607143D01*
530 | X117385714Y-108702381D01*
531 | X117385714Y-108845238D01*
532 | X117433333Y-108940476D01*
533 | X117528571Y-108988095D01*
534 | X118052381Y-108988095D01*
535 | X118052381Y-109892857D02*
536 | X117528571Y-109892857D01*
537 | X117433333Y-109845238D01*
538 | X117385714Y-109750000D01*
539 | X117385714Y-109559523D01*
540 | X117433333Y-109464285D01*
541 | X118004762Y-109892857D02*
542 | X118052381Y-109797619D01*
543 | X118052381Y-109559523D01*
544 | X118004762Y-109464285D01*
545 | X117909524Y-109416666D01*
546 | X117814286Y-109416666D01*
547 | X117719048Y-109464285D01*
548 | X117671429Y-109559523D01*
549 | X117671429Y-109797619D01*
550 | X117623810Y-109892857D01*
551 | X118052381Y-110511904D02*
552 | X118004762Y-110416666D01*
553 | X117909524Y-110369047D01*
554 | X117052381Y-110369047D01*
555 | X118004762Y-111273810D02*
556 | X118052381Y-111178572D01*
557 | X118052381Y-110988095D01*
558 | X118004762Y-110892857D01*
559 | X117909524Y-110845238D01*
560 | X117528571Y-110845238D01*
561 | X117433333Y-110892857D01*
562 | X117385714Y-110988095D01*
563 | X117385714Y-111178572D01*
564 | X117433333Y-111273810D01*
565 | X117528571Y-111321429D01*
566 | X117623810Y-111321429D01*
567 | X117719048Y-110845238D01*
568 | X118004762Y-112178572D02*
569 | X118052381Y-112083334D01*
570 | X118052381Y-111892857D01*
571 | X118004762Y-111797619D01*
572 | X117957143Y-111750000D01*
573 | X117861905Y-111702381D01*
574 | X117576190Y-111702381D01*
575 | X117480952Y-111750000D01*
576 | X117433333Y-111797619D01*
577 | X117385714Y-111892857D01*
578 | X117385714Y-112083334D01*
579 | X117433333Y-112178572D01*
580 | X117385714Y-112464286D02*
581 | X117385714Y-112845238D01*
582 | X117052381Y-112607143D02*
583 | X117909524Y-112607143D01*
584 | X118004762Y-112654762D01*
585 | X118052381Y-112750000D01*
586 | X118052381Y-112845238D01*
587 | X118052381Y-113178572D02*
588 | X117385714Y-113178572D01*
589 | X117576190Y-113178572D02*
590 | X117480952Y-113226191D01*
591 | X117433333Y-113273810D01*
592 | X117385714Y-113369048D01*
593 | X117385714Y-113464287D01*
594 | X118052381Y-113797620D02*
595 | X117385714Y-113797620D01*
596 | X117052381Y-113797620D02*
597 | X117100000Y-113750001D01*
598 | X117147619Y-113797620D01*
599 | X117100000Y-113845239D01*
600 | X117052381Y-113797620D01*
601 | X117147619Y-113797620D01*
602 | X118004762Y-114702382D02*
603 | X118052381Y-114607144D01*
604 | X118052381Y-114416667D01*
605 | X118004762Y-114321429D01*
606 | X117957143Y-114273810D01*
607 | X117861905Y-114226191D01*
608 | X117576190Y-114226191D01*
609 | X117480952Y-114273810D01*
610 | X117433333Y-114321429D01*
611 | X117385714Y-114416667D01*
612 | X117385714Y-114607144D01*
613 | X117433333Y-114702382D01*
614 | X118004762Y-115083334D02*
615 | X118052381Y-115178572D01*
616 | X118052381Y-115369048D01*
617 | X118004762Y-115464287D01*
618 | X117909524Y-115511906D01*
619 | X117861905Y-115511906D01*
620 | X117766667Y-115464287D01*
621 | X117719048Y-115369048D01*
622 | X117719048Y-115226191D01*
623 | X117671429Y-115130953D01*
624 | X117576190Y-115083334D01*
625 | X117528571Y-115083334D01*
626 | X117433333Y-115130953D01*
627 | X117385714Y-115226191D01*
628 | X117385714Y-115369048D01*
629 | X117433333Y-115464287D01*
630 | X117957143Y-115940477D02*
631 | X118004762Y-115988096D01*
632 | X118052381Y-115940477D01*
633 | X118004762Y-115892858D01*
634 | X117957143Y-115940477D01*
635 | X118052381Y-115940477D01*
636 | X118004762Y-116797620D02*
637 | X118052381Y-116702382D01*
638 | X118052381Y-116511905D01*
639 | X118004762Y-116416667D01*
640 | X117909524Y-116369048D01*
641 | X117528571Y-116369048D01*
642 | X117433333Y-116416667D01*
643 | X117385714Y-116511905D01*
644 | X117385714Y-116702382D01*
645 | X117433333Y-116797620D01*
646 | X117528571Y-116845239D01*
647 | X117623810Y-116845239D01*
648 | X117719048Y-116369048D01*
649 | X117385714Y-117702382D02*
650 | X118052381Y-117702382D01*
651 | X117385714Y-117273810D02*
652 | X117909524Y-117273810D01*
653 | X118004762Y-117321429D01*
654 | X118052381Y-117416667D01*
655 | X118052381Y-117559525D01*
656 | X118004762Y-117654763D01*
657 | X117957143Y-117702382D01*
658 | D11*
659 | X110750000Y-121357143D02*
660 | X110678571Y-121214286D01*
661 | X110678571Y-121000000D01*
662 | X110750000Y-120785715D01*
663 | X110892857Y-120642857D01*
664 | X111035714Y-120571429D01*
665 | X111321429Y-120500000D01*
666 | X111535714Y-120500000D01*
667 | X111821429Y-120571429D01*
668 | X111964286Y-120642857D01*
669 | X112107143Y-120785715D01*
670 | X112178571Y-121000000D01*
671 | X112178571Y-121142857D01*
672 | X112107143Y-121357143D01*
673 | X112035714Y-121428572D01*
674 | X111535714Y-121428572D01*
675 | X111535714Y-121142857D01*
676 | X112178571Y-122071429D02*
677 | X110678571Y-122071429D01*
678 | X112178571Y-122928572D01*
679 | X110678571Y-122928572D01*
680 | X112178571Y-123642858D02*
681 | X110678571Y-123642858D01*
682 | X110678571Y-124000001D01*
683 | X110750000Y-124214286D01*
684 | X110892857Y-124357144D01*
685 | X111035714Y-124428572D01*
686 | X111321429Y-124500001D01*
687 | X111535714Y-124500001D01*
688 | X111821429Y-124428572D01*
689 | X111964286Y-124357144D01*
690 | X112107143Y-124214286D01*
691 | X112178571Y-124000001D01*
692 | X112178571Y-123642858D01*
693 | X108107143Y-119107144D02*
694 | X108107143Y-120250001D01*
695 | X108678571Y-119678572D02*
696 | X107535714Y-119678572D01*
697 | X108678571Y-121750001D02*
698 | X108678571Y-120892858D01*
699 | X108678571Y-121321430D02*
700 | X107178571Y-121321430D01*
701 | X107392857Y-121178573D01*
702 | X107535714Y-121035715D01*
703 | X107607143Y-120892858D01*
704 | X107321429Y-122321429D02*
705 | X107250000Y-122392858D01*
706 | X107178571Y-122535715D01*
707 | X107178571Y-122892858D01*
708 | X107250000Y-123035715D01*
709 | X107321429Y-123107144D01*
710 | X107464286Y-123178572D01*
711 | X107607143Y-123178572D01*
712 | X107821429Y-123107144D01*
713 | X108678571Y-122250001D01*
714 | X108678571Y-123178572D01*
715 | X107178571Y-123607143D02*
716 | X108678571Y-124107143D01*
717 | X107178571Y-124607143D01*
718 | M02*
719 |
--------------------------------------------------------------------------------
/KiCAD_PCB_Files/Gerber/Arduino_PCB_V4/Arduino_Board_Only_V4-Edge.Cuts.gbr:
--------------------------------------------------------------------------------
1 | G04 #@! TF.FileFunction,Profile,NP*
2 | %FSLAX46Y46*%
3 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
4 | G04 Created by KiCad (PCBNEW 4.0.4-stable) date 08/18/21 08:25:54*
5 | %MOMM*%
6 | %LPD*%
7 | G01*
8 | G04 APERTURE LIST*
9 | %ADD10C,0.100000*%
10 | %ADD11C,0.150000*%
11 | G04 APERTURE END LIST*
12 | D10*
13 | D11*
14 | X70000000Y-53000000D02*
15 | X70000000Y-130000000D01*
16 | X120000000Y-53000000D02*
17 | X70000000Y-53000000D01*
18 | X120000000Y-130000000D02*
19 | X120000000Y-53000000D01*
20 | X120000000Y-130000000D02*
21 | X70000000Y-130000000D01*
22 | M02*
23 |
--------------------------------------------------------------------------------
/KiCAD_PCB_Files/Gerber/Arduino_PCB_V4/Arduino_Board_Only_V4-F.Cu.gbr:
--------------------------------------------------------------------------------
1 | G04 #@! TF.FileFunction,Copper,L1,Top,Signal*
2 | %FSLAX46Y46*%
3 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
4 | G04 Created by KiCad (PCBNEW 4.0.4-stable) date 08/18/21 08:25:54*
5 | %MOMM*%
6 | %LPD*%
7 | G01*
8 | G04 APERTURE LIST*
9 | %ADD10C,0.100000*%
10 | %ADD11R,1.574800X2.286000*%
11 | %ADD12O,1.574800X2.286000*%
12 | %ADD13O,1.520000X2.520000*%
13 | %ADD14R,2.000000X2.600000*%
14 | %ADD15O,2.000000X2.600000*%
15 | %ADD16O,1.800000X2.500000*%
16 | %ADD17O,1.600000X2.500000*%
17 | %ADD18C,2.000000*%
18 | %ADD19R,4.000000X2.500000*%
19 | %ADD20R,1.800000X2.500000*%
20 | %ADD21R,0.800000X0.900000*%
21 | %ADD22R,0.900000X1.200000*%
22 | %ADD23C,1.750000*%
23 | %ADD24O,4.000000X4.000000*%
24 | %ADD25R,1.300000X1.500000*%
25 | %ADD26R,1.550000X0.600000*%
26 | %ADD27O,2.000000X1.524000*%
27 | %ADD28C,2.500000*%
28 | %ADD29R,0.900000X0.800000*%
29 | %ADD30R,1.500000X1.300000*%
30 | %ADD31C,1.700000*%
31 | %ADD32R,2.500000X1.800000*%
32 | %ADD33R,1.250000X1.500000*%
33 | %ADD34C,0.600000*%
34 | %ADD35C,0.350000*%
35 | %ADD36C,1.000000*%
36 | %ADD37C,0.250000*%
37 | %ADD38C,0.750000*%
38 | %ADD39C,1.500000*%
39 | %ADD40C,0.500000*%
40 | %ADD41C,0.254000*%
41 | G04 APERTURE END LIST*
42 | D10*
43 | D11*
44 | X112550000Y-60880000D03*
45 | D12*
46 | X110010000Y-60880000D03*
47 | X107470000Y-60880000D03*
48 | X104930000Y-60880000D03*
49 | X102390000Y-60880000D03*
50 | X99850000Y-60880000D03*
51 | X97310000Y-60880000D03*
52 | X94770000Y-60880000D03*
53 | X92230000Y-60880000D03*
54 | X89690000Y-60880000D03*
55 | X87150000Y-60880000D03*
56 | X84610000Y-60880000D03*
57 | X82070000Y-60880000D03*
58 | X79530000Y-60880000D03*
59 | X76990000Y-60880000D03*
60 | X76990000Y-76120000D03*
61 | X79530000Y-76120000D03*
62 | X82070000Y-76120000D03*
63 | X84610000Y-76120000D03*
64 | X87150000Y-76120000D03*
65 | X89690000Y-76120000D03*
66 | X92230000Y-76120000D03*
67 | X94770000Y-76120000D03*
68 | X97310000Y-76120000D03*
69 | X99850000Y-76120000D03*
70 | X102390000Y-76120000D03*
71 | X104930000Y-76120000D03*
72 | X107470000Y-76120000D03*
73 | X110010000Y-76120000D03*
74 | X112550000Y-76120000D03*
75 | D13*
76 | X88800000Y-55000000D03*
77 | X91340000Y-55000000D03*
78 | X99000000Y-55000000D03*
79 | X101540000Y-55000000D03*
80 | D14*
81 | X78600000Y-126500000D03*
82 | D15*
83 | X81140000Y-126500000D03*
84 | D16*
85 | X111100000Y-127000000D03*
86 | X108100000Y-127000000D03*
87 | D17*
88 | X88640000Y-128000000D03*
89 | X91180000Y-128000000D03*
90 | X93720000Y-128000000D03*
91 | X96260000Y-128000000D03*
92 | X98800000Y-128000000D03*
93 | X101340000Y-128000000D03*
94 | D18*
95 | X95500000Y-109500000D03*
96 | X95500000Y-104500000D03*
97 | D19*
98 | X108500000Y-116500000D03*
99 | X116500000Y-116500000D03*
100 | D20*
101 | X103500000Y-117000000D03*
102 | X103500000Y-121000000D03*
103 | D21*
104 | X83950000Y-66000000D03*
105 | X82050000Y-66000000D03*
106 | X83000000Y-68000000D03*
107 | D22*
108 | X81350000Y-71500000D03*
109 | X84650000Y-71500000D03*
110 | D21*
111 | X112950000Y-67000000D03*
112 | X111050000Y-67000000D03*
113 | X112000000Y-69000000D03*
114 | D23*
115 | X113000000Y-82500000D03*
116 | X108000000Y-82500000D03*
117 | X110500000Y-82500000D03*
118 | X108000000Y-97000000D03*
119 | X113000000Y-97000000D03*
120 | D24*
121 | X104300000Y-90000000D03*
122 | X116700000Y-90000000D03*
123 | D25*
124 | X93500000Y-69350000D03*
125 | X93500000Y-66650000D03*
126 | D26*
127 | X85300000Y-117095000D03*
128 | X85300000Y-118365000D03*
129 | X85300000Y-119635000D03*
130 | X85300000Y-120905000D03*
131 | X90700000Y-120905000D03*
132 | X90700000Y-119635000D03*
133 | X90700000Y-118365000D03*
134 | X90700000Y-117095000D03*
135 | D27*
136 | X73500000Y-107810000D03*
137 | X73500000Y-105270000D03*
138 | X73500000Y-102730000D03*
139 | X73500000Y-100190000D03*
140 | D28*
141 | X97800000Y-115650000D03*
142 | X74000000Y-115650000D03*
143 | X74000000Y-92350000D03*
144 | X97800000Y-92350000D03*
145 | D29*
146 | X81500000Y-83050000D03*
147 | X81500000Y-84950000D03*
148 | X83500000Y-84000000D03*
149 | D25*
150 | X82000000Y-120850000D03*
151 | X82000000Y-118150000D03*
152 | X116500000Y-78150000D03*
153 | X116500000Y-80850000D03*
154 | D30*
155 | X96650000Y-80500000D03*
156 | X99350000Y-80500000D03*
157 | X99350000Y-83500000D03*
158 | X96650000Y-83500000D03*
159 | X96650000Y-86500000D03*
160 | X99350000Y-86500000D03*
161 | D25*
162 | X79000000Y-82650000D03*
163 | X79000000Y-85350000D03*
164 | X90500000Y-66650000D03*
165 | X90500000Y-69350000D03*
166 | D30*
167 | X86150000Y-84000000D03*
168 | X88850000Y-84000000D03*
169 | X80650000Y-56000000D03*
170 | X83350000Y-56000000D03*
171 | D25*
172 | X78500000Y-67650000D03*
173 | X78500000Y-70350000D03*
174 | X105000000Y-66650000D03*
175 | X105000000Y-69350000D03*
176 | X102000000Y-69350000D03*
177 | X102000000Y-66650000D03*
178 | D31*
179 | X83500000Y-94500000D03*
180 | X88500000Y-94500000D03*
181 | D20*
182 | X85500000Y-109000000D03*
183 | X85500000Y-105000000D03*
184 | D32*
185 | X95500000Y-120500000D03*
186 | X99500000Y-120500000D03*
187 | D33*
188 | X90500000Y-108250000D03*
189 | X90500000Y-105750000D03*
190 | D19*
191 | X108500000Y-105000000D03*
192 | X116500000Y-105000000D03*
193 | D33*
194 | X99500000Y-69250000D03*
195 | X99500000Y-66750000D03*
196 | X96500000Y-69250000D03*
197 | X96500000Y-66750000D03*
198 | X108000000Y-69250000D03*
199 | X108000000Y-66750000D03*
200 | D34*
201 | X81500000Y-86500000D03*
202 | X84650000Y-69000000D03*
203 | X98000000Y-66750000D03*
204 | X114000000Y-67000000D03*
205 | X99500000Y-120500000D03*
206 | X100500000Y-120500000D03*
207 | X90500000Y-122000000D03*
208 | X89000000Y-122000000D03*
209 | X87000000Y-122000000D03*
210 | X85500000Y-122000000D03*
211 | X96000000Y-79000000D03*
212 | X93000000Y-79500000D03*
213 | X81000000Y-107500000D03*
214 | X81000000Y-110000000D03*
215 | X98500000Y-71000000D03*
216 | X101500000Y-71000000D03*
217 | X90500000Y-72500000D03*
218 | X106000000Y-64000000D03*
219 | X94500000Y-64500000D03*
220 | X92000000Y-85000000D03*
221 | X96000000Y-85000000D03*
222 | X78000000Y-103500000D03*
223 | X81000000Y-100500000D03*
224 | X87000000Y-72000000D03*
225 | X79000000Y-78500000D03*
226 | X82000000Y-108000000D03*
227 | X82000000Y-110000000D03*
228 | X88500000Y-64500000D03*
229 | X72500000Y-67500000D03*
230 | X94000000Y-63500000D03*
231 | X72000000Y-66000000D03*
232 | X74500000Y-62000000D03*
233 | X74500000Y-59500000D03*
234 | X101000000Y-65000000D03*
235 | X76500000Y-66500000D03*
236 | D35*
237 | X81500000Y-84950000D02*
238 | X81500000Y-86500000D01*
239 | X84650000Y-76080000D02*
240 | X84610000Y-76120000D01*
241 | X83350000Y-56000000D02*
242 | X87800000Y-56000000D01*
243 | X87800000Y-56000000D02*
244 | X88800000Y-55000000D01*
245 | X84650000Y-71500000D02*
246 | X84650000Y-69000000D01*
247 | X84650000Y-69000000D02*
248 | X84650000Y-66700000D01*
249 | X84650000Y-66700000D02*
250 | X83950000Y-66000000D01*
251 | X99500000Y-66750000D02*
252 | X98000000Y-66750000D01*
253 | X96500000Y-66750000D02*
254 | X98000000Y-66750000D01*
255 | X102000000Y-69350000D02*
256 | X102000000Y-69000000D01*
257 | X102000000Y-69000000D02*
258 | X99750000Y-66750000D01*
259 | X99750000Y-66750000D02*
260 | X99500000Y-66750000D01*
261 | X93500000Y-69350000D02*
262 | X94650000Y-69350000D01*
263 | X95750000Y-66750000D02*
264 | X96500000Y-66750000D01*
265 | X95000000Y-67500000D02*
266 | X95750000Y-66750000D01*
267 | X95000000Y-69000000D02*
268 | X95000000Y-67500000D01*
269 | X94650000Y-69350000D02*
270 | X95000000Y-69000000D01*
271 | X108000000Y-69250000D02*
272 | X108000000Y-69500000D01*
273 | X108000000Y-69500000D02*
274 | X109000000Y-70500000D01*
275 | X109000000Y-70500000D02*
276 | X113500000Y-70500000D01*
277 | X113500000Y-70500000D02*
278 | X114500000Y-69500000D01*
279 | X114500000Y-69500000D02*
280 | X114500000Y-67500000D01*
281 | X114500000Y-67500000D02*
282 | X114000000Y-67000000D01*
283 | X114000000Y-67000000D02*
284 | X112950000Y-67000000D01*
285 | X101900000Y-69250000D02*
286 | X102000000Y-69350000D01*
287 | D36*
288 | X116500000Y-116500000D02*
289 | X116500000Y-119500000D01*
290 | X111100000Y-124900000D02*
291 | X111100000Y-127000000D01*
292 | X116500000Y-119500000D02*
293 | X111100000Y-124900000D01*
294 | X116500000Y-105000000D02*
295 | X116500000Y-116500000D01*
296 | D37*
297 | X100500000Y-120500000D02*
298 | X99500000Y-120500000D01*
299 | D35*
300 | X82000000Y-120850000D02*
301 | X85245000Y-120850000D01*
302 | X85245000Y-120850000D02*
303 | X85300000Y-120905000D01*
304 | D38*
305 | X90500000Y-105750000D02*
306 | X94250000Y-105750000D01*
307 | X94250000Y-105750000D02*
308 | X95500000Y-104500000D01*
309 | X85500000Y-105000000D02*
310 | X89750000Y-105000000D01*
311 | X89750000Y-105000000D02*
312 | X90500000Y-105750000D01*
313 | D37*
314 | X85300000Y-120905000D02*
315 | X85300000Y-121800000D01*
316 | X90700000Y-121700000D02*
317 | X90700000Y-120905000D01*
318 | X90500000Y-122000000D02*
319 | X90700000Y-121700000D01*
320 | X87000000Y-122000000D02*
321 | X89000000Y-122000000D01*
322 | X85300000Y-121800000D02*
323 | X85500000Y-122000000D01*
324 | D38*
325 | X105000000Y-69350000D02*
326 | X105000000Y-70500000D01*
327 | X110000000Y-121000000D02*
328 | X103500000Y-121000000D01*
329 | X112500000Y-118500000D02*
330 | X110000000Y-121000000D01*
331 | X112500000Y-103000000D02*
332 | X112500000Y-118500000D01*
333 | X113500000Y-102000000D02*
334 | X112500000Y-103000000D01*
335 | X115500000Y-102000000D02*
336 | X113500000Y-102000000D01*
337 | X117500000Y-100000000D02*
338 | X115500000Y-102000000D01*
339 | X117500000Y-97500000D02*
340 | X117500000Y-100000000D01*
341 | X112500000Y-92500000D02*
342 | X117500000Y-97500000D01*
343 | X112500000Y-91000000D02*
344 | X112500000Y-92500000D01*
345 | X112500000Y-88500000D02*
346 | X112500000Y-91000000D01*
347 | X115000000Y-86000000D02*
348 | X112500000Y-88500000D01*
349 | X118500000Y-82500000D02*
350 | X115000000Y-86000000D01*
351 | X118500000Y-75000000D02*
352 | X118500000Y-82500000D01*
353 | X115000000Y-71500000D02*
354 | X118500000Y-75000000D01*
355 | X106000000Y-71500000D02*
356 | X115000000Y-71500000D01*
357 | X105000000Y-70500000D02*
358 | X106000000Y-71500000D01*
359 | D39*
360 | X108100000Y-127000000D02*
361 | X106500000Y-127000000D01*
362 | X103500000Y-124000000D02*
363 | X103500000Y-121000000D01*
364 | X106500000Y-127000000D02*
365 | X103500000Y-124000000D01*
366 | D35*
367 | X78600000Y-126500000D02*
368 | X78600000Y-118400000D01*
369 | X100000000Y-77500000D02*
370 | X100000000Y-76270000D01*
371 | X99500000Y-78000000D02*
372 | X100000000Y-77500000D01*
373 | X97500000Y-78000000D02*
374 | X99500000Y-78000000D01*
375 | X96500000Y-79000000D02*
376 | X97500000Y-78000000D01*
377 | X96000000Y-79000000D02*
378 | X96500000Y-79000000D01*
379 | X93000000Y-98000000D02*
380 | X93000000Y-79500000D01*
381 | X90500000Y-100500000D02*
382 | X93000000Y-98000000D01*
383 | X90000000Y-100500000D02*
384 | X90500000Y-100500000D01*
385 | X82500000Y-100500000D02*
386 | X90000000Y-100500000D01*
387 | X81000000Y-102000000D02*
388 | X82500000Y-100500000D01*
389 | X81000000Y-107500000D02*
390 | X81000000Y-102000000D01*
391 | X81000000Y-116000000D02*
392 | X81000000Y-110000000D01*
393 | X78600000Y-118400000D02*
394 | X81000000Y-116000000D01*
395 | X100000000Y-76270000D02*
396 | X99850000Y-76120000D01*
397 | D37*
398 | X78800000Y-126300000D02*
399 | X78600000Y-126500000D01*
400 | D39*
401 | X93720000Y-128000000D02*
402 | X96260000Y-128000000D01*
403 | X96260000Y-128000000D02*
404 | X98800000Y-128000000D01*
405 | X98800000Y-128000000D02*
406 | X101340000Y-128000000D01*
407 | X91180000Y-128000000D02*
408 | X93720000Y-128000000D01*
409 | D37*
410 | X90700000Y-118365000D02*
411 | X90700000Y-119635000D01*
412 | D39*
413 | X90000000Y-119000000D02*
414 | X91000000Y-119000000D01*
415 | X94000000Y-119000000D02*
416 | X91000000Y-119000000D01*
417 | X94000000Y-119000000D02*
418 | X95500000Y-120500000D01*
419 | X95000000Y-128000000D02*
420 | X95000000Y-121000000D01*
421 | X95000000Y-121000000D02*
422 | X95500000Y-120500000D01*
423 | X91180000Y-128000000D02*
424 | X95000000Y-128000000D01*
425 | X95000000Y-128000000D02*
426 | X101340000Y-128000000D01*
427 | X88640000Y-128000000D02*
428 | X91180000Y-128000000D01*
429 | D40*
430 | X91180000Y-128000000D02*
431 | X91180000Y-127180000D01*
432 | X96260000Y-128000000D02*
433 | X96260000Y-127260000D01*
434 | X98500000Y-127700000D02*
435 | X98800000Y-128000000D01*
436 | X98800000Y-127800000D02*
437 | X98800000Y-128000000D01*
438 | X88640000Y-127140000D02*
439 | X88640000Y-128000000D01*
440 | X88640000Y-127140000D02*
441 | X88640000Y-128000000D01*
442 | D38*
443 | X85500000Y-109000000D02*
444 | X80000000Y-109000000D01*
445 | X74120000Y-60880000D02*
446 | X76990000Y-60880000D01*
447 | X73500000Y-61500000D02*
448 | X74120000Y-60880000D01*
449 | X73500000Y-63500000D02*
450 | X73500000Y-61500000D01*
451 | X74000000Y-64000000D02*
452 | X73500000Y-63500000D01*
453 | X74000000Y-78000000D02*
454 | X74000000Y-64000000D01*
455 | X74000000Y-78000000D02*
456 | X74000000Y-78000000D01*
457 | X76000000Y-80000000D02*
458 | X74000000Y-78000000D01*
459 | X77000000Y-81000000D02*
460 | X76000000Y-80000000D01*
461 | X77000000Y-87000000D02*
462 | X77000000Y-81000000D01*
463 | X79500000Y-89500000D02*
464 | X77000000Y-87000000D01*
465 | X79500000Y-108500000D02*
466 | X79500000Y-89500000D01*
467 | X80000000Y-109000000D02*
468 | X79500000Y-108500000D01*
469 | X85500000Y-109000000D02*
470 | X85000000Y-109000000D01*
471 | D36*
472 | X108500000Y-110500000D02*
473 | X104500000Y-110500000D01*
474 | X104500000Y-110500000D02*
475 | X102750000Y-112250000D01*
476 | D38*
477 | X90500000Y-108250000D02*
478 | X86250000Y-108250000D01*
479 | X86250000Y-108250000D02*
480 | X85500000Y-109000000D01*
481 | X95500000Y-109500000D02*
482 | X93500000Y-109500000D01*
483 | X92250000Y-108250000D02*
484 | X90500000Y-108250000D01*
485 | X93500000Y-109500000D02*
486 | X92250000Y-108250000D01*
487 | D39*
488 | X95500000Y-109500000D02*
489 | X95500000Y-111000000D01*
490 | X88000000Y-113500000D02*
491 | X88000000Y-116500000D01*
492 | X88500000Y-113000000D02*
493 | X88000000Y-113500000D01*
494 | X93500000Y-113000000D02*
495 | X88500000Y-113000000D01*
496 | X95500000Y-111000000D02*
497 | X93500000Y-113000000D01*
498 | D36*
499 | X86250000Y-108250000D02*
500 | X85500000Y-109000000D01*
501 | X108500000Y-116500000D02*
502 | X108500000Y-110500000D01*
503 | X108500000Y-110500000D02*
504 | X108500000Y-105000000D01*
505 | D39*
506 | X95500000Y-109500000D02*
507 | X100000000Y-109500000D01*
508 | X100000000Y-109500000D02*
509 | X102750000Y-112250000D01*
510 | X103500000Y-113000000D02*
511 | X103500000Y-117000000D01*
512 | X102750000Y-112250000D02*
513 | X103500000Y-113000000D01*
514 | X108000000Y-117000000D02*
515 | X108500000Y-116500000D01*
516 | D35*
517 | X116500000Y-78150000D02*
518 | X116500000Y-75000000D01*
519 | X98500000Y-71000000D02*
520 | X96750000Y-69250000D01*
521 | X103000000Y-71000000D02*
522 | X101500000Y-71000000D01*
523 | X105000000Y-73000000D02*
524 | X103000000Y-71000000D01*
525 | X114500000Y-73000000D02*
526 | X105000000Y-73000000D01*
527 | X116500000Y-75000000D02*
528 | X114500000Y-73000000D01*
529 | X96750000Y-69250000D02*
530 | X96500000Y-69250000D01*
531 | X90500000Y-72500000D02*
532 | X94500000Y-72500000D01*
533 | X94500000Y-72500000D02*
534 | X96000000Y-72500000D01*
535 | X96000000Y-72500000D02*
536 | X96500000Y-72000000D01*
537 | X96500000Y-72000000D02*
538 | X96500000Y-69250000D01*
539 | X96400000Y-69350000D02*
540 | X96500000Y-69250000D01*
541 | X96650000Y-80500000D02*
542 | X96650000Y-79850000D01*
543 | X96650000Y-79850000D02*
544 | X97500000Y-79000000D01*
545 | X97500000Y-79000000D02*
546 | X102000000Y-79000000D01*
547 | X102000000Y-79000000D02*
548 | X102390000Y-78610000D01*
549 | X102390000Y-78610000D02*
550 | X102390000Y-76120000D01*
551 | X99500000Y-69250000D02*
552 | X99500000Y-70500000D01*
553 | X102390000Y-73390000D02*
554 | X102390000Y-76120000D01*
555 | X99500000Y-70500000D02*
556 | X102390000Y-73390000D01*
557 | X105000000Y-66650000D02*
558 | X105000000Y-60950000D01*
559 | X105000000Y-60950000D02*
560 | X104930000Y-60880000D01*
561 | X105000000Y-66650000D02*
562 | X102000000Y-66650000D01*
563 | X108000000Y-66750000D02*
564 | X105100000Y-66750000D01*
565 | X105100000Y-66750000D02*
566 | X105000000Y-66650000D01*
567 | X112000000Y-69000000D02*
568 | X110500000Y-69000000D01*
569 | X109250000Y-66750000D02*
570 | X108000000Y-66750000D01*
571 | X109500000Y-67000000D02*
572 | X109250000Y-66750000D01*
573 | X109500000Y-68000000D02*
574 | X109500000Y-67000000D01*
575 | X110500000Y-69000000D02*
576 | X109500000Y-68000000D01*
577 | X87000000Y-65500000D02*
578 | X92250000Y-65500000D01*
579 | X111050000Y-64800000D02*
580 | X111050000Y-67000000D01*
581 | X110250000Y-64000000D02*
582 | X111050000Y-64800000D01*
583 | X108750000Y-64000000D02*
584 | X110250000Y-64000000D01*
585 | X106000000Y-64000000D02*
586 | X108750000Y-64000000D01*
587 | X93250000Y-64500000D02*
588 | X94500000Y-64500000D01*
589 | X92250000Y-65500000D02*
590 | X93250000Y-64500000D01*
591 | X96650000Y-85000000D02*
592 | X96000000Y-85000000D01*
593 | X91000000Y-84000000D02*
594 | X88850000Y-84000000D01*
595 | X92000000Y-85000000D02*
596 | X91000000Y-84000000D01*
597 | D40*
598 | X88500000Y-94500000D02*
599 | X88500000Y-99000000D01*
600 | X76230000Y-105270000D02*
601 | X73500000Y-105270000D01*
602 | X78000000Y-103500000D02*
603 | X76230000Y-105270000D01*
604 | X82000000Y-99500000D02*
605 | X81000000Y-100500000D01*
606 | X88000000Y-99500000D02*
607 | X82000000Y-99500000D01*
608 | X88500000Y-99000000D02*
609 | X88000000Y-99500000D01*
610 | X88850000Y-84000000D02*
611 | X88850000Y-94150000D01*
612 | X88850000Y-94150000D02*
613 | X88500000Y-94500000D01*
614 | X88000000Y-69350000D02*
615 | X88000000Y-69500000D01*
616 | X88000000Y-69500000D02*
617 | X87000000Y-70500000D01*
618 | X87000000Y-70500000D02*
619 | X87000000Y-72000000D01*
620 | X79000000Y-78500000D02*
621 | X80500000Y-80000000D01*
622 | X80500000Y-80000000D02*
623 | X80500000Y-81000000D01*
624 | X80500000Y-81000000D02*
625 | X81000000Y-81500000D01*
626 | X81000000Y-81500000D02*
627 | X88500000Y-81500000D01*
628 | X88500000Y-81500000D02*
629 | X88850000Y-81850000D01*
630 | X88850000Y-81850000D02*
631 | X88850000Y-84000000D01*
632 | X84610000Y-63000000D02*
633 | X84610000Y-63110000D01*
634 | X87850000Y-69350000D02*
635 | X88000000Y-69350000D01*
636 | X88000000Y-69350000D02*
637 | X90500000Y-69350000D01*
638 | X87000000Y-68500000D02*
639 | X87850000Y-69350000D01*
640 | X87000000Y-65500000D02*
641 | X87000000Y-68500000D01*
642 | X84610000Y-63110000D02*
643 | X87000000Y-65500000D01*
644 | X84610000Y-60880000D02*
645 | X84610000Y-63000000D01*
646 | X84610000Y-63000000D02*
647 | X84610000Y-62890000D01*
648 | X82050000Y-64450000D02*
649 | X82050000Y-66000000D01*
650 | X82500000Y-64000000D02*
651 | X82050000Y-64450000D01*
652 | X83500000Y-64000000D02*
653 | X82500000Y-64000000D01*
654 | X84610000Y-62890000D02*
655 | X83500000Y-64000000D01*
656 | D35*
657 | X96650000Y-86500000D02*
658 | X96650000Y-85000000D01*
659 | X96650000Y-85000000D02*
660 | X96650000Y-83500000D01*
661 | X81350000Y-71500000D02*
662 | X81350000Y-72850000D01*
663 | X89690000Y-73690000D02*
664 | X89690000Y-76120000D01*
665 | X89000000Y-73000000D02*
666 | X89690000Y-73690000D01*
667 | X81500000Y-73000000D02*
668 | X89000000Y-73000000D01*
669 | X81350000Y-72850000D02*
670 | X81500000Y-73000000D01*
671 | X81350000Y-71500000D02*
672 | X81350000Y-69650000D01*
673 | X81350000Y-69650000D02*
674 | X83000000Y-68000000D01*
675 | X81350000Y-71500000D02*
676 | X79650000Y-71500000D01*
677 | X79650000Y-71500000D02*
678 | X78500000Y-70350000D01*
679 | X99350000Y-86500000D02*
680 | X99350000Y-85350000D01*
681 | X99350000Y-81650000D02*
682 | X99350000Y-80500000D01*
683 | X99000000Y-82000000D02*
684 | X99350000Y-81650000D01*
685 | X98500000Y-82000000D02*
686 | X99000000Y-82000000D01*
687 | X98000000Y-82500000D02*
688 | X98500000Y-82000000D01*
689 | X98000000Y-84500000D02*
690 | X98000000Y-82500000D01*
691 | X98500000Y-85000000D02*
692 | X98000000Y-84500000D01*
693 | X99000000Y-85000000D02*
694 | X98500000Y-85000000D01*
695 | X99350000Y-85350000D02*
696 | X99000000Y-85000000D01*
697 | X99350000Y-80500000D02*
698 | X112500000Y-80500000D01*
699 | X113000000Y-81000000D02*
700 | X113000000Y-82500000D01*
701 | X112500000Y-80500000D02*
702 | X113000000Y-81000000D01*
703 | X99350000Y-83500000D02*
704 | X107000000Y-83500000D01*
705 | X107000000Y-83500000D02*
706 | X108000000Y-82500000D01*
707 | X116500000Y-80850000D02*
708 | X116500000Y-82500000D01*
709 | X108000000Y-83500000D02*
710 | X108000000Y-82500000D01*
711 | X109000000Y-84500000D02*
712 | X108000000Y-83500000D01*
713 | X114500000Y-84500000D02*
714 | X109000000Y-84500000D01*
715 | X116500000Y-82500000D02*
716 | X114500000Y-84500000D01*
717 | X108000000Y-97000000D02*
718 | X106500000Y-97000000D01*
719 | X96500000Y-78000000D02*
720 | X97310000Y-77190000D01*
721 | X95500000Y-78000000D02*
722 | X96500000Y-78000000D01*
723 | X95000000Y-78500000D02*
724 | X95500000Y-78000000D01*
725 | X95000000Y-87500000D02*
726 | X95000000Y-78500000D01*
727 | X95500000Y-88000000D02*
728 | X95000000Y-87500000D01*
729 | X99000000Y-88000000D02*
730 | X95500000Y-88000000D01*
731 | X101000000Y-90000000D02*
732 | X99000000Y-88000000D01*
733 | X101000000Y-91500000D02*
734 | X101000000Y-90000000D01*
735 | X106500000Y-97000000D02*
736 | X101000000Y-91500000D01*
737 | X97310000Y-77190000D02*
738 | X97310000Y-76120000D01*
739 | X93500000Y-66650000D02*
740 | X94350000Y-66650000D01*
741 | X97310000Y-64190000D02*
742 | X97310000Y-60880000D01*
743 | X96500000Y-65000000D02*
744 | X97310000Y-64190000D01*
745 | X95750000Y-65000000D02*
746 | X96500000Y-65000000D01*
747 | X95250000Y-65500000D02*
748 | X95750000Y-65000000D01*
749 | X95250000Y-65750000D02*
750 | X95250000Y-65500000D01*
751 | X94350000Y-66650000D02*
752 | X95250000Y-65750000D01*
753 | X93500000Y-66650000D02*
754 | X90500000Y-66650000D01*
755 | X82000000Y-118150000D02*
756 | X82000000Y-110000000D01*
757 | X94770000Y-77730000D02*
758 | X94770000Y-76120000D01*
759 | X94000000Y-78500000D02*
760 | X94770000Y-77730000D01*
761 | X94000000Y-98500000D02*
762 | X94000000Y-78500000D01*
763 | X91000000Y-101500000D02*
764 | X94000000Y-98500000D01*
765 | X83000000Y-101500000D02*
766 | X91000000Y-101500000D01*
767 | X82000000Y-102500000D02*
768 | X83000000Y-101500000D01*
769 | X82000000Y-108000000D02*
770 | X82000000Y-102500000D01*
771 | X82000000Y-118150000D02*
772 | X85085000Y-118150000D01*
773 | X85085000Y-118150000D02*
774 | X85300000Y-118365000D01*
775 | X73500000Y-102730000D02*
776 | X76770000Y-102730000D01*
777 | X92230000Y-64270000D02*
778 | X92230000Y-60880000D01*
779 | X92000000Y-64500000D02*
780 | X92230000Y-64270000D01*
781 | X90500000Y-64500000D02*
782 | X92000000Y-64500000D01*
783 | X88500000Y-64500000D02*
784 | X90500000Y-64500000D01*
785 | X72500000Y-78500000D02*
786 | X72500000Y-67500000D01*
787 | X75500000Y-81500000D02*
788 | X72500000Y-78500000D01*
789 | X75500000Y-87500000D02*
790 | X75500000Y-81500000D01*
791 | X78500000Y-90500000D02*
792 | X75500000Y-87500000D01*
793 | X78500000Y-101000000D02*
794 | X78500000Y-90500000D01*
795 | X76770000Y-102730000D02*
796 | X78500000Y-101000000D01*
797 | X73500000Y-100190000D02*
798 | X76810000Y-100190000D01*
799 | X94770000Y-63230000D02*
800 | X94770000Y-60880000D01*
801 | X94500000Y-63500000D02*
802 | X94770000Y-63230000D01*
803 | X94000000Y-63500000D02*
804 | X94500000Y-63500000D01*
805 | X71500000Y-66500000D02*
806 | X72000000Y-66000000D01*
807 | X71500000Y-79000000D02*
808 | X71500000Y-66500000D01*
809 | X74500000Y-82000000D02*
810 | X71500000Y-79000000D01*
811 | X74500000Y-88000000D02*
812 | X74500000Y-82000000D01*
813 | X77500000Y-91000000D02*
814 | X74500000Y-88000000D01*
815 | X77500000Y-99500000D02*
816 | X77500000Y-91000000D01*
817 | X76810000Y-100190000D02*
818 | X77500000Y-99500000D01*
819 | X80650000Y-56000000D02*
820 | X80650000Y-57350000D01*
821 | X80650000Y-57350000D02*
822 | X79500000Y-58500000D01*
823 | X78500000Y-67650000D02*
824 | X78500000Y-67000000D01*
825 | X78500000Y-67000000D02*
826 | X74500000Y-63000000D01*
827 | X74500000Y-63000000D02*
828 | X74500000Y-62000000D01*
829 | X74500000Y-59500000D02*
830 | X75000000Y-59000000D01*
831 | X75000000Y-59000000D02*
832 | X75500000Y-58500000D01*
833 | X75500000Y-58500000D02*
834 | X79500000Y-58500000D01*
835 | X79500000Y-58500000D02*
836 | X97500000Y-58500000D01*
837 | X97500000Y-58500000D02*
838 | X99000000Y-57000000D01*
839 | X99000000Y-57000000D02*
840 | X99000000Y-55000000D01*
841 | X99000000Y-55000000D02*
842 | X101540000Y-55000000D01*
843 | X79000000Y-85350000D02*
844 | X80150000Y-85350000D01*
845 | X80950000Y-83050000D02*
846 | X81500000Y-83050000D01*
847 | X80500000Y-83500000D02*
848 | X80950000Y-83050000D01*
849 | X80500000Y-85000000D02*
850 | X80500000Y-83500000D01*
851 | X80150000Y-85350000D02*
852 | X80500000Y-85000000D01*
853 | X83500000Y-84000000D02*
854 | X83500000Y-94500000D01*
855 | X86150000Y-84000000D02*
856 | X83500000Y-84000000D01*
857 | X79000000Y-82650000D02*
858 | X79000000Y-80000000D01*
859 | X102390000Y-63610000D02*
860 | X102390000Y-60880000D01*
861 | X101000000Y-65000000D02*
862 | X102390000Y-63610000D01*
863 | X75000000Y-68000000D02*
864 | X76500000Y-66500000D01*
865 | X75000000Y-77500000D02*
866 | X75000000Y-68000000D01*
867 | X76000000Y-78500000D02*
868 | X75000000Y-77500000D01*
869 | X77500000Y-78500000D02*
870 | X76000000Y-78500000D01*
871 | X79000000Y-80000000D02*
872 | X77500000Y-78500000D01*
873 | D41*
874 | G36*
875 | X91373000Y-122373000D02*
876 | X84627000Y-122373000D01*
877 | X84627000Y-120627000D01*
878 | X91373000Y-120627000D01*
879 | X91373000Y-122373000D01*
880 | X91373000Y-122373000D01*
881 | G37*
882 | X91373000Y-122373000D02*
883 | X84627000Y-122373000D01*
884 | X84627000Y-120627000D01*
885 | X91373000Y-120627000D01*
886 | X91373000Y-122373000D01*
887 | G36*
888 | X91373000Y-117373000D02*
889 | X85250901Y-117373000D01*
890 | X85085000Y-117340000D01*
891 | X84627000Y-117340000D01*
892 | X84627000Y-115627000D01*
893 | X91373000Y-115627000D01*
894 | X91373000Y-117373000D01*
895 | X91373000Y-117373000D01*
896 | G37*
897 | X91373000Y-117373000D02*
898 | X85250901Y-117373000D01*
899 | X85085000Y-117340000D01*
900 | X84627000Y-117340000D01*
901 | X84627000Y-115627000D01*
902 | X91373000Y-115627000D01*
903 | X91373000Y-117373000D01*
904 | M02*
905 |
--------------------------------------------------------------------------------
/KiCAD_PCB_Files/Gerber/Arduino_PCB_V4/Arduino_Board_Only_V4-F.Mask.gbr:
--------------------------------------------------------------------------------
1 | G04 #@! TF.FileFunction,Soldermask,Top*
2 | %FSLAX46Y46*%
3 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
4 | G04 Created by KiCad (PCBNEW 4.0.4-stable) date 08/18/21 08:25:54*
5 | %MOMM*%
6 | %LPD*%
7 | G01*
8 | G04 APERTURE LIST*
9 | %ADD10C,0.100000*%
10 | %ADD11R,1.974800X2.686000*%
11 | %ADD12O,1.974800X2.686000*%
12 | %ADD13O,1.920000X2.920000*%
13 | %ADD14C,3.600000*%
14 | %ADD15R,2.400000X3.000000*%
15 | %ADD16O,2.400000X3.000000*%
16 | %ADD17O,2.200000X2.900000*%
17 | %ADD18O,2.000000X2.900000*%
18 | %ADD19C,2.400000*%
19 | %ADD20R,4.400000X2.900000*%
20 | %ADD21R,2.200000X2.900000*%
21 | %ADD22R,1.200000X1.300000*%
22 | %ADD23R,1.300000X1.600000*%
23 | %ADD24C,2.150000*%
24 | %ADD25O,4.400000X4.400000*%
25 | %ADD26R,1.700000X1.900000*%
26 | %ADD27R,1.950000X1.000000*%
27 | %ADD28O,2.400000X1.924000*%
28 | %ADD29C,2.900000*%
29 | %ADD30R,1.300000X1.200000*%
30 | %ADD31R,1.900000X1.700000*%
31 | %ADD32C,2.100000*%
32 | %ADD33R,2.900000X2.200000*%
33 | %ADD34R,1.650000X1.900000*%
34 | G04 APERTURE END LIST*
35 | D10*
36 | D11*
37 | X112550000Y-60880000D03*
38 | D12*
39 | X110010000Y-60880000D03*
40 | X107470000Y-60880000D03*
41 | X104930000Y-60880000D03*
42 | X102390000Y-60880000D03*
43 | X99850000Y-60880000D03*
44 | X97310000Y-60880000D03*
45 | X94770000Y-60880000D03*
46 | X92230000Y-60880000D03*
47 | X89690000Y-60880000D03*
48 | X87150000Y-60880000D03*
49 | X84610000Y-60880000D03*
50 | X82070000Y-60880000D03*
51 | X79530000Y-60880000D03*
52 | X76990000Y-60880000D03*
53 | X76990000Y-76120000D03*
54 | X79530000Y-76120000D03*
55 | X82070000Y-76120000D03*
56 | X84610000Y-76120000D03*
57 | X87150000Y-76120000D03*
58 | X89690000Y-76120000D03*
59 | X92230000Y-76120000D03*
60 | X94770000Y-76120000D03*
61 | X97310000Y-76120000D03*
62 | X99850000Y-76120000D03*
63 | X102390000Y-76120000D03*
64 | X104930000Y-76120000D03*
65 | X107470000Y-76120000D03*
66 | X110010000Y-76120000D03*
67 | X112550000Y-76120000D03*
68 | D13*
69 | X88800000Y-55000000D03*
70 | X91340000Y-55000000D03*
71 | X99000000Y-55000000D03*
72 | X101540000Y-55000000D03*
73 | D14*
74 | X73000000Y-56000000D03*
75 | X117000000Y-127000000D03*
76 | D15*
77 | X78600000Y-126500000D03*
78 | D16*
79 | X81140000Y-126500000D03*
80 | D17*
81 | X111100000Y-127000000D03*
82 | X108100000Y-127000000D03*
83 | D18*
84 | X88640000Y-128000000D03*
85 | X91180000Y-128000000D03*
86 | X93720000Y-128000000D03*
87 | X96260000Y-128000000D03*
88 | X98800000Y-128000000D03*
89 | X101340000Y-128000000D03*
90 | D19*
91 | X95500000Y-109500000D03*
92 | X95500000Y-104500000D03*
93 | D20*
94 | X108500000Y-116500000D03*
95 | X116500000Y-116500000D03*
96 | D21*
97 | X103500000Y-117000000D03*
98 | X103500000Y-121000000D03*
99 | D22*
100 | X83950000Y-66000000D03*
101 | X82050000Y-66000000D03*
102 | X83000000Y-68000000D03*
103 | D23*
104 | X81350000Y-71500000D03*
105 | X84650000Y-71500000D03*
106 | D22*
107 | X112950000Y-67000000D03*
108 | X111050000Y-67000000D03*
109 | X112000000Y-69000000D03*
110 | D24*
111 | X113000000Y-82500000D03*
112 | X108000000Y-82500000D03*
113 | X110500000Y-82500000D03*
114 | X108000000Y-97000000D03*
115 | X113000000Y-97000000D03*
116 | D25*
117 | X104300000Y-90000000D03*
118 | X116700000Y-90000000D03*
119 | D26*
120 | X93500000Y-69350000D03*
121 | X93500000Y-66650000D03*
122 | D27*
123 | X85300000Y-117095000D03*
124 | X85300000Y-118365000D03*
125 | X85300000Y-119635000D03*
126 | X85300000Y-120905000D03*
127 | X90700000Y-120905000D03*
128 | X90700000Y-119635000D03*
129 | X90700000Y-118365000D03*
130 | X90700000Y-117095000D03*
131 | D28*
132 | X73500000Y-107810000D03*
133 | X73500000Y-105270000D03*
134 | X73500000Y-102730000D03*
135 | X73500000Y-100190000D03*
136 | D29*
137 | X97800000Y-115650000D03*
138 | X74000000Y-115650000D03*
139 | X74000000Y-92350000D03*
140 | X97800000Y-92350000D03*
141 | D30*
142 | X81500000Y-83050000D03*
143 | X81500000Y-84950000D03*
144 | X83500000Y-84000000D03*
145 | D26*
146 | X82000000Y-120850000D03*
147 | X82000000Y-118150000D03*
148 | X116500000Y-78150000D03*
149 | X116500000Y-80850000D03*
150 | D31*
151 | X96650000Y-80500000D03*
152 | X99350000Y-80500000D03*
153 | X99350000Y-83500000D03*
154 | X96650000Y-83500000D03*
155 | X96650000Y-86500000D03*
156 | X99350000Y-86500000D03*
157 | D26*
158 | X79000000Y-82650000D03*
159 | X79000000Y-85350000D03*
160 | X90500000Y-66650000D03*
161 | X90500000Y-69350000D03*
162 | D31*
163 | X86150000Y-84000000D03*
164 | X88850000Y-84000000D03*
165 | X80650000Y-56000000D03*
166 | X83350000Y-56000000D03*
167 | D26*
168 | X78500000Y-67650000D03*
169 | X78500000Y-70350000D03*
170 | X105000000Y-66650000D03*
171 | X105000000Y-69350000D03*
172 | X102000000Y-69350000D03*
173 | X102000000Y-66650000D03*
174 | D32*
175 | X83500000Y-94500000D03*
176 | X88500000Y-94500000D03*
177 | D21*
178 | X85500000Y-109000000D03*
179 | X85500000Y-105000000D03*
180 | D33*
181 | X95500000Y-120500000D03*
182 | X99500000Y-120500000D03*
183 | D34*
184 | X90500000Y-108250000D03*
185 | X90500000Y-105750000D03*
186 | D20*
187 | X108500000Y-105000000D03*
188 | X116500000Y-105000000D03*
189 | D34*
190 | X99500000Y-69250000D03*
191 | X99500000Y-66750000D03*
192 | X96500000Y-69250000D03*
193 | X96500000Y-66750000D03*
194 | X108000000Y-69250000D03*
195 | X108000000Y-66750000D03*
196 | M02*
197 |
--------------------------------------------------------------------------------
/KiCAD_PCB_Files/Gerber/Arduino_PCB_V4/Arduino_Board_Only_V4.drl:
--------------------------------------------------------------------------------
1 | M48
2 | ;DRILL file {KiCad 4.0.4-stable} date 08/18/21 08:25:56
3 | ;FORMAT={3:3/ absolute / metric / suppress trailing zeros}
4 | FMAT,2
5 | METRIC,LZ
6 | T1C0.400
7 | T2C0.762
8 | T3C0.800
9 | T4C0.813
10 | T5C1.000
11 | T6C1.100
12 | T7C1.200
13 | T8C2.000
14 | T9C2.500
15 | T10C3.200
16 | %
17 | G90
18 | G05
19 | M71
20 | T1
21 | X072Y-066
22 | X0725Y-0675
23 | X0745Y-0595
24 | X0745Y-062
25 | X0765Y-0665
26 | X078Y-1035
27 | X079Y-0785
28 | X081Y-1005
29 | X081Y-1075
30 | X081Y-11
31 | X0815Y-0865
32 | X082Y-108
33 | X082Y-11
34 | X08465Y-069
35 | X0855Y-122
36 | X087Y-072
37 | X087Y-122
38 | X0885Y-0645
39 | X089Y-122
40 | X0905Y-0725
41 | X0905Y-122
42 | X092Y-085
43 | X093Y-0795
44 | X094Y-0635
45 | X0945Y-0645
46 | X096Y-079
47 | X096Y-085
48 | X098Y-06675
49 | X0985Y-071
50 | X0995Y-1205
51 | X1005Y-1205
52 | X101Y-065
53 | X1015Y-071
54 | X106Y-064
55 | X114Y-067
56 | T2
57 | X0735Y-10019
58 | X0735Y-10273
59 | X0735Y-10527
60 | X0735Y-10781
61 | T3
62 | X0835Y-0945
63 | X0885Y-0945
64 | T4
65 | X07699Y-06088
66 | X07699Y-07612
67 | X07953Y-06088
68 | X07953Y-07612
69 | X08207Y-06088
70 | X08207Y-07612
71 | X08461Y-06088
72 | X08461Y-07612
73 | X08715Y-06088
74 | X08715Y-07612
75 | X08969Y-06088
76 | X08969Y-07612
77 | X09223Y-06088
78 | X09223Y-07612
79 | X09477Y-06088
80 | X09477Y-07612
81 | X09731Y-06088
82 | X09731Y-07612
83 | X09985Y-06088
84 | X09985Y-07612
85 | X10239Y-06088
86 | X10239Y-07612
87 | X10493Y-06088
88 | X10493Y-07612
89 | X10747Y-06088
90 | X10747Y-07612
91 | X11001Y-06088
92 | X11001Y-07612
93 | X11255Y-06088
94 | X11255Y-07612
95 | T5
96 | X08864Y-128
97 | X0888Y-055
98 | X09118Y-128
99 | X09134Y-055
100 | X09372Y-128
101 | X0955Y-1045
102 | X0955Y-1095
103 | X09626Y-128
104 | X0988Y-128
105 | X099Y-055
106 | X10134Y-128
107 | X10154Y-055
108 | X1081Y-127
109 | X1111Y-127
110 | T6
111 | X108Y-0825
112 | X108Y-097
113 | X1105Y-0825
114 | X113Y-0825
115 | X113Y-097
116 | T7
117 | X0786Y-1265
118 | X08114Y-1265
119 | T8
120 | X074Y-09235
121 | X074Y-11565
122 | X0978Y-09235
123 | X0978Y-11565
124 | T9
125 | X1043Y-09
126 | X1167Y-09
127 | T10
128 | X073Y-056
129 | X117Y-127
130 | T0
131 | M30
132 |
--------------------------------------------------------------------------------
/KiCAD_PCB_Files/Gerber/Arduino_PCB_V4/Readme.md:
--------------------------------------------------------------------------------
1 | These are the gerber files for the Arduino PCB V4. This one can be ordered with the standard 1oz copper layer.
2 |
--------------------------------------------------------------------------------
/KiCAD_PCB_Files/Gerber/Mosfet_PCB_V4/Mosfet_Board_Only_V4-B.Mask.gbr:
--------------------------------------------------------------------------------
1 | G04 #@! TF.FileFunction,Soldermask,Bot*
2 | %FSLAX46Y46*%
3 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
4 | G04 Created by KiCad (PCBNEW 4.0.4-stable) date 08/18/21 08:28:06*
5 | %MOMM*%
6 | %LPD*%
7 | G01*
8 | G04 APERTURE LIST*
9 | %ADD10C,0.100000*%
10 | %ADD11C,3.600000*%
11 | %ADD12O,1.920000X2.920000*%
12 | %ADD13O,2.000000X2.900000*%
13 | %ADD14R,2.400000X2.100000*%
14 | %ADD15R,2.100000X2.400000*%
15 | %ADD16R,2.560000X10.900000*%
16 | %ADD17R,7.410000X9.290000*%
17 | %ADD18R,2.400000X3.400000*%
18 | G04 APERTURE END LIST*
19 | D10*
20 | D11*
21 | X182000000Y-127000000D03*
22 | X143000000Y-125000000D03*
23 | X138000000Y-56000000D03*
24 | D12*
25 | X153800000Y-55000000D03*
26 | X156340000Y-55000000D03*
27 | X164000000Y-55000000D03*
28 | X166540000Y-55000000D03*
29 | D13*
30 | X153640000Y-128000000D03*
31 | X156180000Y-128000000D03*
32 | X158720000Y-128000000D03*
33 | X161260000Y-128000000D03*
34 | X163800000Y-128000000D03*
35 | X166340000Y-128000000D03*
36 | D11*
37 | X143000000Y-105000000D03*
38 | X143000000Y-65000000D03*
39 | X177000000Y-58000000D03*
40 | X177000000Y-78000000D03*
41 | X177000000Y-118000000D03*
42 | X143000000Y-85000000D03*
43 | X177000000Y-98000000D03*
44 | D14*
45 | X154000000Y-117000000D03*
46 | X158000000Y-117000000D03*
47 | X154000000Y-100000000D03*
48 | X158000000Y-100000000D03*
49 | X154000000Y-94000000D03*
50 | X158000000Y-94000000D03*
51 | X154000000Y-77500000D03*
52 | X158000000Y-77500000D03*
53 | X154000000Y-71000000D03*
54 | X158000000Y-71000000D03*
55 | D15*
56 | X162500000Y-69500000D03*
57 | X162500000Y-73500000D03*
58 | D16*
59 | X152420000Y-108500000D03*
60 | D17*
61 | X156995000Y-108500000D03*
62 | D18*
63 | X165450000Y-108500000D03*
64 | D16*
65 | X152420000Y-85500000D03*
66 | D17*
67 | X156995000Y-85500000D03*
68 | D18*
69 | X165450000Y-85500000D03*
70 | D16*
71 | X152420000Y-62500000D03*
72 | D17*
73 | X156995000Y-62500000D03*
74 | D18*
75 | X165450000Y-62500000D03*
76 | M02*
77 |
--------------------------------------------------------------------------------
/KiCAD_PCB_Files/Gerber/Mosfet_PCB_V4/Mosfet_Board_Only_V4-B.SilkS.gbr:
--------------------------------------------------------------------------------
1 | G04 #@! TF.FileFunction,Legend,Bot*
2 | %FSLAX46Y46*%
3 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
4 | G04 Created by KiCad (PCBNEW 4.0.4-stable) date 08/18/21 08:28:06*
5 | %MOMM*%
6 | %LPD*%
7 | G01*
8 | G04 APERTURE LIST*
9 | %ADD10C,0.100000*%
10 | %ADD11C,0.300000*%
11 | %ADD12C,0.200000*%
12 | %ADD13C,0.120000*%
13 | %ADD14C,0.150000*%
14 | G04 APERTURE END LIST*
15 | D10*
16 | D11*
17 | X182378571Y-55957142D02*
18 | X182807143Y-54814285D01*
19 | X183235714Y-55957142D01*
20 | X182807143Y-56671428D02*
21 | X182807143Y-57814285D01*
22 | X182807143Y-58528571D02*
23 | X182807143Y-59671428D01*
24 | X181878571Y-61385714D02*
25 | X183378571Y-61742857D01*
26 | X182307143Y-62028571D01*
27 | X183378571Y-62314285D01*
28 | X181878571Y-62671428D01*
29 | X182592857Y-63242857D02*
30 | X182592857Y-63742857D01*
31 | X183378571Y-63957143D02*
32 | X183378571Y-63242857D01*
33 | X181878571Y-63242857D01*
34 | X181878571Y-63957143D01*
35 | X183378571Y-65314286D02*
36 | X183378571Y-64600000D01*
37 | X181878571Y-64600000D01*
38 | X183378571Y-65814286D02*
39 | X181878571Y-65814286D01*
40 | X181878571Y-66171429D01*
41 | X181950000Y-66385714D01*
42 | X182092857Y-66528572D01*
43 | X182235714Y-66600000D01*
44 | X182521429Y-66671429D01*
45 | X182735714Y-66671429D01*
46 | X183021429Y-66600000D01*
47 | X183164286Y-66528572D01*
48 | X183307143Y-66385714D01*
49 | X183378571Y-66171429D01*
50 | X183378571Y-65814286D01*
51 | X183378571Y-67314286D02*
52 | X181878571Y-67314286D01*
53 | X183378571Y-68028572D02*
54 | X181878571Y-68028572D01*
55 | X183378571Y-68885715D01*
56 | X181878571Y-68885715D01*
57 | X181950000Y-70385715D02*
58 | X181878571Y-70242858D01*
59 | X181878571Y-70028572D01*
60 | X181950000Y-69814287D01*
61 | X182092857Y-69671429D01*
62 | X182235714Y-69600001D01*
63 | X182521429Y-69528572D01*
64 | X182735714Y-69528572D01*
65 | X183021429Y-69600001D01*
66 | X183164286Y-69671429D01*
67 | X183307143Y-69814287D01*
68 | X183378571Y-70028572D01*
69 | X183378571Y-70171429D01*
70 | X183307143Y-70385715D01*
71 | X183235714Y-70457144D01*
72 | X182735714Y-70457144D01*
73 | X182735714Y-70171429D01*
74 | X183235714Y-73100001D02*
75 | X183307143Y-73028572D01*
76 | X183378571Y-72814286D01*
77 | X183378571Y-72671429D01*
78 | X183307143Y-72457144D01*
79 | X183164286Y-72314286D01*
80 | X183021429Y-72242858D01*
81 | X182735714Y-72171429D01*
82 | X182521429Y-72171429D01*
83 | X182235714Y-72242858D01*
84 | X182092857Y-72314286D01*
85 | X181950000Y-72457144D01*
86 | X181878571Y-72671429D01*
87 | X181878571Y-72814286D01*
88 | X181950000Y-73028572D01*
89 | X182021429Y-73100001D01*
90 | X182950000Y-73671429D02*
91 | X182950000Y-74385715D01*
92 | X183378571Y-73528572D02*
93 | X181878571Y-74028572D01*
94 | X183378571Y-74528572D01*
95 | X182592857Y-75528572D02*
96 | X182664286Y-75742858D01*
97 | X182735714Y-75814286D01*
98 | X182878571Y-75885715D01*
99 | X183092857Y-75885715D01*
100 | X183235714Y-75814286D01*
101 | X183307143Y-75742858D01*
102 | X183378571Y-75600000D01*
103 | X183378571Y-75028572D01*
104 | X181878571Y-75028572D01*
105 | X181878571Y-75528572D01*
106 | X181950000Y-75671429D01*
107 | X182021429Y-75742858D01*
108 | X182164286Y-75814286D01*
109 | X182307143Y-75814286D01*
110 | X182450000Y-75742858D01*
111 | X182521429Y-75671429D01*
112 | X182592857Y-75528572D01*
113 | X182592857Y-75028572D01*
114 | X183378571Y-77242858D02*
115 | X183378571Y-76528572D01*
116 | X181878571Y-76528572D01*
117 | X182592857Y-77742858D02*
118 | X182592857Y-78242858D01*
119 | X183378571Y-78457144D02*
120 | X183378571Y-77742858D01*
121 | X181878571Y-77742858D01*
122 | X181878571Y-78457144D01*
123 | X137642857Y-104000000D02*
124 | X137714286Y-104214286D01*
125 | X137785714Y-104285714D01*
126 | X137928571Y-104357143D01*
127 | X138142857Y-104357143D01*
128 | X138285714Y-104285714D01*
129 | X138357143Y-104214286D01*
130 | X138428571Y-104071428D01*
131 | X138428571Y-103500000D01*
132 | X136928571Y-103500000D01*
133 | X136928571Y-104000000D01*
134 | X137000000Y-104142857D01*
135 | X137071429Y-104214286D01*
136 | X137214286Y-104285714D01*
137 | X137357143Y-104285714D01*
138 | X137500000Y-104214286D01*
139 | X137571429Y-104142857D01*
140 | X137642857Y-104000000D01*
141 | X137642857Y-103500000D01*
142 | X138000000Y-104928571D02*
143 | X138000000Y-105642857D01*
144 | X138428571Y-104785714D02*
145 | X136928571Y-105285714D01*
146 | X138428571Y-105785714D01*
147 | X136928571Y-106071428D02*
148 | X136928571Y-106928571D01*
149 | X138428571Y-106500000D02*
150 | X136928571Y-106500000D01*
151 | X136928571Y-107214285D02*
152 | X136928571Y-108071428D01*
153 | X138428571Y-107642857D02*
154 | X136928571Y-107642857D01*
155 | X137642857Y-108571428D02*
156 | X137642857Y-109071428D01*
157 | X138428571Y-109285714D02*
158 | X138428571Y-108571428D01*
159 | X136928571Y-108571428D01*
160 | X136928571Y-109285714D01*
161 | X138428571Y-110785714D02*
162 | X137714286Y-110285714D01*
163 | X138428571Y-109928571D02*
164 | X136928571Y-109928571D01*
165 | X136928571Y-110499999D01*
166 | X137000000Y-110642857D01*
167 | X137071429Y-110714285D01*
168 | X137214286Y-110785714D01*
169 | X137428571Y-110785714D01*
170 | X137571429Y-110714285D01*
171 | X137642857Y-110642857D01*
172 | X137714286Y-110499999D01*
173 | X137714286Y-109928571D01*
174 | X137714286Y-111714285D02*
175 | X138428571Y-111714285D01*
176 | X136928571Y-111214285D02*
177 | X137714286Y-111714285D01*
178 | X136928571Y-112214285D01*
179 | X138428571Y-113857142D02*
180 | X136928571Y-113857142D01*
181 | X138000000Y-114357142D01*
182 | X136928571Y-114857142D01*
183 | X138428571Y-114857142D01*
184 | X138428571Y-115571428D02*
185 | X136928571Y-115571428D01*
186 | X138428571Y-116285714D02*
187 | X136928571Y-116285714D01*
188 | X138428571Y-117142857D01*
189 | X136928571Y-117142857D01*
190 | X136928571Y-117857143D02*
191 | X138142857Y-117857143D01*
192 | X138285714Y-117928571D01*
193 | X138357143Y-118000000D01*
194 | X138428571Y-118142857D01*
195 | X138428571Y-118428571D01*
196 | X138357143Y-118571429D01*
197 | X138285714Y-118642857D01*
198 | X138142857Y-118714286D01*
199 | X136928571Y-118714286D01*
200 | X138357143Y-119357143D02*
201 | X138428571Y-119571429D01*
202 | X138428571Y-119928572D01*
203 | X138357143Y-120071429D01*
204 | X138285714Y-120142858D01*
205 | X138142857Y-120214286D01*
206 | X138000000Y-120214286D01*
207 | X137857143Y-120142858D01*
208 | X137785714Y-120071429D01*
209 | X137714286Y-119928572D01*
210 | X137642857Y-119642858D01*
211 | X137571429Y-119500000D01*
212 | X137500000Y-119428572D01*
213 | X137357143Y-119357143D01*
214 | X137214286Y-119357143D01*
215 | X137071429Y-119428572D01*
216 | X137000000Y-119500000D01*
217 | X136928571Y-119642858D01*
218 | X136928571Y-120000000D01*
219 | X137000000Y-120214286D01*
220 | X137857143Y-123142857D02*
221 | X137857143Y-124285714D01*
222 | X137857143Y-125000000D02*
223 | X137857143Y-126142857D01*
224 | X137428571Y-126857143D02*
225 | X137857143Y-128000000D01*
226 | X138285714Y-126857143D01*
227 | D10*
228 | X163100000Y-63200000D02*
229 | X163100000Y-63300000D01*
230 | X163100000Y-62500000D02*
231 | X163300000Y-62500000D01*
232 | X162300000Y-62500000D02*
233 | X161900000Y-62500000D01*
234 | X162300000Y-63300000D02*
235 | X162300000Y-63200000D01*
236 | X163100000Y-62500000D02*
237 | X162300000Y-63300000D01*
238 | X162300000Y-61700000D02*
239 | X162300000Y-63200000D01*
240 | X163100000Y-62500000D02*
241 | X162300000Y-61700000D01*
242 | X163100000Y-62500000D02*
243 | X163100000Y-63200000D01*
244 | X163100000Y-62500000D02*
245 | X163100000Y-61700000D01*
246 | X163000000Y-109200000D02*
247 | X163000000Y-109300000D01*
248 | X163000000Y-108500000D02*
249 | X163200000Y-108500000D01*
250 | X162200000Y-108500000D02*
251 | X161800000Y-108500000D01*
252 | X162200000Y-109300000D02*
253 | X162200000Y-109200000D01*
254 | X163000000Y-108500000D02*
255 | X162200000Y-109300000D01*
256 | X162200000Y-107700000D02*
257 | X162200000Y-109200000D01*
258 | X163000000Y-108500000D02*
259 | X162200000Y-107700000D01*
260 | X163000000Y-108500000D02*
261 | X163000000Y-109200000D01*
262 | X163000000Y-108500000D02*
263 | X163000000Y-107700000D01*
264 | X163100000Y-86200000D02*
265 | X163100000Y-86300000D01*
266 | X163100000Y-85500000D02*
267 | X163300000Y-85500000D01*
268 | X162300000Y-85500000D02*
269 | X161900000Y-85500000D01*
270 | X162300000Y-86300000D02*
271 | X162300000Y-86200000D01*
272 | X163100000Y-85500000D02*
273 | X162300000Y-86300000D01*
274 | X162300000Y-84700000D02*
275 | X162300000Y-86200000D01*
276 | X163100000Y-85500000D02*
277 | X162300000Y-84700000D01*
278 | X163100000Y-85500000D02*
279 | X163100000Y-86200000D01*
280 | X163100000Y-85500000D02*
281 | X163100000Y-84700000D01*
282 | D12*
283 | X180402381Y-100795237D02*
284 | X179402381Y-100795237D01*
285 | X180116667Y-101128571D01*
286 | X179402381Y-101461904D01*
287 | X180402381Y-101461904D01*
288 | X180402381Y-102080951D02*
289 | X180354762Y-101985713D01*
290 | X180307143Y-101938094D01*
291 | X180211905Y-101890475D01*
292 | X179926190Y-101890475D01*
293 | X179830952Y-101938094D01*
294 | X179783333Y-101985713D01*
295 | X179735714Y-102080951D01*
296 | X179735714Y-102223809D01*
297 | X179783333Y-102319047D01*
298 | X179830952Y-102366666D01*
299 | X179926190Y-102414285D01*
300 | X180211905Y-102414285D01*
301 | X180307143Y-102366666D01*
302 | X180354762Y-102319047D01*
303 | X180402381Y-102223809D01*
304 | X180402381Y-102080951D01*
305 | X180354762Y-102795237D02*
306 | X180402381Y-102890475D01*
307 | X180402381Y-103080951D01*
308 | X180354762Y-103176190D01*
309 | X180259524Y-103223809D01*
310 | X180211905Y-103223809D01*
311 | X180116667Y-103176190D01*
312 | X180069048Y-103080951D01*
313 | X180069048Y-102938094D01*
314 | X180021429Y-102842856D01*
315 | X179926190Y-102795237D01*
316 | X179878571Y-102795237D01*
317 | X179783333Y-102842856D01*
318 | X179735714Y-102938094D01*
319 | X179735714Y-103080951D01*
320 | X179783333Y-103176190D01*
321 | X179735714Y-103509523D02*
322 | X179735714Y-103890475D01*
323 | X180402381Y-103652380D02*
324 | X179545238Y-103652380D01*
325 | X179450000Y-103699999D01*
326 | X179402381Y-103795237D01*
327 | X179402381Y-103890475D01*
328 | X180354762Y-104604762D02*
329 | X180402381Y-104509524D01*
330 | X180402381Y-104319047D01*
331 | X180354762Y-104223809D01*
332 | X180259524Y-104176190D01*
333 | X179878571Y-104176190D01*
334 | X179783333Y-104223809D01*
335 | X179735714Y-104319047D01*
336 | X179735714Y-104509524D01*
337 | X179783333Y-104604762D01*
338 | X179878571Y-104652381D01*
339 | X179973810Y-104652381D01*
340 | X180069048Y-104176190D01*
341 | X179735714Y-104938095D02*
342 | X179735714Y-105319047D01*
343 | X179402381Y-105080952D02*
344 | X180259524Y-105080952D01*
345 | X180354762Y-105128571D01*
346 | X180402381Y-105223809D01*
347 | X180402381Y-105319047D01*
348 | X179878571Y-106747620D02*
349 | X179926190Y-106890477D01*
350 | X179973810Y-106938096D01*
351 | X180069048Y-106985715D01*
352 | X180211905Y-106985715D01*
353 | X180307143Y-106938096D01*
354 | X180354762Y-106890477D01*
355 | X180402381Y-106795239D01*
356 | X180402381Y-106414286D01*
357 | X179402381Y-106414286D01*
358 | X179402381Y-106747620D01*
359 | X179450000Y-106842858D01*
360 | X179497619Y-106890477D01*
361 | X179592857Y-106938096D01*
362 | X179688095Y-106938096D01*
363 | X179783333Y-106890477D01*
364 | X179830952Y-106842858D01*
365 | X179878571Y-106747620D01*
366 | X179878571Y-106414286D01*
367 | X180402381Y-107557143D02*
368 | X180354762Y-107461905D01*
369 | X180307143Y-107414286D01*
370 | X180211905Y-107366667D01*
371 | X179926190Y-107366667D01*
372 | X179830952Y-107414286D01*
373 | X179783333Y-107461905D01*
374 | X179735714Y-107557143D01*
375 | X179735714Y-107700001D01*
376 | X179783333Y-107795239D01*
377 | X179830952Y-107842858D01*
378 | X179926190Y-107890477D01*
379 | X180211905Y-107890477D01*
380 | X180307143Y-107842858D01*
381 | X180354762Y-107795239D01*
382 | X180402381Y-107700001D01*
383 | X180402381Y-107557143D01*
384 | X180402381Y-108747620D02*
385 | X179878571Y-108747620D01*
386 | X179783333Y-108700001D01*
387 | X179735714Y-108604763D01*
388 | X179735714Y-108414286D01*
389 | X179783333Y-108319048D01*
390 | X180354762Y-108747620D02*
391 | X180402381Y-108652382D01*
392 | X180402381Y-108414286D01*
393 | X180354762Y-108319048D01*
394 | X180259524Y-108271429D01*
395 | X180164286Y-108271429D01*
396 | X180069048Y-108319048D01*
397 | X180021429Y-108414286D01*
398 | X180021429Y-108652382D01*
399 | X179973810Y-108747620D01*
400 | X180402381Y-109223810D02*
401 | X179735714Y-109223810D01*
402 | X179926190Y-109223810D02*
403 | X179830952Y-109271429D01*
404 | X179783333Y-109319048D01*
405 | X179735714Y-109414286D01*
406 | X179735714Y-109509525D01*
407 | X180402381Y-110271430D02*
408 | X179402381Y-110271430D01*
409 | X180354762Y-110271430D02*
410 | X180402381Y-110176192D01*
411 | X180402381Y-109985715D01*
412 | X180354762Y-109890477D01*
413 | X180307143Y-109842858D01*
414 | X180211905Y-109795239D01*
415 | X179926190Y-109795239D01*
416 | X179830952Y-109842858D01*
417 | X179783333Y-109890477D01*
418 | X179735714Y-109985715D01*
419 | X179735714Y-110176192D01*
420 | X179783333Y-110271430D01*
421 | X179402381Y-111366668D02*
422 | X180402381Y-111700001D01*
423 | X179402381Y-112033335D01*
424 | X179735714Y-112795240D02*
425 | X180402381Y-112795240D01*
426 | X179354762Y-112557144D02*
427 | X180069048Y-112319049D01*
428 | X180069048Y-112938097D01*
429 | X182102381Y-99247618D02*
430 | X181102381Y-99247618D01*
431 | X182102381Y-99676190D02*
432 | X181578571Y-99676190D01*
433 | X181483333Y-99628571D01*
434 | X181435714Y-99533333D01*
435 | X181435714Y-99390475D01*
436 | X181483333Y-99295237D01*
437 | X181530952Y-99247618D01*
438 | X181435714Y-100009523D02*
439 | X181435714Y-100390475D01*
440 | X181102381Y-100152380D02*
441 | X181959524Y-100152380D01*
442 | X182054762Y-100199999D01*
443 | X182102381Y-100295237D01*
444 | X182102381Y-100390475D01*
445 | X181435714Y-100580952D02*
446 | X181435714Y-100961904D01*
447 | X181102381Y-100723809D02*
448 | X181959524Y-100723809D01*
449 | X182054762Y-100771428D01*
450 | X182102381Y-100866666D01*
451 | X182102381Y-100961904D01*
452 | X181435714Y-101295238D02*
453 | X182435714Y-101295238D01*
454 | X181483333Y-101295238D02*
455 | X181435714Y-101390476D01*
456 | X181435714Y-101580953D01*
457 | X181483333Y-101676191D01*
458 | X181530952Y-101723810D01*
459 | X181626190Y-101771429D01*
460 | X181911905Y-101771429D01*
461 | X182007143Y-101723810D01*
462 | X182054762Y-101676191D01*
463 | X182102381Y-101580953D01*
464 | X182102381Y-101390476D01*
465 | X182054762Y-101295238D01*
466 | X182054762Y-102152381D02*
467 | X182102381Y-102247619D01*
468 | X182102381Y-102438095D01*
469 | X182054762Y-102533334D01*
470 | X181959524Y-102580953D01*
471 | X181911905Y-102580953D01*
472 | X181816667Y-102533334D01*
473 | X181769048Y-102438095D01*
474 | X181769048Y-102295238D01*
475 | X181721429Y-102200000D01*
476 | X181626190Y-102152381D01*
477 | X181578571Y-102152381D01*
478 | X181483333Y-102200000D01*
479 | X181435714Y-102295238D01*
480 | X181435714Y-102438095D01*
481 | X181483333Y-102533334D01*
482 | X182007143Y-103009524D02*
483 | X182054762Y-103057143D01*
484 | X182102381Y-103009524D01*
485 | X182054762Y-102961905D01*
486 | X182007143Y-103009524D01*
487 | X182102381Y-103009524D01*
488 | X181483333Y-103009524D02*
489 | X181530952Y-103057143D01*
490 | X181578571Y-103009524D01*
491 | X181530952Y-102961905D01*
492 | X181483333Y-103009524D01*
493 | X181578571Y-103009524D01*
494 | X181054762Y-104200000D02*
495 | X182340476Y-103342857D01*
496 | X181054762Y-105247619D02*
497 | X182340476Y-104390476D01*
498 | X182102381Y-105580952D02*
499 | X181435714Y-105580952D01*
500 | X181530952Y-105580952D02*
501 | X181483333Y-105628571D01*
502 | X181435714Y-105723809D01*
503 | X181435714Y-105866667D01*
504 | X181483333Y-105961905D01*
505 | X181578571Y-106009524D01*
506 | X182102381Y-106009524D01*
507 | X181578571Y-106009524D02*
508 | X181483333Y-106057143D01*
509 | X181435714Y-106152381D01*
510 | X181435714Y-106295238D01*
511 | X181483333Y-106390476D01*
512 | X181578571Y-106438095D01*
513 | X182102381Y-106438095D01*
514 | X182102381Y-107342857D02*
515 | X181578571Y-107342857D01*
516 | X181483333Y-107295238D01*
517 | X181435714Y-107200000D01*
518 | X181435714Y-107009523D01*
519 | X181483333Y-106914285D01*
520 | X182054762Y-107342857D02*
521 | X182102381Y-107247619D01*
522 | X182102381Y-107009523D01*
523 | X182054762Y-106914285D01*
524 | X181959524Y-106866666D01*
525 | X181864286Y-106866666D01*
526 | X181769048Y-106914285D01*
527 | X181721429Y-107009523D01*
528 | X181721429Y-107247619D01*
529 | X181673810Y-107342857D01*
530 | X182102381Y-107961904D02*
531 | X182054762Y-107866666D01*
532 | X181959524Y-107819047D01*
533 | X181102381Y-107819047D01*
534 | X182054762Y-108723810D02*
535 | X182102381Y-108628572D01*
536 | X182102381Y-108438095D01*
537 | X182054762Y-108342857D01*
538 | X181959524Y-108295238D01*
539 | X181578571Y-108295238D01*
540 | X181483333Y-108342857D01*
541 | X181435714Y-108438095D01*
542 | X181435714Y-108628572D01*
543 | X181483333Y-108723810D01*
544 | X181578571Y-108771429D01*
545 | X181673810Y-108771429D01*
546 | X181769048Y-108295238D01*
547 | X182054762Y-109628572D02*
548 | X182102381Y-109533334D01*
549 | X182102381Y-109342857D01*
550 | X182054762Y-109247619D01*
551 | X182007143Y-109200000D01*
552 | X181911905Y-109152381D01*
553 | X181626190Y-109152381D01*
554 | X181530952Y-109200000D01*
555 | X181483333Y-109247619D01*
556 | X181435714Y-109342857D01*
557 | X181435714Y-109533334D01*
558 | X181483333Y-109628572D01*
559 | X181435714Y-109914286D02*
560 | X181435714Y-110295238D01*
561 | X181102381Y-110057143D02*
562 | X181959524Y-110057143D01*
563 | X182054762Y-110104762D01*
564 | X182102381Y-110200000D01*
565 | X182102381Y-110295238D01*
566 | X182102381Y-110628572D02*
567 | X181435714Y-110628572D01*
568 | X181626190Y-110628572D02*
569 | X181530952Y-110676191D01*
570 | X181483333Y-110723810D01*
571 | X181435714Y-110819048D01*
572 | X181435714Y-110914287D01*
573 | X182102381Y-111247620D02*
574 | X181435714Y-111247620D01*
575 | X181102381Y-111247620D02*
576 | X181150000Y-111200001D01*
577 | X181197619Y-111247620D01*
578 | X181150000Y-111295239D01*
579 | X181102381Y-111247620D01*
580 | X181197619Y-111247620D01*
581 | X182054762Y-112152382D02*
582 | X182102381Y-112057144D01*
583 | X182102381Y-111866667D01*
584 | X182054762Y-111771429D01*
585 | X182007143Y-111723810D01*
586 | X181911905Y-111676191D01*
587 | X181626190Y-111676191D01*
588 | X181530952Y-111723810D01*
589 | X181483333Y-111771429D01*
590 | X181435714Y-111866667D01*
591 | X181435714Y-112057144D01*
592 | X181483333Y-112152382D01*
593 | X182054762Y-112533334D02*
594 | X182102381Y-112628572D01*
595 | X182102381Y-112819048D01*
596 | X182054762Y-112914287D01*
597 | X181959524Y-112961906D01*
598 | X181911905Y-112961906D01*
599 | X181816667Y-112914287D01*
600 | X181769048Y-112819048D01*
601 | X181769048Y-112676191D01*
602 | X181721429Y-112580953D01*
603 | X181626190Y-112533334D01*
604 | X181578571Y-112533334D01*
605 | X181483333Y-112580953D01*
606 | X181435714Y-112676191D01*
607 | X181435714Y-112819048D01*
608 | X181483333Y-112914287D01*
609 | X182007143Y-113390477D02*
610 | X182054762Y-113438096D01*
611 | X182102381Y-113390477D01*
612 | X182054762Y-113342858D01*
613 | X182007143Y-113390477D01*
614 | X182102381Y-113390477D01*
615 | X182054762Y-114247620D02*
616 | X182102381Y-114152382D01*
617 | X182102381Y-113961905D01*
618 | X182054762Y-113866667D01*
619 | X181959524Y-113819048D01*
620 | X181578571Y-113819048D01*
621 | X181483333Y-113866667D01*
622 | X181435714Y-113961905D01*
623 | X181435714Y-114152382D01*
624 | X181483333Y-114247620D01*
625 | X181578571Y-114295239D01*
626 | X181673810Y-114295239D01*
627 | X181769048Y-113819048D01*
628 | X181435714Y-115152382D02*
629 | X182102381Y-115152382D01*
630 | X181435714Y-114723810D02*
631 | X181959524Y-114723810D01*
632 | X182054762Y-114771429D01*
633 | X182102381Y-114866667D01*
634 | X182102381Y-115009525D01*
635 | X182054762Y-115104763D01*
636 | X182007143Y-115152382D01*
637 | D13*
638 | X157000000Y-115930000D02*
639 | X155000000Y-115930000D01*
640 | X155000000Y-118070000D02*
641 | X157000000Y-118070000D01*
642 | X157000000Y-98930000D02*
643 | X155000000Y-98930000D01*
644 | X155000000Y-101070000D02*
645 | X157000000Y-101070000D01*
646 | X157000000Y-92930000D02*
647 | X155000000Y-92930000D01*
648 | X155000000Y-95070000D02*
649 | X157000000Y-95070000D01*
650 | X157000000Y-76430000D02*
651 | X155000000Y-76430000D01*
652 | X155000000Y-78570000D02*
653 | X157000000Y-78570000D01*
654 | X157000000Y-69930000D02*
655 | X155000000Y-69930000D01*
656 | X155000000Y-72070000D02*
657 | X157000000Y-72070000D01*
658 | X163570000Y-72500000D02*
659 | X163570000Y-70500000D01*
660 | X161430000Y-70500000D02*
661 | X161430000Y-72500000D01*
662 | D14*
663 | X156642857Y-119452381D02*
664 | X156976191Y-118976190D01*
665 | X157214286Y-119452381D02*
666 | X157214286Y-118452381D01*
667 | X156833333Y-118452381D01*
668 | X156738095Y-118500000D01*
669 | X156690476Y-118547619D01*
670 | X156642857Y-118642857D01*
671 | X156642857Y-118785714D01*
672 | X156690476Y-118880952D01*
673 | X156738095Y-118928571D01*
674 | X156833333Y-118976190D01*
675 | X157214286Y-118976190D01*
676 | X155690476Y-119452381D02*
677 | X156261905Y-119452381D01*
678 | X155976191Y-119452381D02*
679 | X155976191Y-118452381D01*
680 | X156071429Y-118595238D01*
681 | X156166667Y-118690476D01*
682 | X156261905Y-118738095D01*
683 | X155357143Y-118452381D02*
684 | X154738095Y-118452381D01*
685 | X155071429Y-118833333D01*
686 | X154928571Y-118833333D01*
687 | X154833333Y-118880952D01*
688 | X154785714Y-118928571D01*
689 | X154738095Y-119023810D01*
690 | X154738095Y-119261905D01*
691 | X154785714Y-119357143D01*
692 | X154833333Y-119404762D01*
693 | X154928571Y-119452381D01*
694 | X155214286Y-119452381D01*
695 | X155309524Y-119404762D01*
696 | X155357143Y-119357143D01*
697 | X156642857Y-102452381D02*
698 | X156976191Y-101976190D01*
699 | X157214286Y-102452381D02*
700 | X157214286Y-101452381D01*
701 | X156833333Y-101452381D01*
702 | X156738095Y-101500000D01*
703 | X156690476Y-101547619D01*
704 | X156642857Y-101642857D01*
705 | X156642857Y-101785714D01*
706 | X156690476Y-101880952D01*
707 | X156738095Y-101928571D01*
708 | X156833333Y-101976190D01*
709 | X157214286Y-101976190D01*
710 | X155690476Y-102452381D02*
711 | X156261905Y-102452381D01*
712 | X155976191Y-102452381D02*
713 | X155976191Y-101452381D01*
714 | X156071429Y-101595238D01*
715 | X156166667Y-101690476D01*
716 | X156261905Y-101738095D01*
717 | X154833333Y-101785714D02*
718 | X154833333Y-102452381D01*
719 | X155071429Y-101404762D02*
720 | X155309524Y-102119048D01*
721 | X154690476Y-102119048D01*
722 | X156642857Y-96452381D02*
723 | X156976191Y-95976190D01*
724 | X157214286Y-96452381D02*
725 | X157214286Y-95452381D01*
726 | X156833333Y-95452381D01*
727 | X156738095Y-95500000D01*
728 | X156690476Y-95547619D01*
729 | X156642857Y-95642857D01*
730 | X156642857Y-95785714D01*
731 | X156690476Y-95880952D01*
732 | X156738095Y-95928571D01*
733 | X156833333Y-95976190D01*
734 | X157214286Y-95976190D01*
735 | X155690476Y-96452381D02*
736 | X156261905Y-96452381D01*
737 | X155976191Y-96452381D02*
738 | X155976191Y-95452381D01*
739 | X156071429Y-95595238D01*
740 | X156166667Y-95690476D01*
741 | X156261905Y-95738095D01*
742 | X154785714Y-95452381D02*
743 | X155261905Y-95452381D01*
744 | X155309524Y-95928571D01*
745 | X155261905Y-95880952D01*
746 | X155166667Y-95833333D01*
747 | X154928571Y-95833333D01*
748 | X154833333Y-95880952D01*
749 | X154785714Y-95928571D01*
750 | X154738095Y-96023810D01*
751 | X154738095Y-96261905D01*
752 | X154785714Y-96357143D01*
753 | X154833333Y-96404762D01*
754 | X154928571Y-96452381D01*
755 | X155166667Y-96452381D01*
756 | X155261905Y-96404762D01*
757 | X155309524Y-96357143D01*
758 | X156642857Y-79952381D02*
759 | X156976191Y-79476190D01*
760 | X157214286Y-79952381D02*
761 | X157214286Y-78952381D01*
762 | X156833333Y-78952381D01*
763 | X156738095Y-79000000D01*
764 | X156690476Y-79047619D01*
765 | X156642857Y-79142857D01*
766 | X156642857Y-79285714D01*
767 | X156690476Y-79380952D01*
768 | X156738095Y-79428571D01*
769 | X156833333Y-79476190D01*
770 | X157214286Y-79476190D01*
771 | X155690476Y-79952381D02*
772 | X156261905Y-79952381D01*
773 | X155976191Y-79952381D02*
774 | X155976191Y-78952381D01*
775 | X156071429Y-79095238D01*
776 | X156166667Y-79190476D01*
777 | X156261905Y-79238095D01*
778 | X154833333Y-78952381D02*
779 | X155023810Y-78952381D01*
780 | X155119048Y-79000000D01*
781 | X155166667Y-79047619D01*
782 | X155261905Y-79190476D01*
783 | X155309524Y-79380952D01*
784 | X155309524Y-79761905D01*
785 | X155261905Y-79857143D01*
786 | X155214286Y-79904762D01*
787 | X155119048Y-79952381D01*
788 | X154928571Y-79952381D01*
789 | X154833333Y-79904762D01*
790 | X154785714Y-79857143D01*
791 | X154738095Y-79761905D01*
792 | X154738095Y-79523810D01*
793 | X154785714Y-79428571D01*
794 | X154833333Y-79380952D01*
795 | X154928571Y-79333333D01*
796 | X155119048Y-79333333D01*
797 | X155214286Y-79380952D01*
798 | X155261905Y-79428571D01*
799 | X155309524Y-79523810D01*
800 | X156642857Y-73452381D02*
801 | X156976191Y-72976190D01*
802 | X157214286Y-73452381D02*
803 | X157214286Y-72452381D01*
804 | X156833333Y-72452381D01*
805 | X156738095Y-72500000D01*
806 | X156690476Y-72547619D01*
807 | X156642857Y-72642857D01*
808 | X156642857Y-72785714D01*
809 | X156690476Y-72880952D01*
810 | X156738095Y-72928571D01*
811 | X156833333Y-72976190D01*
812 | X157214286Y-72976190D01*
813 | X155690476Y-73452381D02*
814 | X156261905Y-73452381D01*
815 | X155976191Y-73452381D02*
816 | X155976191Y-72452381D01*
817 | X156071429Y-72595238D01*
818 | X156166667Y-72690476D01*
819 | X156261905Y-72738095D01*
820 | X155357143Y-72452381D02*
821 | X154690476Y-72452381D01*
822 | X155119048Y-73452381D01*
823 | X160952381Y-70857143D02*
824 | X160476190Y-70523809D01*
825 | X160952381Y-70285714D02*
826 | X159952381Y-70285714D01*
827 | X159952381Y-70666667D01*
828 | X160000000Y-70761905D01*
829 | X160047619Y-70809524D01*
830 | X160142857Y-70857143D01*
831 | X160285714Y-70857143D01*
832 | X160380952Y-70809524D01*
833 | X160428571Y-70761905D01*
834 | X160476190Y-70666667D01*
835 | X160476190Y-70285714D01*
836 | X160952381Y-71809524D02*
837 | X160952381Y-71238095D01*
838 | X160952381Y-71523809D02*
839 | X159952381Y-71523809D01*
840 | X160095238Y-71428571D01*
841 | X160190476Y-71333333D01*
842 | X160238095Y-71238095D01*
843 | X160380952Y-72380952D02*
844 | X160333333Y-72285714D01*
845 | X160285714Y-72238095D01*
846 | X160190476Y-72190476D01*
847 | X160142857Y-72190476D01*
848 | X160047619Y-72238095D01*
849 | X160000000Y-72285714D01*
850 | X159952381Y-72380952D01*
851 | X159952381Y-72571429D01*
852 | X160000000Y-72666667D01*
853 | X160047619Y-72714286D01*
854 | X160142857Y-72761905D01*
855 | X160190476Y-72761905D01*
856 | X160285714Y-72714286D01*
857 | X160333333Y-72666667D01*
858 | X160380952Y-72571429D01*
859 | X160380952Y-72380952D01*
860 | X160428571Y-72285714D01*
861 | X160476190Y-72238095D01*
862 | X160571429Y-72190476D01*
863 | X160761905Y-72190476D01*
864 | X160857143Y-72238095D01*
865 | X160904762Y-72285714D01*
866 | X160952381Y-72380952D01*
867 | X160952381Y-72571429D01*
868 | X160904762Y-72666667D01*
869 | X160857143Y-72714286D01*
870 | X160761905Y-72761905D01*
871 | X160571429Y-72761905D01*
872 | X160476190Y-72714286D01*
873 | X160428571Y-72666667D01*
874 | X160380952Y-72571429D01*
875 | X149452381Y-106333333D02*
876 | X149452381Y-106904762D01*
877 | X150452381Y-106619047D02*
878 | X149452381Y-106619047D01*
879 | X149452381Y-107095238D02*
880 | X150452381Y-107428571D01*
881 | X149452381Y-107761905D01*
882 | X150404762Y-108047619D02*
883 | X150452381Y-108190476D01*
884 | X150452381Y-108428572D01*
885 | X150404762Y-108523810D01*
886 | X150357143Y-108571429D01*
887 | X150261905Y-108619048D01*
888 | X150166667Y-108619048D01*
889 | X150071429Y-108571429D01*
890 | X150023810Y-108523810D01*
891 | X149976190Y-108428572D01*
892 | X149928571Y-108238095D01*
893 | X149880952Y-108142857D01*
894 | X149833333Y-108095238D01*
895 | X149738095Y-108047619D01*
896 | X149642857Y-108047619D01*
897 | X149547619Y-108095238D01*
898 | X149500000Y-108142857D01*
899 | X149452381Y-108238095D01*
900 | X149452381Y-108476191D01*
901 | X149500000Y-108619048D01*
902 | X149452381Y-108952381D02*
903 | X149452381Y-109571429D01*
904 | X149833333Y-109238095D01*
905 | X149833333Y-109380953D01*
906 | X149880952Y-109476191D01*
907 | X149928571Y-109523810D01*
908 | X150023810Y-109571429D01*
909 | X150261905Y-109571429D01*
910 | X150357143Y-109523810D01*
911 | X150404762Y-109476191D01*
912 | X150452381Y-109380953D01*
913 | X150452381Y-109095238D01*
914 | X150404762Y-109000000D01*
915 | X150357143Y-108952381D01*
916 | X149452381Y-83333333D02*
917 | X149452381Y-83904762D01*
918 | X150452381Y-83619047D02*
919 | X149452381Y-83619047D01*
920 | X149452381Y-84095238D02*
921 | X150452381Y-84428571D01*
922 | X149452381Y-84761905D01*
923 | X150404762Y-85047619D02*
924 | X150452381Y-85190476D01*
925 | X150452381Y-85428572D01*
926 | X150404762Y-85523810D01*
927 | X150357143Y-85571429D01*
928 | X150261905Y-85619048D01*
929 | X150166667Y-85619048D01*
930 | X150071429Y-85571429D01*
931 | X150023810Y-85523810D01*
932 | X149976190Y-85428572D01*
933 | X149928571Y-85238095D01*
934 | X149880952Y-85142857D01*
935 | X149833333Y-85095238D01*
936 | X149738095Y-85047619D01*
937 | X149642857Y-85047619D01*
938 | X149547619Y-85095238D01*
939 | X149500000Y-85142857D01*
940 | X149452381Y-85238095D01*
941 | X149452381Y-85476191D01*
942 | X149500000Y-85619048D01*
943 | X149785714Y-86476191D02*
944 | X150452381Y-86476191D01*
945 | X149404762Y-86238095D02*
946 | X150119048Y-86000000D01*
947 | X150119048Y-86619048D01*
948 | X149452381Y-60833333D02*
949 | X149452381Y-61404762D01*
950 | X150452381Y-61119047D02*
951 | X149452381Y-61119047D01*
952 | X149452381Y-61595238D02*
953 | X150452381Y-61928571D01*
954 | X149452381Y-62261905D01*
955 | X150404762Y-62547619D02*
956 | X150452381Y-62690476D01*
957 | X150452381Y-62928572D01*
958 | X150404762Y-63023810D01*
959 | X150357143Y-63071429D01*
960 | X150261905Y-63119048D01*
961 | X150166667Y-63119048D01*
962 | X150071429Y-63071429D01*
963 | X150023810Y-63023810D01*
964 | X149976190Y-62928572D01*
965 | X149928571Y-62738095D01*
966 | X149880952Y-62642857D01*
967 | X149833333Y-62595238D01*
968 | X149738095Y-62547619D01*
969 | X149642857Y-62547619D01*
970 | X149547619Y-62595238D01*
971 | X149500000Y-62642857D01*
972 | X149452381Y-62738095D01*
973 | X149452381Y-62976191D01*
974 | X149500000Y-63119048D01*
975 | X149452381Y-64023810D02*
976 | X149452381Y-63547619D01*
977 | X149928571Y-63500000D01*
978 | X149880952Y-63547619D01*
979 | X149833333Y-63642857D01*
980 | X149833333Y-63880953D01*
981 | X149880952Y-63976191D01*
982 | X149928571Y-64023810D01*
983 | X150023810Y-64071429D01*
984 | X150261905Y-64071429D01*
985 | X150357143Y-64023810D01*
986 | X150404762Y-63976191D01*
987 | X150452381Y-63880953D01*
988 | X150452381Y-63642857D01*
989 | X150404762Y-63547619D01*
990 | X150357143Y-63500000D01*
991 | M02*
992 |
--------------------------------------------------------------------------------
/KiCAD_PCB_Files/Gerber/Mosfet_PCB_V4/Mosfet_Board_Only_V4-Edge.Cuts.gbr:
--------------------------------------------------------------------------------
1 | G04 #@! TF.FileFunction,Profile,NP*
2 | %FSLAX46Y46*%
3 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
4 | G04 Created by KiCad (PCBNEW 4.0.4-stable) date 08/18/21 08:28:06*
5 | %MOMM*%
6 | %LPD*%
7 | G01*
8 | G04 APERTURE LIST*
9 | %ADD10C,0.100000*%
10 | %ADD11C,0.150000*%
11 | G04 APERTURE END LIST*
12 | D10*
13 | D11*
14 | X185000000Y-130000000D02*
15 | X185000000Y-53000000D01*
16 | X135000000Y-53000000D02*
17 | X135000000Y-130000000D01*
18 | X135000000Y-53000000D02*
19 | X185000000Y-53000000D01*
20 | X185000000Y-130000000D02*
21 | X135000000Y-130000000D01*
22 | M02*
23 |
--------------------------------------------------------------------------------
/KiCAD_PCB_Files/Gerber/Mosfet_PCB_V4/Mosfet_Board_Only_V4-F.Mask.gbr:
--------------------------------------------------------------------------------
1 | G04 #@! TF.FileFunction,Soldermask,Top*
2 | %FSLAX46Y46*%
3 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
4 | G04 Created by KiCad (PCBNEW 4.0.4-stable) date 08/18/21 08:28:06*
5 | %MOMM*%
6 | %LPD*%
7 | G01*
8 | G04 APERTURE LIST*
9 | %ADD10C,0.100000*%
10 | %ADD11R,5.000000X1.200000*%
11 | %ADD12R,9.800000X11.200000*%
12 | %ADD13C,3.600000*%
13 | %ADD14O,1.920000X2.920000*%
14 | %ADD15O,2.000000X2.900000*%
15 | %ADD16C,0.254000*%
16 | G04 APERTURE END LIST*
17 | D10*
18 | D11*
19 | X154225000Y-70190000D03*
20 | X154225000Y-71460000D03*
21 | X154225000Y-72730000D03*
22 | X154225000Y-75270000D03*
23 | X154225000Y-76540000D03*
24 | X154225000Y-77810000D03*
25 | D12*
26 | X163375000Y-74000000D03*
27 | D13*
28 | X182000000Y-127000000D03*
29 | X143000000Y-125000000D03*
30 | X138000000Y-56000000D03*
31 | D14*
32 | X153800000Y-55000000D03*
33 | X156340000Y-55000000D03*
34 | X164000000Y-55000000D03*
35 | X166540000Y-55000000D03*
36 | D11*
37 | X154225000Y-116190000D03*
38 | X154225000Y-117460000D03*
39 | X154225000Y-118730000D03*
40 | X154225000Y-121270000D03*
41 | X154225000Y-122540000D03*
42 | X154225000Y-123810000D03*
43 | D12*
44 | X163375000Y-120000000D03*
45 | D11*
46 | X154225000Y-104690000D03*
47 | X154225000Y-105960000D03*
48 | X154225000Y-107230000D03*
49 | X154225000Y-109770000D03*
50 | X154225000Y-111040000D03*
51 | X154225000Y-112310000D03*
52 | D12*
53 | X163375000Y-108500000D03*
54 | D11*
55 | X154225000Y-93190000D03*
56 | X154225000Y-94460000D03*
57 | X154225000Y-95730000D03*
58 | X154225000Y-98270000D03*
59 | X154225000Y-99540000D03*
60 | X154225000Y-100810000D03*
61 | D12*
62 | X163375000Y-97000000D03*
63 | D11*
64 | X154225000Y-81690000D03*
65 | X154225000Y-82960000D03*
66 | X154225000Y-84230000D03*
67 | X154225000Y-86770000D03*
68 | X154225000Y-88040000D03*
69 | X154225000Y-89310000D03*
70 | D12*
71 | X163375000Y-85500000D03*
72 | D11*
73 | X154225000Y-58690000D03*
74 | X154225000Y-59960000D03*
75 | X154225000Y-61230000D03*
76 | X154225000Y-63770000D03*
77 | X154225000Y-65040000D03*
78 | X154225000Y-66310000D03*
79 | D12*
80 | X163375000Y-62500000D03*
81 | D15*
82 | X153640000Y-128000000D03*
83 | X156180000Y-128000000D03*
84 | X158720000Y-128000000D03*
85 | X161260000Y-128000000D03*
86 | X163800000Y-128000000D03*
87 | X166340000Y-128000000D03*
88 | D13*
89 | X143000000Y-105000000D03*
90 | X143000000Y-65000000D03*
91 | X177000000Y-58000000D03*
92 | X177000000Y-78000000D03*
93 | X177000000Y-118000000D03*
94 | X143000000Y-85000000D03*
95 | X177000000Y-98000000D03*
96 | D16*
97 | G36*
98 | X150873000Y-129873000D02*
99 | X135127000Y-129873000D01*
100 | X135127000Y-59627000D01*
101 | X150873000Y-59627000D01*
102 | X150873000Y-129873000D01*
103 | X150873000Y-129873000D01*
104 | G37*
105 | X150873000Y-129873000D02*
106 | X135127000Y-129873000D01*
107 | X135127000Y-59627000D01*
108 | X150873000Y-59627000D01*
109 | X150873000Y-129873000D01*
110 | G36*
111 | X184873000Y-123373000D02*
112 | X169127000Y-123373000D01*
113 | X169127000Y-53127000D01*
114 | X184873000Y-53127000D01*
115 | X184873000Y-123373000D01*
116 | X184873000Y-123373000D01*
117 | G37*
118 | X184873000Y-123373000D02*
119 | X169127000Y-123373000D01*
120 | X169127000Y-53127000D01*
121 | X184873000Y-53127000D01*
122 | X184873000Y-123373000D01*
123 | M02*
124 |
--------------------------------------------------------------------------------
/KiCAD_PCB_Files/Gerber/Mosfet_PCB_V4/Mosfet_Board_Only_V4-F.SilkS.gbr:
--------------------------------------------------------------------------------
1 | G04 #@! TF.FileFunction,Legend,Top*
2 | %FSLAX46Y46*%
3 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
4 | G04 Created by KiCad (PCBNEW 4.0.4-stable) date 08/18/21 08:28:06*
5 | %MOMM*%
6 | %LPD*%
7 | G01*
8 | G04 APERTURE LIST*
9 | %ADD10C,0.100000*%
10 | %ADD11C,0.120000*%
11 | %ADD12C,0.150000*%
12 | G04 APERTURE END LIST*
13 | D10*
14 | D11*
15 | X158550000Y-68800000D02*
16 | X157050000Y-68800000D01*
17 | X157050000Y-68800000D02*
18 | X157050000Y-69490000D01*
19 | X157050000Y-69490000D02*
20 | X151925000Y-69490000D01*
21 | X158550000Y-79200000D02*
22 | X157050000Y-79200000D01*
23 | X157050000Y-79200000D02*
24 | X157050000Y-78510000D01*
25 | X157050000Y-78510000D02*
26 | X155950000Y-78510000D01*
27 | X157670000Y-56330000D02*
28 | X157670000Y-53670000D01*
29 | X155070000Y-56330000D02*
30 | X157670000Y-56330000D01*
31 | X155070000Y-53670000D02*
32 | X157670000Y-53670000D01*
33 | X155070000Y-56330000D02*
34 | X155070000Y-53670000D01*
35 | X153800000Y-56330000D02*
36 | X152470000Y-56330000D01*
37 | X152470000Y-56330000D02*
38 | X152470000Y-55000000D01*
39 | X167870000Y-56330000D02*
40 | X167870000Y-53670000D01*
41 | X165270000Y-56330000D02*
42 | X167870000Y-56330000D01*
43 | X165270000Y-53670000D02*
44 | X167870000Y-53670000D01*
45 | X165270000Y-56330000D02*
46 | X165270000Y-53670000D01*
47 | X164000000Y-56330000D02*
48 | X162670000Y-56330000D01*
49 | X162670000Y-56330000D02*
50 | X162670000Y-55000000D01*
51 | X158550000Y-114800000D02*
52 | X157050000Y-114800000D01*
53 | X157050000Y-114800000D02*
54 | X157050000Y-115490000D01*
55 | X157050000Y-115490000D02*
56 | X151925000Y-115490000D01*
57 | X158550000Y-125200000D02*
58 | X157050000Y-125200000D01*
59 | X157050000Y-125200000D02*
60 | X157050000Y-124510000D01*
61 | X157050000Y-124510000D02*
62 | X155950000Y-124510000D01*
63 | X158550000Y-103300000D02*
64 | X157050000Y-103300000D01*
65 | X157050000Y-103300000D02*
66 | X157050000Y-103990000D01*
67 | X157050000Y-103990000D02*
68 | X151925000Y-103990000D01*
69 | X158550000Y-113700000D02*
70 | X157050000Y-113700000D01*
71 | X157050000Y-113700000D02*
72 | X157050000Y-113010000D01*
73 | X157050000Y-113010000D02*
74 | X155950000Y-113010000D01*
75 | X158550000Y-91800000D02*
76 | X157050000Y-91800000D01*
77 | X157050000Y-91800000D02*
78 | X157050000Y-92490000D01*
79 | X157050000Y-92490000D02*
80 | X151925000Y-92490000D01*
81 | X158550000Y-102200000D02*
82 | X157050000Y-102200000D01*
83 | X157050000Y-102200000D02*
84 | X157050000Y-101510000D01*
85 | X157050000Y-101510000D02*
86 | X155950000Y-101510000D01*
87 | X158550000Y-80300000D02*
88 | X157050000Y-80300000D01*
89 | X157050000Y-80300000D02*
90 | X157050000Y-80990000D01*
91 | X157050000Y-80990000D02*
92 | X151925000Y-80990000D01*
93 | X158550000Y-90700000D02*
94 | X157050000Y-90700000D01*
95 | X157050000Y-90700000D02*
96 | X157050000Y-90010000D01*
97 | X157050000Y-90010000D02*
98 | X155950000Y-90010000D01*
99 | X158550000Y-57300000D02*
100 | X157050000Y-57300000D01*
101 | X157050000Y-57300000D02*
102 | X157050000Y-57990000D01*
103 | X157050000Y-57990000D02*
104 | X151925000Y-57990000D01*
105 | X158550000Y-67700000D02*
106 | X157050000Y-67700000D01*
107 | X157050000Y-67700000D02*
108 | X157050000Y-67010000D01*
109 | X157050000Y-67010000D02*
110 | X155950000Y-67010000D01*
111 | X167670000Y-129330000D02*
112 | X167670000Y-126670000D01*
113 | X154910000Y-129330000D02*
114 | X167670000Y-129330000D01*
115 | X154910000Y-126670000D02*
116 | X167670000Y-126670000D01*
117 | X154910000Y-129330000D02*
118 | X154910000Y-126670000D01*
119 | X153640000Y-129330000D02*
120 | X152310000Y-129330000D01*
121 | X152310000Y-129330000D02*
122 | X152310000Y-128000000D01*
123 | D12*
124 | X157252381Y-71161905D02*
125 | X157252381Y-70590476D01*
126 | X158252381Y-70876191D02*
127 | X157252381Y-70876191D01*
128 | X157252381Y-69780952D02*
129 | X157252381Y-70257143D01*
130 | X157728571Y-70304762D01*
131 | X157680952Y-70257143D01*
132 | X157633333Y-70161905D01*
133 | X157633333Y-69923809D01*
134 | X157680952Y-69828571D01*
135 | X157728571Y-69780952D01*
136 | X157823810Y-69733333D01*
137 | X158061905Y-69733333D01*
138 | X158157143Y-69780952D01*
139 | X158204762Y-69828571D01*
140 | X158252381Y-69923809D01*
141 | X158252381Y-70161905D01*
142 | X158204762Y-70257143D01*
143 | X158157143Y-70304762D01*
144 | X151922381Y-55738095D02*
145 | X150922381Y-55738095D01*
146 | X150922381Y-55357142D01*
147 | X150970000Y-55261904D01*
148 | X151017619Y-55214285D01*
149 | X151112857Y-55166666D01*
150 | X151255714Y-55166666D01*
151 | X151350952Y-55214285D01*
152 | X151398571Y-55261904D01*
153 | X151446190Y-55357142D01*
154 | X151446190Y-55738095D01*
155 | X150922381Y-54309523D02*
156 | X150922381Y-54500000D01*
157 | X150970000Y-54595238D01*
158 | X151017619Y-54642857D01*
159 | X151160476Y-54738095D01*
160 | X151350952Y-54785714D01*
161 | X151731905Y-54785714D01*
162 | X151827143Y-54738095D01*
163 | X151874762Y-54690476D01*
164 | X151922381Y-54595238D01*
165 | X151922381Y-54404761D01*
166 | X151874762Y-54309523D01*
167 | X151827143Y-54261904D01*
168 | X151731905Y-54214285D01*
169 | X151493810Y-54214285D01*
170 | X151398571Y-54261904D01*
171 | X151350952Y-54309523D01*
172 | X151303333Y-54404761D01*
173 | X151303333Y-54595238D01*
174 | X151350952Y-54690476D01*
175 | X151398571Y-54738095D01*
176 | X151493810Y-54785714D01*
177 | X162122381Y-55738095D02*
178 | X161122381Y-55738095D01*
179 | X161122381Y-55357142D01*
180 | X161170000Y-55261904D01*
181 | X161217619Y-55214285D01*
182 | X161312857Y-55166666D01*
183 | X161455714Y-55166666D01*
184 | X161550952Y-55214285D01*
185 | X161598571Y-55261904D01*
186 | X161646190Y-55357142D01*
187 | X161646190Y-55738095D01*
188 | X161122381Y-54833333D02*
189 | X161122381Y-54166666D01*
190 | X162122381Y-54595238D01*
191 | X157252381Y-117161905D02*
192 | X157252381Y-116590476D01*
193 | X158252381Y-116876191D02*
194 | X157252381Y-116876191D01*
195 | X158252381Y-115733333D02*
196 | X158252381Y-116304762D01*
197 | X158252381Y-116019048D02*
198 | X157252381Y-116019048D01*
199 | X157395238Y-116114286D01*
200 | X157490476Y-116209524D01*
201 | X157538095Y-116304762D01*
202 | X157252381Y-105761905D02*
203 | X157252381Y-105190476D01*
204 | X158252381Y-105476191D02*
205 | X157252381Y-105476191D01*
206 | X157347619Y-104904762D02*
207 | X157300000Y-104857143D01*
208 | X157252381Y-104761905D01*
209 | X157252381Y-104523809D01*
210 | X157300000Y-104428571D01*
211 | X157347619Y-104380952D01*
212 | X157442857Y-104333333D01*
213 | X157538095Y-104333333D01*
214 | X157680952Y-104380952D01*
215 | X158252381Y-104952381D01*
216 | X158252381Y-104333333D01*
217 | X157252381Y-94161905D02*
218 | X157252381Y-93590476D01*
219 | X158252381Y-93876191D02*
220 | X157252381Y-93876191D01*
221 | X157252381Y-93352381D02*
222 | X157252381Y-92733333D01*
223 | X157633333Y-93066667D01*
224 | X157633333Y-92923809D01*
225 | X157680952Y-92828571D01*
226 | X157728571Y-92780952D01*
227 | X157823810Y-92733333D01*
228 | X158061905Y-92733333D01*
229 | X158157143Y-92780952D01*
230 | X158204762Y-92828571D01*
231 | X158252381Y-92923809D01*
232 | X158252381Y-93209524D01*
233 | X158204762Y-93304762D01*
234 | X158157143Y-93352381D01*
235 | X157252381Y-82561905D02*
236 | X157252381Y-81990476D01*
237 | X158252381Y-82276191D02*
238 | X157252381Y-82276191D01*
239 | X157585714Y-81228571D02*
240 | X158252381Y-81228571D01*
241 | X157204762Y-81466667D02*
242 | X157919048Y-81704762D01*
243 | X157919048Y-81085714D01*
244 | X157052381Y-59561905D02*
245 | X157052381Y-58990476D01*
246 | X158052381Y-59276191D02*
247 | X157052381Y-59276191D01*
248 | X157052381Y-58228571D02*
249 | X157052381Y-58419048D01*
250 | X157100000Y-58514286D01*
251 | X157147619Y-58561905D01*
252 | X157290476Y-58657143D01*
253 | X157480952Y-58704762D01*
254 | X157861905Y-58704762D01*
255 | X157957143Y-58657143D01*
256 | X158004762Y-58609524D01*
257 | X158052381Y-58514286D01*
258 | X158052381Y-58323809D01*
259 | X158004762Y-58228571D01*
260 | X157957143Y-58180952D01*
261 | X157861905Y-58133333D01*
262 | X157623810Y-58133333D01*
263 | X157528571Y-58180952D01*
264 | X157480952Y-58228571D01*
265 | X157433333Y-58323809D01*
266 | X157433333Y-58514286D01*
267 | X157480952Y-58609524D01*
268 | X157528571Y-58657143D01*
269 | X157623810Y-58704762D01*
270 | X157166666Y-126452381D02*
271 | X157166666Y-125452381D01*
272 | X157500000Y-126166667D01*
273 | X157833333Y-125452381D01*
274 | X157833333Y-126452381D01*
275 | X158452380Y-126452381D02*
276 | X158357142Y-126404762D01*
277 | X158309523Y-126357143D01*
278 | X158261904Y-126261905D01*
279 | X158261904Y-125976190D01*
280 | X158309523Y-125880952D01*
281 | X158357142Y-125833333D01*
282 | X158452380Y-125785714D01*
283 | X158595238Y-125785714D01*
284 | X158690476Y-125833333D01*
285 | X158738095Y-125880952D01*
286 | X158785714Y-125976190D01*
287 | X158785714Y-126261905D01*
288 | X158738095Y-126357143D01*
289 | X158690476Y-126404762D01*
290 | X158595238Y-126452381D01*
291 | X158452380Y-126452381D01*
292 | X159166666Y-126404762D02*
293 | X159261904Y-126452381D01*
294 | X159452380Y-126452381D01*
295 | X159547619Y-126404762D01*
296 | X159595238Y-126309524D01*
297 | X159595238Y-126261905D01*
298 | X159547619Y-126166667D01*
299 | X159452380Y-126119048D01*
300 | X159309523Y-126119048D01*
301 | X159214285Y-126071429D01*
302 | X159166666Y-125976190D01*
303 | X159166666Y-125928571D01*
304 | X159214285Y-125833333D01*
305 | X159309523Y-125785714D01*
306 | X159452380Y-125785714D01*
307 | X159547619Y-125833333D01*
308 | X159880952Y-125785714D02*
309 | X160261904Y-125785714D01*
310 | X160023809Y-126452381D02*
311 | X160023809Y-125595238D01*
312 | X160071428Y-125500000D01*
313 | X160166666Y-125452381D01*
314 | X160261904Y-125452381D01*
315 | X160976191Y-126404762D02*
316 | X160880953Y-126452381D01*
317 | X160690476Y-126452381D01*
318 | X160595238Y-126404762D01*
319 | X160547619Y-126309524D01*
320 | X160547619Y-125928571D01*
321 | X160595238Y-125833333D01*
322 | X160690476Y-125785714D01*
323 | X160880953Y-125785714D01*
324 | X160976191Y-125833333D01*
325 | X161023810Y-125928571D01*
326 | X161023810Y-126023810D01*
327 | X160547619Y-126119048D01*
328 | X161309524Y-125785714D02*
329 | X161690476Y-125785714D01*
330 | X161452381Y-125452381D02*
331 | X161452381Y-126309524D01*
332 | X161500000Y-126404762D01*
333 | X161595238Y-126452381D01*
334 | X161690476Y-126452381D01*
335 | X161785715Y-126547619D02*
336 | X162547620Y-126547619D01*
337 | X163357144Y-126357143D02*
338 | X163309525Y-126404762D01*
339 | X163166668Y-126452381D01*
340 | X163071430Y-126452381D01*
341 | X162928572Y-126404762D01*
342 | X162833334Y-126309524D01*
343 | X162785715Y-126214286D01*
344 | X162738096Y-126023810D01*
345 | X162738096Y-125880952D01*
346 | X162785715Y-125690476D01*
347 | X162833334Y-125595238D01*
348 | X162928572Y-125500000D01*
349 | X163071430Y-125452381D01*
350 | X163166668Y-125452381D01*
351 | X163309525Y-125500000D01*
352 | X163357144Y-125547619D01*
353 | X163642858Y-125452381D02*
354 | X164214287Y-125452381D01*
355 | X163928572Y-126452381D02*
356 | X163928572Y-125452381D01*
357 | X165119049Y-126452381D02*
358 | X164785715Y-125976190D01*
359 | X164547620Y-126452381D02*
360 | X164547620Y-125452381D01*
361 | X164928573Y-125452381D01*
362 | X165023811Y-125500000D01*
363 | X165071430Y-125547619D01*
364 | X165119049Y-125642857D01*
365 | X165119049Y-125785714D01*
366 | X165071430Y-125880952D01*
367 | X165023811Y-125928571D01*
368 | X164928573Y-125976190D01*
369 | X164547620Y-125976190D01*
370 | X166023811Y-126452381D02*
371 | X165547620Y-126452381D01*
372 | X165547620Y-125452381D01*
373 | X166309525Y-125547619D02*
374 | X166357144Y-125500000D01*
375 | X166452382Y-125452381D01*
376 | X166690478Y-125452381D01*
377 | X166785716Y-125500000D01*
378 | X166833335Y-125547619D01*
379 | X166880954Y-125642857D01*
380 | X166880954Y-125738095D01*
381 | X166833335Y-125880952D01*
382 | X166261906Y-126452381D01*
383 | X166880954Y-126452381D01*
384 | M02*
385 |
--------------------------------------------------------------------------------
/KiCAD_PCB_Files/Gerber/Mosfet_PCB_V4/Mosfet_Board_Only_V4.drl:
--------------------------------------------------------------------------------
1 | M48
2 | ;DRILL file {KiCad 4.0.4-stable} date 08/18/21 08:28:09
3 | ;FORMAT={3:3/ absolute / metric / suppress trailing zeros}
4 | FMAT,2
5 | METRIC,LZ
6 | T1C0.400
7 | T2C1.000
8 | T3C3.200
9 | %
10 | G90
11 | G05
12 | M71
13 | T1
14 | X144Y-069
15 | X144Y-07
16 | X144Y-071
17 | X144Y-072
18 | X144Y-073
19 | X144Y-074
20 | X144Y-075
21 | X144Y-076
22 | X144Y-077
23 | X144Y-078
24 | X144Y-079
25 | X144Y-08
26 | X144Y-081
27 | X144Y-089
28 | X144Y-09
29 | X144Y-091
30 | X144Y-092
31 | X144Y-093
32 | X144Y-094
33 | X144Y-095
34 | X144Y-096
35 | X144Y-097
36 | X144Y-098
37 | X144Y-099
38 | X144Y-1
39 | X144Y-101
40 | X144Y-109
41 | X144Y-11
42 | X144Y-111
43 | X144Y-112
44 | X144Y-113
45 | X144Y-114
46 | X144Y-115
47 | X144Y-116
48 | X144Y-117
49 | X144Y-118
50 | X144Y-119
51 | X144Y-12
52 | X144Y-121
53 | X145Y-069
54 | X145Y-07
55 | X145Y-071
56 | X145Y-072
57 | X145Y-073
58 | X145Y-074
59 | X145Y-075
60 | X145Y-076
61 | X145Y-077
62 | X145Y-078
63 | X145Y-079
64 | X145Y-08
65 | X145Y-081
66 | X145Y-089
67 | X145Y-09
68 | X145Y-091
69 | X145Y-092
70 | X145Y-093
71 | X145Y-094
72 | X145Y-095
73 | X145Y-096
74 | X145Y-097
75 | X145Y-098
76 | X145Y-099
77 | X145Y-1
78 | X145Y-101
79 | X145Y-109
80 | X145Y-11
81 | X145Y-111
82 | X145Y-112
83 | X145Y-113
84 | X145Y-114
85 | X145Y-115
86 | X145Y-116
87 | X145Y-117
88 | X145Y-118
89 | X145Y-119
90 | X145Y-12
91 | X145Y-121
92 | X146Y-069
93 | X146Y-07
94 | X146Y-071
95 | X146Y-072
96 | X146Y-073
97 | X146Y-074
98 | X146Y-075
99 | X146Y-076
100 | X146Y-077
101 | X146Y-078
102 | X146Y-079
103 | X146Y-08
104 | X146Y-081
105 | X146Y-089
106 | X146Y-09
107 | X146Y-091
108 | X146Y-092
109 | X146Y-093
110 | X146Y-094
111 | X146Y-095
112 | X146Y-096
113 | X146Y-097
114 | X146Y-098
115 | X146Y-099
116 | X146Y-1
117 | X146Y-101
118 | X146Y-109
119 | X146Y-11
120 | X146Y-111
121 | X146Y-112
122 | X146Y-113
123 | X146Y-114
124 | X146Y-115
125 | X146Y-116
126 | X146Y-117
127 | X146Y-118
128 | X146Y-119
129 | X146Y-12
130 | X146Y-121
131 | X147Y-069
132 | X147Y-07
133 | X147Y-071
134 | X147Y-072
135 | X147Y-073
136 | X147Y-074
137 | X147Y-075
138 | X147Y-076
139 | X147Y-077
140 | X147Y-078
141 | X147Y-079
142 | X147Y-08
143 | X147Y-081
144 | X147Y-089
145 | X147Y-09
146 | X147Y-091
147 | X147Y-092
148 | X147Y-093
149 | X147Y-094
150 | X147Y-095
151 | X147Y-096
152 | X147Y-097
153 | X147Y-098
154 | X147Y-099
155 | X147Y-1
156 | X147Y-101
157 | X147Y-109
158 | X147Y-11
159 | X147Y-111
160 | X147Y-112
161 | X147Y-113
162 | X147Y-114
163 | X147Y-115
164 | X147Y-116
165 | X147Y-117
166 | X147Y-118
167 | X147Y-119
168 | X147Y-12
169 | X147Y-121
170 | X148Y-069
171 | X148Y-07
172 | X148Y-071
173 | X148Y-072
174 | X148Y-073
175 | X148Y-074
176 | X148Y-075
177 | X148Y-076
178 | X148Y-077
179 | X148Y-078
180 | X148Y-079
181 | X148Y-08
182 | X148Y-081
183 | X148Y-089
184 | X148Y-09
185 | X148Y-091
186 | X148Y-092
187 | X148Y-093
188 | X148Y-094
189 | X148Y-095
190 | X148Y-096
191 | X148Y-097
192 | X148Y-098
193 | X148Y-099
194 | X148Y-1
195 | X148Y-101
196 | X148Y-109
197 | X148Y-11
198 | X148Y-111
199 | X148Y-112
200 | X148Y-113
201 | X148Y-114
202 | X148Y-115
203 | X148Y-116
204 | X148Y-117
205 | X148Y-118
206 | X148Y-119
207 | X148Y-12
208 | X148Y-121
209 | X154Y-092
210 | X154Y-115
211 | X1544Y-0689
212 | X1544Y-0798
213 | X1548Y-1031
214 | X1551Y-0573
215 | X172Y-062
216 | X172Y-063
217 | X172Y-064
218 | X172Y-065
219 | X172Y-066
220 | X172Y-067
221 | X172Y-068
222 | X172Y-069
223 | X172Y-07
224 | X172Y-071
225 | X172Y-072
226 | X172Y-073
227 | X172Y-074
228 | X172Y-082
229 | X172Y-083
230 | X172Y-084
231 | X172Y-085
232 | X172Y-086
233 | X172Y-087
234 | X172Y-088
235 | X172Y-089
236 | X172Y-09
237 | X172Y-091
238 | X172Y-092
239 | X172Y-093
240 | X172Y-094
241 | X172Y-102
242 | X172Y-103
243 | X172Y-104
244 | X172Y-105
245 | X172Y-106
246 | X172Y-107
247 | X172Y-108
248 | X172Y-109
249 | X172Y-11
250 | X172Y-111
251 | X172Y-112
252 | X172Y-113
253 | X172Y-114
254 | X173Y-062
255 | X173Y-063
256 | X173Y-064
257 | X173Y-065
258 | X173Y-066
259 | X173Y-067
260 | X173Y-068
261 | X173Y-069
262 | X173Y-07
263 | X173Y-071
264 | X173Y-072
265 | X173Y-073
266 | X173Y-074
267 | X173Y-082
268 | X173Y-083
269 | X173Y-084
270 | X173Y-085
271 | X173Y-086
272 | X173Y-087
273 | X173Y-088
274 | X173Y-089
275 | X173Y-09
276 | X173Y-091
277 | X173Y-092
278 | X173Y-093
279 | X173Y-094
280 | X173Y-102
281 | X173Y-103
282 | X173Y-104
283 | X173Y-105
284 | X173Y-106
285 | X173Y-107
286 | X173Y-108
287 | X173Y-109
288 | X173Y-11
289 | X173Y-111
290 | X173Y-112
291 | X173Y-113
292 | X173Y-114
293 | X174Y-062
294 | X174Y-063
295 | X174Y-064
296 | X174Y-065
297 | X174Y-066
298 | X174Y-067
299 | X174Y-068
300 | X174Y-069
301 | X174Y-07
302 | X174Y-071
303 | X174Y-072
304 | X174Y-073
305 | X174Y-074
306 | X174Y-082
307 | X174Y-083
308 | X174Y-084
309 | X174Y-085
310 | X174Y-086
311 | X174Y-087
312 | X174Y-088
313 | X174Y-089
314 | X174Y-09
315 | X174Y-091
316 | X174Y-092
317 | X174Y-093
318 | X174Y-094
319 | X174Y-102
320 | X174Y-103
321 | X174Y-104
322 | X174Y-105
323 | X174Y-106
324 | X174Y-107
325 | X174Y-108
326 | X174Y-109
327 | X174Y-11
328 | X174Y-111
329 | X174Y-112
330 | X174Y-113
331 | X174Y-114
332 | X175Y-062
333 | X175Y-063
334 | X175Y-064
335 | X175Y-065
336 | X175Y-066
337 | X175Y-067
338 | X175Y-068
339 | X175Y-069
340 | X175Y-07
341 | X175Y-071
342 | X175Y-072
343 | X175Y-073
344 | X175Y-074
345 | X175Y-082
346 | X175Y-083
347 | X175Y-084
348 | X175Y-085
349 | X175Y-086
350 | X175Y-087
351 | X175Y-088
352 | X175Y-089
353 | X175Y-09
354 | X175Y-091
355 | X175Y-092
356 | X175Y-093
357 | X175Y-094
358 | X175Y-102
359 | X175Y-103
360 | X175Y-104
361 | X175Y-105
362 | X175Y-106
363 | X175Y-107
364 | X175Y-108
365 | X175Y-109
366 | X175Y-11
367 | X175Y-111
368 | X175Y-112
369 | X175Y-113
370 | X175Y-114
371 | X176Y-062
372 | X176Y-063
373 | X176Y-064
374 | X176Y-065
375 | X176Y-066
376 | X176Y-067
377 | X176Y-068
378 | X176Y-069
379 | X176Y-07
380 | X176Y-071
381 | X176Y-072
382 | X176Y-073
383 | X176Y-074
384 | X176Y-082
385 | X176Y-083
386 | X176Y-084
387 | X176Y-085
388 | X176Y-086
389 | X176Y-087
390 | X176Y-088
391 | X176Y-089
392 | X176Y-09
393 | X176Y-091
394 | X176Y-092
395 | X176Y-093
396 | X176Y-094
397 | X176Y-102
398 | X176Y-103
399 | X176Y-104
400 | X176Y-105
401 | X176Y-106
402 | X176Y-107
403 | X176Y-108
404 | X176Y-109
405 | X176Y-11
406 | X176Y-111
407 | X176Y-112
408 | X176Y-113
409 | X176Y-114
410 | T2
411 | X15364Y-128
412 | X1538Y-055
413 | X15618Y-128
414 | X15634Y-055
415 | X15872Y-128
416 | X16126Y-128
417 | X1638Y-128
418 | X164Y-055
419 | X16634Y-128
420 | X16654Y-055
421 | T3
422 | X138Y-056
423 | X143Y-065
424 | X143Y-085
425 | X143Y-105
426 | X143Y-125
427 | X177Y-058
428 | X177Y-078
429 | X177Y-098
430 | X177Y-118
431 | X182Y-127
432 | T0
433 | M30
434 |
--------------------------------------------------------------------------------
/KiCAD_PCB_Files/Gerber/Mosfet_PCB_V4/Readme.md:
--------------------------------------------------------------------------------
1 | These are the Gerber files for the Mosfet PCB V4. Please order it with 4oz copper layer at the pcb manufacturer because it needs to take a lot of current.
2 |
--------------------------------------------------------------------------------
/KiCAD_PCB_Files/KiCAD_Project/Arduino_Spot_Welder-cache.lib:
--------------------------------------------------------------------------------
1 | EESchema-LIBRARY Version 2.3
2 | #encoding utf-8
3 | #
4 | # +12V
5 | #
6 | DEF +12V #PWR 0 0 Y Y 1 F P
7 | F0 "#PWR" 0 -150 50 H I C CNN
8 | F1 "+12V" 0 140 50 H V C CNN
9 | F2 "" 0 0 50 H V C CNN
10 | F3 "" 0 0 50 H V C CNN
11 | DRAW
12 | P 2 0 1 0 -30 50 0 100 N
13 | P 2 0 1 0 0 0 0 100 N
14 | P 2 0 1 0 0 100 30 50 N
15 | X +12V 1 0 0 0 U 50 50 1 1 W N
16 | ENDDRAW
17 | ENDDEF
18 | #
19 | # +5V
20 | #
21 | DEF +5V #PWR 0 0 Y Y 1 F P
22 | F0 "#PWR" 0 -150 50 H I C CNN
23 | F1 "+5V" 0 140 50 H V C CNN
24 | F2 "" 0 0 50 H V C CNN
25 | F3 "" 0 0 50 H V C CNN
26 | DRAW
27 | P 2 0 1 0 -30 50 0 100 N
28 | P 2 0 1 0 0 0 0 100 N
29 | P 2 0 1 0 0 100 30 50 N
30 | X +5V 1 0 0 0 U 50 50 1 1 W N
31 | ENDDRAW
32 | ENDDEF
33 | #
34 | # ALPS-STEC12E08
35 | #
36 | DEF ALPS-STEC12E08 ENC 0 40 Y Y 1 F N
37 | F0 "ENC" 0 375 60 H V C CNN
38 | F1 "ALPS-STEC12E08" 0 500 60 H V C CNN
39 | F2 "" 0 0 60 H V C CNN
40 | F3 "" 0 0 60 H V C CNN
41 | ALIAS BI_EN11-HSM1AF15 BI_EN12-HS22AF30
42 | DRAW
43 | C -125 -50 25 0 1 0 N
44 | C -125 50 25 0 1 0 N
45 | C 50 -175 25 0 1 0 N
46 | C 50 -75 25 0 1 0 N
47 | C 50 75 25 0 1 0 N
48 | C 50 175 25 0 1 0 N
49 | C 200 650 0 0 1 0 N
50 | S -300 -300 300 300 0 1 0 N
51 | P 2 0 1 0 -125 -50 -200 25 N
52 | P 2 0 1 0 50 -175 -25 -100 N
53 | P 2 0 1 0 50 0 50 -50 N
54 | P 2 0 1 0 50 0 300 0 N
55 | P 2 0 1 0 50 50 50 0 N
56 | P 2 0 1 0 50 75 -25 150 N
57 | P 2 0 1 0 125 -125 125 -150 N
58 | P 2 0 1 0 125 -75 125 -100 N
59 | P 2 0 1 0 125 -25 125 -50 N
60 | P 2 0 1 0 125 50 125 25 N
61 | P 2 0 1 0 125 100 125 75 N
62 | P 3 0 1 0 -300 -150 -125 -150 -125 -75 N
63 | P 3 0 1 0 -300 150 -125 150 -125 75 N
64 | P 3 0 1 0 50 -200 50 -250 300 -250 N
65 | P 3 0 1 0 50 200 50 250 300 250 N
66 | P 7 0 1 0 125 -175 150 -175 150 -125 200 -125 200 -175 250 -175 250 -125 N
67 | P 7 0 1 0 125 125 125 175 175 175 175 125 225 125 225 175 250 175 N
68 | X A A 550 250 250 L 50 50 1 1 P
69 | X B B 550 -250 250 L 50 50 1 1 P
70 | X C C 550 0 250 L 50 50 1 1 P
71 | X PB SW1 -550 150 250 R 50 50 1 1 P
72 | X PB SW2 -550 -150 250 R 50 50 1 1 P
73 | ENDDRAW
74 | ENDDEF
75 | #
76 | # BC850
77 | #
78 | DEF BC850 Q 0 0 Y Y 1 F N
79 | F0 "Q" 200 75 50 H V L CNN
80 | F1 "BC850" 200 0 50 H V L CNN
81 | F2 "SOT-23" 200 -75 50 H V L CIN
82 | F3 "" 0 0 50 H V L CNN
83 | ALIAS BC849
84 | $FPLIST
85 | SOT-23*
86 | $ENDFPLIST
87 | DRAW
88 | C 50 0 111 0 1 10 N
89 | P 2 0 1 0 0 0 25 0 N
90 | P 2 0 1 0 100 100 25 25 N
91 | P 3 0 1 0 25 -25 100 -100 100 -100 N
92 | P 3 0 1 20 25 75 25 -75 25 -75 N
93 | P 5 0 1 0 50 -70 70 -50 90 -90 50 -70 50 -70 F
94 | X B 1 -200 0 200 R 50 50 1 1 I
95 | X E 2 100 -200 100 U 50 50 1 1 P
96 | X C 3 100 200 100 D 50 50 1 1 P
97 | ENDDRAW
98 | ENDDEF
99 | #
100 | # C
101 | #
102 | DEF C C 0 10 N Y 1 F N
103 | F0 "C" 25 100 50 H V L CNN
104 | F1 "C" 25 -100 50 H V L CNN
105 | F2 "" 38 -150 50 H V C CNN
106 | F3 "" 0 0 50 H V C CNN
107 | $FPLIST
108 | C?
109 | C_????_*
110 | C_????
111 | SMD*_c
112 | Capacitor*
113 | $ENDFPLIST
114 | DRAW
115 | P 2 0 1 20 -80 -30 80 -30 N
116 | P 2 0 1 20 -80 30 80 30 N
117 | X ~ 1 0 150 110 D 40 40 1 1 P
118 | X ~ 2 0 -150 110 U 40 40 1 1 P
119 | ENDDRAW
120 | ENDDEF
121 | #
122 | # CONN_01X02
123 | #
124 | DEF CONN_01X02 P 0 40 Y N 1 F N
125 | F0 "P" 0 150 50 H V C CNN
126 | F1 "CONN_01X02" 100 0 50 V V C CNN
127 | F2 "" 0 0 50 H V C CNN
128 | F3 "" 0 0 50 H V C CNN
129 | $FPLIST
130 | Pin_Header_Straight_1X02
131 | Pin_Header_Angled_1X02
132 | Socket_Strip_Straight_1X02
133 | Socket_Strip_Angled_1X02
134 | $ENDFPLIST
135 | DRAW
136 | S -50 -45 10 -55 0 1 0 N
137 | S -50 55 10 45 0 1 0 N
138 | S -50 100 50 -100 0 1 0 N
139 | X P1 1 -200 50 150 R 50 50 1 1 P
140 | X P2 2 -200 -50 150 R 50 50 1 1 P
141 | ENDDRAW
142 | ENDDEF
143 | #
144 | # CONN_01X04
145 | #
146 | DEF CONN_01X04 P 0 40 Y N 1 F N
147 | F0 "P" 0 250 50 H V C CNN
148 | F1 "CONN_01X04" 100 0 50 V V C CNN
149 | F2 "" 0 0 50 H V C CNN
150 | F3 "" 0 0 50 H V C CNN
151 | $FPLIST
152 | Pin_Header_Straight_1X04
153 | Pin_Header_Angled_1X04
154 | Socket_Strip_Straight_1X04
155 | Socket_Strip_Angled_1X04
156 | $ENDFPLIST
157 | DRAW
158 | S -50 -145 10 -155 0 1 0 N
159 | S -50 -45 10 -55 0 1 0 N
160 | S -50 55 10 45 0 1 0 N
161 | S -50 155 10 145 0 1 0 N
162 | S -50 200 50 -200 0 1 0 N
163 | X P1 1 -200 150 150 R 50 50 1 1 P
164 | X P2 2 -200 50 150 R 50 50 1 1 P
165 | X P3 3 -200 -50 150 R 50 50 1 1 P
166 | X P4 4 -200 -150 150 R 50 50 1 1 P
167 | ENDDRAW
168 | ENDDEF
169 | #
170 | # CONN_01X06
171 | #
172 | DEF CONN_01X06 P 0 40 Y N 1 F N
173 | F0 "P" 0 350 50 H V C CNN
174 | F1 "CONN_01X06" 100 0 50 V V C CNN
175 | F2 "" 0 0 50 H V C CNN
176 | F3 "" 0 0 50 H V C CNN
177 | $FPLIST
178 | Pin_Header_Straight_1X06
179 | Pin_Header_Angled_1X06
180 | Socket_Strip_Straight_1X06
181 | Socket_Strip_Angled_1X06
182 | $ENDFPLIST
183 | DRAW
184 | S -50 -245 10 -255 0 1 0 N
185 | S -50 -145 10 -155 0 1 0 N
186 | S -50 -45 10 -55 0 1 0 N
187 | S -50 55 10 45 0 1 0 N
188 | S -50 155 10 145 0 1 0 N
189 | S -50 255 10 245 0 1 0 N
190 | S -50 300 50 -300 0 1 0 N
191 | X P1 1 -200 250 150 R 50 50 1 1 P
192 | X P2 2 -200 150 150 R 50 50 1 1 P
193 | X P3 3 -200 50 150 R 50 50 1 1 P
194 | X P4 4 -200 -50 150 R 50 50 1 1 P
195 | X P5 5 -200 -150 150 R 50 50 1 1 P
196 | X P6 6 -200 -250 150 R 50 50 1 1 P
197 | ENDDRAW
198 | ENDDEF
199 | #
200 | # CP
201 | #
202 | DEF CP C 0 10 N Y 1 F N
203 | F0 "C" 25 100 50 H V L CNN
204 | F1 "CP" 25 -100 50 H V L CNN
205 | F2 "" 38 -150 50 H V C CNN
206 | F3 "" 0 0 50 H V C CNN
207 | $FPLIST
208 | CP*
209 | C_Axial*
210 | C_Radial*
211 | TantalC*
212 | C*elec
213 | c_elec*
214 | SMD*_Pol
215 | $ENDFPLIST
216 | DRAW
217 | S -90 20 -90 40 0 1 0 N
218 | S -90 20 90 20 0 1 0 N
219 | S 90 -20 -90 -40 0 1 0 F
220 | S 90 40 -90 40 0 1 0 N
221 | S 90 40 90 20 0 1 0 N
222 | P 2 0 1 0 -70 90 -30 90 N
223 | P 2 0 1 0 -50 110 -50 70 N
224 | X ~ 1 0 150 110 D 40 40 1 1 P
225 | X ~ 2 0 -150 110 U 40 40 1 1 P
226 | ENDDRAW
227 | ENDDEF
228 | #
229 | # D
230 | #
231 | DEF D D 0 40 N N 1 F N
232 | F0 "D" 0 100 50 H V C CNN
233 | F1 "D" 0 -100 50 H V C CNN
234 | F2 "" 0 0 50 H V C CNN
235 | F3 "" 0 0 50 H V C CNN
236 | $FPLIST
237 | Diode_*
238 | D-Pak_TO252AA
239 | *SingleDiode
240 | *_Diode_*
241 | *SingleDiode*
242 | $ENDFPLIST
243 | DRAW
244 | P 2 0 1 6 -50 50 -50 -50 N
245 | P 3 0 1 0 50 50 -50 0 50 -50 F
246 | X K 1 -150 0 100 R 50 50 1 1 P
247 | X A 2 150 0 100 L 50 50 1 1 P
248 | ENDDRAW
249 | ENDDEF
250 | #
251 | # DIL8
252 | #
253 | DEF DIL8 P 0 40 Y N 1 F N
254 | F0 "P" 0 250 50 H V C CNN
255 | F1 "DIL8" 0 0 50 V V C CNN
256 | F2 "" 0 0 50 H V C CNN
257 | F3 "" 0 0 50 H V C CNN
258 | DRAW
259 | S -50 200 50 -200 0 1 0 N
260 | X P1 1 -350 150 300 R 50 50 1 1 P I
261 | X P2 2 -350 50 300 R 50 50 1 1 P I
262 | X P3 3 -350 -50 300 R 50 50 1 1 P I
263 | X P4 4 -350 -150 300 R 50 50 1 1 P I
264 | X P5 5 350 -150 300 L 50 50 1 1 P I
265 | X P6 6 350 -50 300 L 50 50 1 1 P I
266 | X P7 7 350 50 300 L 50 50 1 1 P I
267 | X P8 8 350 150 300 L 50 50 1 1 P I
268 | ENDDRAW
269 | ENDDEF
270 | #
271 | # D_Schottky_x2_Serial_AKC
272 | #
273 | DEF D_Schottky_x2_Serial_AKC D 0 30 Y N 1 F N
274 | F0 "D" 50 -100 50 H V C CNN
275 | F1 "D_Schottky_x2_Serial_AKC" 0 100 50 H V C CNN
276 | F2 "" 0 0 50 H V C CNN
277 | F3 "" 0 0 50 H V C CNN
278 | DRAW
279 | P 2 0 1 0 0 0 0 -100 N
280 | P 2 0 1 0 250 0 300 0 N
281 | P 3 0 1 10 -50 -50 -50 50 -50 50 N
282 | P 3 0 1 10 -50 0 50 0 50 0 N
283 | P 3 0 1 10 150 50 150 -50 150 -50 N
284 | P 4 0 1 10 -50 -50 -30 -50 -30 -40 -30 -40 N
285 | P 4 0 1 10 150 -50 170 -50 170 -40 170 -40 N
286 | P 4 0 1 10 150 50 130 50 130 40 130 40 N
287 | P 5 0 1 10 -70 40 -70 50 -50 50 -50 50 -50 50 N
288 | P 6 0 1 10 -150 50 -50 0 -150 -50 -150 50 -150 50 -150 50 N
289 | P 6 0 1 10 50 50 150 0 50 -50 50 50 50 50 50 50 N
290 | X A 1 -300 0 150 R 50 50 0 1 P
291 | X K 2 300 0 150 L 50 50 0 1 P
292 | X common 3 0 -200 100 U 50 50 0 1 P
293 | ENDDRAW
294 | ENDDEF
295 | #
296 | # FDB0105N407L
297 | #
298 | DEF FDB0105N407L T 0 40 Y Y 1 F N
299 | F0 "T" -300 300 60 H V C CNN
300 | F1 "FDB0105N407L" 0 -175 60 H V C CNN
301 | F2 "" 25 50 60 H I C CNN
302 | F3 "" 25 50 60 H I C CNN
303 | DRAW
304 | S 375 350 -375 -100 0 1 0 N
305 | X Gate 1 -575 175 200 R 50 50 1 1 I
306 | X Source 2 575 275 200 L 50 50 1 1 I
307 | X Source 3 575 200 200 L 50 50 1 1 I
308 | X Drain 4 -575 25 200 R 50 50 1 1 I
309 | X Source 5 575 125 200 L 50 50 1 1 I
310 | X Source 6 575 50 200 L 50 50 1 1 I
311 | X Source 7 575 -25 200 L 50 50 1 1 I
312 | ENDDRAW
313 | ENDDEF
314 | #
315 | # GND
316 | #
317 | DEF GND #PWR 0 0 Y Y 1 F P
318 | F0 "#PWR" 0 -250 50 H I C CNN
319 | F1 "GND" 0 -150 50 H V C CNN
320 | F2 "" 0 0 50 H V C CNN
321 | F3 "" 0 0 50 H V C CNN
322 | DRAW
323 | P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N
324 | X GND 1 0 0 0 D 50 50 1 1 W N
325 | ENDDRAW
326 | ENDDEF
327 | #
328 | # R
329 | #
330 | DEF R R 0 0 N Y 1 F N
331 | F0 "R" 80 0 50 V V C CNN
332 | F1 "R" 0 0 50 V V C CNN
333 | F2 "" -70 0 50 V V C CNN
334 | F3 "" 0 0 50 H V C CNN
335 | $FPLIST
336 | R_*
337 | Resistor_*
338 | $ENDFPLIST
339 | DRAW
340 | S -40 -100 40 100 0 1 10 N
341 | X ~ 1 0 150 50 D 50 50 1 1 P
342 | X ~ 2 0 -150 50 U 50 50 1 1 P
343 | ENDDRAW
344 | ENDDEF
345 | #
346 | # SPEAKER
347 | #
348 | DEF SPEAKER SP 0 0 N Y 1 F N
349 | F0 "SP" -100 250 50 H V C CNN
350 | F1 "SPEAKER" -100 -250 50 H V C CNN
351 | F2 "" 0 0 50 H V C CNN
352 | F3 "" 0 0 50 H V C CNN
353 | DRAW
354 | P 4 0 0 0 100 150 250 300 250 -300 100 -150 N
355 | P 5 0 0 0 -100 150 100 150 100 -150 -100 -150 -100 150 F
356 | X 1 1 -300 100 200 R 40 40 1 1 I
357 | X 2 2 -300 -100 200 R 40 40 1 1 I
358 | ENDDRAW
359 | ENDDEF
360 | #
361 | # VCC
362 | #
363 | DEF VCC #PWR 0 0 Y Y 1 F P
364 | F0 "#PWR" 0 -150 50 H I C CNN
365 | F1 "VCC" 0 150 50 H V C CNN
366 | F2 "" 0 0 50 H V C CNN
367 | F3 "" 0 0 50 H V C CNN
368 | DRAW
369 | C 0 75 25 0 1 0 N
370 | P 2 0 1 0 0 0 0 50 N
371 | X VCC 1 0 0 0 U 50 50 1 1 W N
372 | ENDDRAW
373 | ENDDEF
374 | #
375 | # ZENER
376 | #
377 | DEF ZENER D 0 40 N N 1 F N
378 | F0 "D" 0 100 50 H V C CNN
379 | F1 "ZENER" 0 -100 50 H V C CNN
380 | F2 "" 0 0 50 H V C CNN
381 | F3 "" 0 0 50 H V C CNN
382 | $FPLIST
383 | D?
384 | SO*
385 | SM*
386 | $ENDFPLIST
387 | DRAW
388 | P 5 0 1 8 -70 50 -50 30 -50 -30 -30 -50 -30 -50 N
389 | P 5 0 1 0 -50 0 50 50 50 -50 -50 0 -50 0 F
390 | X K 1 -200 0 150 R 50 50 1 1 P
391 | X A 2 200 0 150 L 50 50 1 1 P
392 | ENDDRAW
393 | ENDDEF
394 | #
395 | # arduino_mini
396 | #
397 | DEF arduino_mini U 0 40 Y Y 1 F N
398 | F0 "U" 500 -950 70 H V C CNN
399 | F1 "arduino_mini" 750 -1050 70 H V C CNN
400 | F2 "DIL20" 0 -50 60 H V C CNN
401 | F3 "" 0 0 60 H I C CNN
402 | DRAW
403 | X GND 14 0 -1550 200 U 60 60 0 0 W
404 | X Vin 15 -150 1150 200 D 60 60 0 0 W
405 | S -400 950 400 -1350 0 1 0 N
406 | X (led)(SCK)D13 1 700 650 300 L 60 60 1 1 I
407 | X 3V3 2 150 1150 200 D 60 60 1 1 w
408 | X Aref 3 -700 400 300 R 60 60 1 1 I
409 | X A0 4 -700 200 300 R 60 60 1 1 B
410 | X A1 5 -700 100 300 R 60 60 1 1 B
411 | X A2 6 -700 0 300 R 60 60 1 1 B
412 | X A3 7 -700 -100 300 R 60 60 1 1 B
413 | X A4(SDA) 8 -700 -200 300 R 60 60 1 1 B
414 | X A5(SCL) 9 -700 -300 300 R 60 60 1 1 B
415 | X A6 10 -700 -400 300 R 60 60 1 1 B
416 | X (int2)D2 20 700 -600 300 L 60 60 1 1 B
417 | X (MISO)D12 30 700 550 300 L 60 60 1 1 B
418 | X A7 11 -700 -500 300 R 60 60 1 1 B
419 | X (int3)#D3 21 700 -500 300 L 60 60 1 1 B
420 | X 5V 12 0 1150 200 D 60 60 1 1 w
421 | X D4 22 700 -400 300 L 60 60 1 1 B
422 | X RST 13 -700 -1300 300 R 60 60 1 1 I L
423 | X #D5 23 700 -300 300 L 60 60 1 1 B
424 | X #D6 24 700 -50 300 L 60 60 1 1 B
425 | X D7 25 700 50 300 L 60 60 1 1 B
426 | X (TX)D0 16 700 -800 300 L 60 60 1 1 B
427 | X D8 26 700 150 300 L 60 60 1 1 B
428 | X (RX)D1 17 700 -700 300 L 60 60 1 1 B
429 | X #D9 27 700 250 300 L 60 60 1 1 B
430 | X RST 18 -700 -1200 300 R 60 60 1 1 I NL
431 | X (SS)#D10 28 700 350 300 L 60 60 1 1 B
432 | X GND 19 100 -1550 200 U 60 60 1 1 W N
433 | X (MOSI)#D11 29 700 450 300 L 60 60 1 1 B
434 | ENDDRAW
435 | ENDDEF
436 | #
437 | #End Library
438 |
--------------------------------------------------------------------------------
/KiCAD_PCB_Files/KiCAD_Project/Arduino_Spot_Welder.net:
--------------------------------------------------------------------------------
1 | (export (version D)
2 | (design
3 | (source "E:\\Cloud\\SkyDrive\\Modellflieger\\Arduino_Spot_Welder\\Kicad Projekt\\Version 4 - Arduino Nano - BIG TVS\\Arduino_Spot_Welder.sch")
4 | (date "24/09/2020 14:57:59")
5 | (tool "Eeschema 4.0.4-stable")
6 | (sheet (number 1) (name /) (tstamps /)
7 | (title_block
8 | (title "Arduino Spot Welder V3.2")
9 | (company Malectrics.eu)
10 | (rev 3.2)
11 | (date)
12 | (source Arduino_Spot_Welder.sch)
13 | (comment (number 1) (value ""))
14 | (comment (number 2) (value ""))
15 | (comment (number 3) (value ""))
16 | (comment (number 4) (value "")))))
17 | (components
18 | (comp (ref D1)
19 | (value D)
20 | (footprint Diodes_SMD:D_SMA)
21 | (libsource (lib device) (part D))
22 | (sheetpath (names /) (tstamps /))
23 | (tstamp 588F7893))
24 | (comp (ref Foot_Switch1)
25 | (value CONN_01X02)
26 | (footprint Connectors_Molex:Molex_KK-6410-02_02x2.54mm_Straight)
27 | (libsource (lib conn) (part CONN_01X02))
28 | (sheetpath (names /) (tstamps /))
29 | (tstamp 588FB469))
30 | (comp (ref P4)
31 | (value GND_con)
32 | (footprint Pin_Headers:Pin_Header_Straight_1x02_Pitch2.54mm)
33 | (libsource (lib conn) (part CONN_01X02))
34 | (sheetpath (names /) (tstamps /))
35 | (tstamp 588FC1B2))
36 | (comp (ref P5)
37 | (value AutoPulse)
38 | (footprint Pin_Headers:Pin_Header_Straight_1x02_Pitch2.54mm)
39 | (libsource (lib conn) (part CONN_01X02))
40 | (sheetpath (names /) (tstamps /))
41 | (tstamp 588FC247))
42 | (comp (ref P2)
43 | (value MCP1407)
44 | (footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
45 | (fields
46 | (field (name "MFG Name") "Microchip Technology")
47 | (field (name "MFG Part Number") MCP1407-E/SN))
48 | (libsource (lib conn) (part DIL8))
49 | (sheetpath (names /) (tstamps /))
50 | (tstamp 588FC77B))
51 | (comp (ref C1)
52 | (value 10nF)
53 | (footprint Capacitors_SMD:C_0805_HandSoldering)
54 | (libsource (lib device) (part C))
55 | (sheetpath (names /) (tstamps /))
56 | (tstamp 588FD27E))
57 | (comp (ref C2)
58 | (value 1µF)
59 | (footprint Capacitors_ThroughHole:C_Disc_D7.5mm_W5.0mm_P5.00mm)
60 | (libsource (lib device) (part CP))
61 | (sheetpath (names /) (tstamps /))
62 | (tstamp 588FD4DB))
63 | (comp (ref R13)
64 | (value 30)
65 | (footprint Resistors_SMD:R_1206_HandSoldering)
66 | (libsource (lib device) (part R))
67 | (sheetpath (names /) (tstamps /))
68 | (tstamp 589006D0))
69 | (comp (ref R14)
70 | (value 30)
71 | (footprint Resistors_SMD:R_1206_HandSoldering)
72 | (libsource (lib device) (part R))
73 | (sheetpath (names /) (tstamps /))
74 | (tstamp 589009E2))
75 | (comp (ref R15)
76 | (value 30)
77 | (footprint Resistors_SMD:R_1206_HandSoldering)
78 | (libsource (lib device) (part R))
79 | (sheetpath (names /) (tstamps /))
80 | (tstamp 58900A2B))
81 | (comp (ref R16)
82 | (value 30)
83 | (footprint Resistors_SMD:R_1206_HandSoldering)
84 | (libsource (lib device) (part R))
85 | (sheetpath (names /) (tstamps /))
86 | (tstamp 58900A7F))
87 | (comp (ref R17)
88 | (value 30)
89 | (footprint Resistors_SMD:R_1206_HandSoldering)
90 | (libsource (lib device) (part R))
91 | (sheetpath (names /) (tstamps /))
92 | (tstamp 58900E23))
93 | (comp (ref R18)
94 | (value 30)
95 | (footprint Resistors_SMD:R_1206_HandSoldering)
96 | (libsource (lib device) (part R))
97 | (sheetpath (names /) (tstamps /))
98 | (tstamp 58900E7D))
99 | (comp (ref P6)
100 | (value GND_con)
101 | (footprint Pin_Headers:Pin_Header_Straight_1x02_Pitch2.54mm)
102 | (libsource (lib conn) (part CONN_01X02))
103 | (sheetpath (names /) (tstamps /))
104 | (tstamp 5891D4F3))
105 | (comp (ref P7)
106 | (value AutoPulse)
107 | (footprint Pin_Headers:Pin_Header_Straight_1x02_Pitch2.54mm)
108 | (libsource (lib conn) (part CONN_01X02))
109 | (sheetpath (names /) (tstamps /))
110 | (tstamp 5891D6C9))
111 | (comp (ref R10)
112 | (value 620)
113 | (footprint Resistors_SMD:R_0805_HandSoldering)
114 | (libsource (lib device) (part R))
115 | (sheetpath (names /) (tstamps /))
116 | (tstamp 5904FF40))
117 | (comp (ref R9)
118 | (value 1k)
119 | (footprint Resistors_SMD:R_0805_HandSoldering)
120 | (fields
121 | (field (name "MFG Name") Value)
122 | (field (name "MFG Part Number") Value))
123 | (libsource (lib device) (part R))
124 | (sheetpath (names /) (tstamps /))
125 | (tstamp 5906285C))
126 | (comp (ref D3)
127 | (value ZENER)
128 | (footprint Diodes_SMD:D_SOD-123)
129 | (libsource (lib device) (part ZENER))
130 | (sheetpath (names /) (tstamps /))
131 | (tstamp 5907549C))
132 | (comp (ref P3)
133 | (value OLED_Display)
134 | (footprint OLED_SSD1306:OLED_SSD1306_128x64)
135 | (libsource (lib conn) (part CONN_01X04))
136 | (sheetpath (names /) (tstamps /))
137 | (tstamp 59785447))
138 | (comp (ref R4)
139 | (value 10k)
140 | (footprint Resistors_SMD:R_0805_HandSoldering)
141 | (libsource (lib device) (part R))
142 | (sheetpath (names /) (tstamps /))
143 | (tstamp 597986F0))
144 | (comp (ref R2)
145 | (value 10k)
146 | (footprint Resistors_SMD:R_0805_HandSoldering)
147 | (libsource (lib device) (part R))
148 | (sheetpath (names /) (tstamps /))
149 | (tstamp 59799F22))
150 | (comp (ref R5)
151 | (value 10k)
152 | (footprint Resistors_SMD:R_0805_HandSoldering)
153 | (libsource (lib device) (part R))
154 | (sheetpath (names /) (tstamps /))
155 | (tstamp 5979AB2C))
156 | (comp (ref R3)
157 | (value 10k)
158 | (footprint Resistors_SMD:R_0805_HandSoldering)
159 | (libsource (lib device) (part R))
160 | (sheetpath (names /) (tstamps /))
161 | (tstamp 5979AC32))
162 | (comp (ref C5)
163 | (value 10nF)
164 | (footprint Capacitors_SMD:C_0805_HandSoldering)
165 | (libsource (lib device) (part C))
166 | (sheetpath (names /) (tstamps /))
167 | (tstamp 5979B81F))
168 | (comp (ref C6)
169 | (value 10nF)
170 | (footprint Capacitors_SMD:C_0805_HandSoldering)
171 | (fields
172 | (field (name "MFG Name") Value)
173 | (field (name "MFG Part Number") Value))
174 | (libsource (lib device) (part C))
175 | (sheetpath (names /) (tstamps /))
176 | (tstamp 5979BB2E))
177 | (comp (ref ENC1)
178 | (value Bourns_PEC11L)
179 | (footprint Rotary-Encoders:ALPS_STEC12E08)
180 | (fields
181 | (field (name "MFG Name") Bourns)
182 | (field (name "MFG Part Number") PEC11L-4220F-S0015))
183 | (libsource (lib Rotary-Encoders) (part ALPS-STEC12E08))
184 | (sheetpath (names /) (tstamps /))
185 | (tstamp 597B2C6E))
186 | (comp (ref C3)
187 | (value 470µF)
188 | (footprint Capacitors_SMD:CP_Elec_10x10)
189 | (libsource (lib device) (part CP))
190 | (sheetpath (names /) (tstamps /))
191 | (tstamp 5981097B))
192 | (comp (ref R12)
193 | (value 3k3)
194 | (footprint Resistors_SMD:R_0805_HandSoldering)
195 | (fields
196 | (field (name "MFG Name") Value)
197 | (field (name "MFG Part Number") Value))
198 | (libsource (lib device) (part R))
199 | (sheetpath (names /) (tstamps /))
200 | (tstamp 59829832))
201 | (comp (ref R11)
202 | (value 10k)
203 | (footprint Resistors_SMD:R_0805_HandSoldering)
204 | (libsource (lib device) (part R))
205 | (sheetpath (names /) (tstamps /))
206 | (tstamp 59829949))
207 | (comp (ref D4)
208 | (value D_Schottky_BAV99)
209 | (footprint TO_SOT_Packages_SMD:SOT-23)
210 | (fields
211 | (field (name "MFG Name") "Diodes Incorporated")
212 | (field (name "MFG Part Number") BAV99Q-7-F))
213 | (libsource (lib device) (part D_Schottky_x2_Serial_AKC))
214 | (sheetpath (names /) (tstamps /))
215 | (tstamp 59835FFE))
216 | (comp (ref C7)
217 | (value 10nF)
218 | (footprint Capacitors_SMD:C_0805_HandSoldering)
219 | (fields
220 | (field (name "MFG Name") Value)
221 | (field (name "MFG Part Number") Value))
222 | (libsource (lib device) (part C))
223 | (sheetpath (names /) (tstamps /))
224 | (tstamp 5983B063))
225 | (comp (ref P1)
226 | (value "V IN")
227 | (footprint pots_own:Terminal_Block_2P_3.5mm)
228 | (fields
229 | (field (name "MFG Name") Value)
230 | (field (name "MFG Part Number") Value))
231 | (libsource (lib conn) (part CONN_01X02))
232 | (sheetpath (names /) (tstamps /))
233 | (tstamp 5A4C2390))
234 | (comp (ref TVS2)
235 | (value SMAJ13A)
236 | (footprint Diodes_SMD:D_SMA)
237 | (fields
238 | (field (name "MFG Name") "Diodes Incorporated")
239 | (field (name "MFG Part Number") SMAJ13A-13-F))
240 | (libsource (lib device) (part D))
241 | (sheetpath (names /) (tstamps /))
242 | (tstamp 5A4CFE68))
243 | (comp (ref R1)
244 | (value 10k)
245 | (footprint Resistors_SMD:R_0805_HandSoldering)
246 | (libsource (lib device) (part R))
247 | (sheetpath (names /) (tstamps /))
248 | (tstamp 5B4C49D3))
249 | (comp (ref TVS1)
250 | (value SMAJ13A)
251 | (footprint Diodes_SMD:D_SMA)
252 | (fields
253 | (field (name "MFG Name") "Diodes Incorporated")
254 | (field (name "MFG Part Number") SMAJ13A-13-F))
255 | (libsource (lib device) (part D))
256 | (sheetpath (names /) (tstamps /))
257 | (tstamp 5B4D662C))
258 | (comp (ref D2)
259 | (value D_Schottky_BAV99)
260 | (footprint TO_SOT_Packages_SMD:SOT-23)
261 | (fields
262 | (field (name "MFG Name") "Diodes Incorporated")
263 | (field (name "MFG Part Number") BAV99Q-7-F))
264 | (libsource (lib device) (part D_Schottky_x2_Serial_AKC))
265 | (sheetpath (names /) (tstamps /))
266 | (tstamp 5B6C1451))
267 | (comp (ref T1)
268 | (value FDB0105N407L)
269 | (footprint TO_SOT_Packages_SMD:TO-263-6)
270 | (libsource (lib TO-263) (part FDB0105N407L))
271 | (sheetpath (names /) (tstamps /))
272 | (tstamp 5B7430B7))
273 | (comp (ref T2)
274 | (value FDB0105N407L)
275 | (footprint TO_SOT_Packages_SMD:TO-263-6)
276 | (libsource (lib TO-263) (part FDB0105N407L))
277 | (sheetpath (names /) (tstamps /))
278 | (tstamp 5B7468A9))
279 | (comp (ref T3)
280 | (value FDB0105N407L)
281 | (footprint TO_SOT_Packages_SMD:TO-263-6)
282 | (libsource (lib TO-263) (part FDB0105N407L))
283 | (sheetpath (names /) (tstamps /))
284 | (tstamp 5B746984))
285 | (comp (ref T4)
286 | (value FDB0105N407L)
287 | (footprint TO_SOT_Packages_SMD:TO-263-6)
288 | (libsource (lib TO-263) (part FDB0105N407L))
289 | (sheetpath (names /) (tstamps /))
290 | (tstamp 5B746A62))
291 | (comp (ref T5)
292 | (value FDB0105N407L)
293 | (footprint TO_SOT_Packages_SMD:TO-263-6)
294 | (libsource (lib TO-263) (part FDB0105N407L))
295 | (sheetpath (names /) (tstamps /))
296 | (tstamp 5B746B47))
297 | (comp (ref T6)
298 | (value FDB0105N407L)
299 | (footprint TO_SOT_Packages_SMD:TO-263-6)
300 | (libsource (lib TO-263) (part FDB0105N407L))
301 | (sheetpath (names /) (tstamps /))
302 | (tstamp 5B746C27))
303 | (comp (ref SP1)
304 | (value SPEAKER)
305 | (footprint pots_own:Buzzer_PS1240P02BT)
306 | (fields
307 | (field (name "MFG Name") TDK)
308 | (field (name "MFG Part Number") PS1240P02BT))
309 | (libsource (lib device) (part SPEAKER))
310 | (sheetpath (names /) (tstamps /))
311 | (tstamp 5B763D97))
312 | (comp (ref R8)
313 | (value 1k)
314 | (footprint Resistors_SMD:R_0805_HandSoldering)
315 | (fields
316 | (field (name "MFG Name") Value)
317 | (field (name "MFG Part Number") Value))
318 | (libsource (lib device) (part R))
319 | (sheetpath (names /) (tstamps /))
320 | (tstamp 5B76F444))
321 | (comp (ref Q1)
322 | (value MMBT3904-7-F)
323 | (footprint TO_SOT_Packages_SMD:SOT-23)
324 | (fields
325 | (field (name "MFG Name") "Diodes Incorporated")
326 | (field (name "MFG Part Number") MMBT3904-7-F))
327 | (libsource (lib TO-263) (part BC849))
328 | (sheetpath (names /) (tstamps /))
329 | (tstamp 5B77353C))
330 | (comp (ref R6)
331 | (value 1k)
332 | (footprint Resistors_SMD:R_0805_HandSoldering)
333 | (fields
334 | (field (name "MFG Name") Value)
335 | (field (name "MFG Part Number") Value))
336 | (libsource (lib device) (part R))
337 | (sheetpath (names /) (tstamps /))
338 | (tstamp 5B777698))
339 | (comp (ref Mosfet_CTRL2)
340 | (value CONN_01X06)
341 | (footprint Pin_Headers:Pin_Header_Straight_1x06_Pitch2.54mm)
342 | (libsource (lib conn) (part CONN_01X06))
343 | (sheetpath (names /) (tstamps /))
344 | (tstamp 5BD1D238))
345 | (comp (ref Mosfet_CTRL1)
346 | (value CONN_01X06)
347 | (footprint Pin_Headers:Pin_Header_Straight_1x06_Pitch2.54mm)
348 | (libsource (lib conn) (part CONN_01X06))
349 | (sheetpath (names /) (tstamps /))
350 | (tstamp 5BD231E6))
351 | (comp (ref TVS3)
352 | (value SLD8S14A)
353 | (footprint pots_own:SMTO-263)
354 | (fields
355 | (field (name "MFG Name") Littlefuse)
356 | (field (name "MFG Part Number") SLD8S14A))
357 | (libsource (lib device) (part D))
358 | (sheetpath (names /) (tstamps /))
359 | (tstamp 5BD1EB25))
360 | (comp (ref NTC1)
361 | (value 10k)
362 | (footprint Resistors_SMD:R_0805_HandSoldering)
363 | (fields
364 | (field (name "MFG Name") "Murata Electronics")
365 | (field (name "MFG Part Number") NCP21XV103J03RA))
366 | (libsource (lib device) (part R))
367 | (sheetpath (names /) (tstamps /))
368 | (tstamp 5BDB49DE))
369 | (comp (ref R7)
370 | (value 10k)
371 | (footprint Resistors_SMD:R_0805_HandSoldering)
372 | (fields
373 | (field (name "MFG Name") Value)
374 | (field (name "MFG Part Number") Value))
375 | (libsource (lib device) (part R))
376 | (sheetpath (names /) (tstamps /))
377 | (tstamp 5BDB4FBC))
378 | (comp (ref U1)
379 | (value arduino_nano)
380 | (footprint arduino:arduino_mini)
381 | (fields
382 | (field (name "MFG Name") Value)
383 | (field (name "MFG Part Number") Value))
384 | (libsource (lib arduino) (part arduino_mini))
385 | (sheetpath (names /) (tstamps /))
386 | (tstamp 5F1AFCF0))
387 | (comp (ref C4)
388 | (value 470µF)
389 | (footprint Capacitors_SMD:CP_Elec_10x10)
390 | (fields
391 | (field (name "MFG Name") Value)
392 | (field (name "MFG Part Number") Value))
393 | (libsource (lib device) (part CP))
394 | (sheetpath (names /) (tstamps /))
395 | (tstamp 5F1CB81C))
396 | (comp (ref TVS4)
397 | (value SLD8S14A)
398 | (footprint pots_own:SMTO-263)
399 | (fields
400 | (field (name "MFG Name") Littlefuse)
401 | (field (name "MFG Part Number") SLD8S14A))
402 | (libsource (lib device) (part D))
403 | (sheetpath (names /) (tstamps /))
404 | (tstamp 5F6CA01E))
405 | (comp (ref TVS5)
406 | (value SLD8S14A)
407 | (footprint pots_own:SMTO-263)
408 | (fields
409 | (field (name "MFG Name") Littlefuse)
410 | (field (name "MFG Part Number") SLD8S14A))
411 | (libsource (lib device) (part D))
412 | (sheetpath (names /) (tstamps /))
413 | (tstamp 5F6CA0E0)))
414 | (libparts
415 | (libpart (lib Rotary-Encoders) (part ALPS-STEC12E08)
416 | (aliases
417 | (alias BI_EN11-HSM1AF15)
418 | (alias BI_EN12-HS22AF30))
419 | (description "Rotary encoder with switch")
420 | (fields
421 | (field (name Reference) ENC)
422 | (field (name Value) ALPS-STEC12E08))
423 | (pins
424 | (pin (num A) (name A) (type passive))
425 | (pin (num B) (name B) (type passive))
426 | (pin (num C) (name C) (type passive))
427 | (pin (num SW1) (name PB) (type passive))
428 | (pin (num SW2) (name PB) (type passive))))
429 | (libpart (lib TO-263) (part BC850)
430 | (aliases
431 | (alias BC849))
432 | (description "45V Vce, 0.1A Ic, Low noise, NPN, SOT-23")
433 | (docs http://www.fairchildsemi.com/ds/BC/BC850.pdf)
434 | (footprints
435 | (fp SOT-23*))
436 | (fields
437 | (field (name Reference) Q)
438 | (field (name Value) BC850)
439 | (field (name Footprint) SOT-23))
440 | (pins
441 | (pin (num 1) (name B) (type input))
442 | (pin (num 2) (name E) (type passive))
443 | (pin (num 3) (name C) (type passive))))
444 | (libpart (lib device) (part C)
445 | (description "Unpolarized capacitor")
446 | (footprints
447 | (fp C?)
448 | (fp C_????_*)
449 | (fp C_????)
450 | (fp SMD*_c)
451 | (fp Capacitor*))
452 | (fields
453 | (field (name Reference) C)
454 | (field (name Value) C))
455 | (pins
456 | (pin (num 1) (name ~) (type passive))
457 | (pin (num 2) (name ~) (type passive))))
458 | (libpart (lib conn) (part CONN_01X02)
459 | (description "Connector, single row, 01x02")
460 | (footprints
461 | (fp Pin_Header_Straight_1X02)
462 | (fp Pin_Header_Angled_1X02)
463 | (fp Socket_Strip_Straight_1X02)
464 | (fp Socket_Strip_Angled_1X02))
465 | (fields
466 | (field (name Reference) P)
467 | (field (name Value) CONN_01X02))
468 | (pins
469 | (pin (num 1) (name P1) (type passive))
470 | (pin (num 2) (name P2) (type passive))))
471 | (libpart (lib conn) (part CONN_01X04)
472 | (description "Connector, single row, 01x04")
473 | (footprints
474 | (fp Pin_Header_Straight_1X04)
475 | (fp Pin_Header_Angled_1X04)
476 | (fp Socket_Strip_Straight_1X04)
477 | (fp Socket_Strip_Angled_1X04))
478 | (fields
479 | (field (name Reference) P)
480 | (field (name Value) CONN_01X04))
481 | (pins
482 | (pin (num 1) (name P1) (type passive))
483 | (pin (num 2) (name P2) (type passive))
484 | (pin (num 3) (name P3) (type passive))
485 | (pin (num 4) (name P4) (type passive))))
486 | (libpart (lib conn) (part CONN_01X06)
487 | (description "Connector, single row, 01x06")
488 | (footprints
489 | (fp Pin_Header_Straight_1X06)
490 | (fp Pin_Header_Angled_1X06)
491 | (fp Socket_Strip_Straight_1X06)
492 | (fp Socket_Strip_Angled_1X06))
493 | (fields
494 | (field (name Reference) P)
495 | (field (name Value) CONN_01X06))
496 | (pins
497 | (pin (num 1) (name P1) (type passive))
498 | (pin (num 2) (name P2) (type passive))
499 | (pin (num 3) (name P3) (type passive))
500 | (pin (num 4) (name P4) (type passive))
501 | (pin (num 5) (name P5) (type passive))
502 | (pin (num 6) (name P6) (type passive))))
503 | (libpart (lib device) (part CP)
504 | (description "Polarised capacitor")
505 | (footprints
506 | (fp CP*)
507 | (fp C_Axial*)
508 | (fp C_Radial*)
509 | (fp TantalC*)
510 | (fp C*elec)
511 | (fp c_elec*)
512 | (fp SMD*_Pol))
513 | (fields
514 | (field (name Reference) C)
515 | (field (name Value) CP))
516 | (pins
517 | (pin (num 1) (name ~) (type passive))
518 | (pin (num 2) (name ~) (type passive))))
519 | (libpart (lib device) (part D)
520 | (description Diode)
521 | (footprints
522 | (fp Diode_*)
523 | (fp D-Pak_TO252AA)
524 | (fp *SingleDiode)
525 | (fp *_Diode_*)
526 | (fp *SingleDiode*))
527 | (fields
528 | (field (name Reference) D)
529 | (field (name Value) D))
530 | (pins
531 | (pin (num 1) (name K) (type passive))
532 | (pin (num 2) (name A) (type passive))))
533 | (libpart (lib conn) (part DIL8)
534 | (fields
535 | (field (name Reference) P)
536 | (field (name Value) DIL8))
537 | (pins
538 | (pin (num 1) (name P1) (type passive))
539 | (pin (num 2) (name P2) (type passive))
540 | (pin (num 3) (name P3) (type passive))
541 | (pin (num 4) (name P4) (type passive))
542 | (pin (num 5) (name P5) (type passive))
543 | (pin (num 6) (name P6) (type passive))
544 | (pin (num 7) (name P7) (type passive))
545 | (pin (num 8) (name P8) (type passive))))
546 | (libpart (lib device) (part D_Schottky_x2_Serial_AKC)
547 | (description "Double diode Schottky (Serie)")
548 | (fields
549 | (field (name Reference) D)
550 | (field (name Value) D_Schottky_x2_Serial_AKC))
551 | (pins
552 | (pin (num 1) (name A) (type passive))
553 | (pin (num 2) (name K) (type passive))
554 | (pin (num 3) (name common) (type passive))))
555 | (libpart (lib TO-263) (part FDB0105N407L)
556 | (description "N-Channel Power Mosfet D2-PAK (TO-263) 40V 460A ")
557 | (fields
558 | (field (name Reference) T)
559 | (field (name Value) FDB0105N407L))
560 | (pins
561 | (pin (num 1) (name Gate) (type input))
562 | (pin (num 2) (name Source) (type input))
563 | (pin (num 3) (name Source) (type input))
564 | (pin (num 4) (name Drain) (type input))
565 | (pin (num 5) (name Source) (type input))
566 | (pin (num 6) (name Source) (type input))
567 | (pin (num 7) (name Source) (type input))))
568 | (libpart (lib device) (part R)
569 | (description Resistor)
570 | (footprints
571 | (fp R_*)
572 | (fp Resistor_*))
573 | (fields
574 | (field (name Reference) R)
575 | (field (name Value) R))
576 | (pins
577 | (pin (num 1) (name ~) (type passive))
578 | (pin (num 2) (name ~) (type passive))))
579 | (libpart (lib device) (part SPEAKER)
580 | (description "Audio speaker, 2 pins, generic symbol")
581 | (fields
582 | (field (name Reference) SP)
583 | (field (name Value) SPEAKER))
584 | (pins
585 | (pin (num 1) (name 1) (type input))
586 | (pin (num 2) (name 2) (type input))))
587 | (libpart (lib device) (part ZENER)
588 | (description "Diode zener")
589 | (footprints
590 | (fp D?)
591 | (fp SO*)
592 | (fp SM*))
593 | (fields
594 | (field (name Reference) D)
595 | (field (name Value) ZENER))
596 | (pins
597 | (pin (num 1) (name K) (type passive))
598 | (pin (num 2) (name A) (type passive))))
599 | (libpart (lib arduino) (part arduino_mini)
600 | (fields
601 | (field (name Reference) U)
602 | (field (name Value) arduino_mini)
603 | (field (name Footprint) DIL20))
604 | (pins
605 | (pin (num 1) (name "(led)(SCK)D13") (type input))
606 | (pin (num 2) (name 3V3) (type power_out))
607 | (pin (num 3) (name Aref) (type input))
608 | (pin (num 4) (name A0) (type BiDi))
609 | (pin (num 5) (name A1) (type BiDi))
610 | (pin (num 6) (name A2) (type BiDi))
611 | (pin (num 7) (name A3) (type BiDi))
612 | (pin (num 8) (name "A4(SDA)") (type BiDi))
613 | (pin (num 9) (name "A5(SCL)") (type BiDi))
614 | (pin (num 10) (name A6) (type BiDi))
615 | (pin (num 11) (name A7) (type BiDi))
616 | (pin (num 12) (name 5V) (type power_out))
617 | (pin (num 13) (name RST) (type input))
618 | (pin (num 14) (name GND) (type power_in))
619 | (pin (num 15) (name Vin) (type power_in))
620 | (pin (num 16) (name "(TX)D0") (type BiDi))
621 | (pin (num 17) (name "(RX)D1") (type BiDi))
622 | (pin (num 18) (name RST) (type input))
623 | (pin (num 19) (name GND) (type power_in))
624 | (pin (num 20) (name "(int2)D2") (type BiDi))
625 | (pin (num 21) (name "(int3)#D3") (type BiDi))
626 | (pin (num 22) (name D4) (type BiDi))
627 | (pin (num 23) (name "#D5") (type BiDi))
628 | (pin (num 24) (name "#D6") (type BiDi))
629 | (pin (num 25) (name D7) (type BiDi))
630 | (pin (num 26) (name D8) (type BiDi))
631 | (pin (num 27) (name "#D9") (type BiDi))
632 | (pin (num 28) (name "(SS)#D10") (type BiDi))
633 | (pin (num 29) (name "(MOSI)#D11") (type BiDi))
634 | (pin (num 30) (name "(MISO)D12") (type BiDi)))))
635 | (libraries
636 | (library (logical TO-263)
637 | (uri E:\Cloud\SkyDrive\Own_Kicad_Libraries\TO-263_Schematic.pretty\TO-263.lib))
638 | (library (logical device)
639 | (uri "C:\\Program Files\\KiCad\\share\\kicad\\library\\device.lib"))
640 | (library (logical conn)
641 | (uri "C:\\Program Files\\KiCad\\share\\kicad\\library\\conn.lib"))
642 | (library (logical arduino)
643 | (uri E:\Cloud\SkyDrive\Own_Kicad_Libraries\Arduino_nano.pretty\arduino.lib))
644 | (library (logical Rotary-Encoders)
645 | (uri E:\Cloud\SkyDrive\Own_Kicad_Libraries\Rotary-Encoders.pretty\Schematic-Symbols\Rotary-Encoders.lib)))
646 | (nets
647 | (net (code 1) (name +12V)
648 | (node (ref P1) (pin 2))
649 | (node (ref R11) (pin 2))
650 | (node (ref D1) (pin 2)))
651 | (net (code 2) (name VCC)
652 | (node (ref D1) (pin 1))
653 | (node (ref TVS1) (pin 1))
654 | (node (ref P2) (pin 1))
655 | (node (ref C4) (pin 1))
656 | (node (ref U1) (pin 15))
657 | (node (ref P2) (pin 8))
658 | (node (ref C1) (pin 1))
659 | (node (ref C2) (pin 1))
660 | (node (ref C3) (pin 1)))
661 | (net (code 3) (name +5V)
662 | (node (ref SP1) (pin 1))
663 | (node (ref R7) (pin 2))
664 | (node (ref R4) (pin 2))
665 | (node (ref R5) (pin 1))
666 | (node (ref R8) (pin 2))
667 | (node (ref P3) (pin 2))
668 | (node (ref D2) (pin 2))
669 | (node (ref D4) (pin 2))
670 | (node (ref U1) (pin 12)))
671 | (net (code 4) (name "Net-(ENC1-PadA)")
672 | (node (ref ENC1) (pin A))
673 | (node (ref R5) (pin 2))
674 | (node (ref R3) (pin 2)))
675 | (net (code 5) (name "Net-(ENC1-PadB)")
676 | (node (ref ENC1) (pin B))
677 | (node (ref R4) (pin 1))
678 | (node (ref R2) (pin 2)))
679 | (net (code 6) (name "Net-(Mosfet_CTRL1-Pad1)")
680 | (node (ref P2) (pin 7))
681 | (node (ref P2) (pin 6))
682 | (node (ref TVS2) (pin 1))
683 | (node (ref Mosfet_CTRL1) (pin 6))
684 | (node (ref Mosfet_CTRL1) (pin 5))
685 | (node (ref Mosfet_CTRL1) (pin 4))
686 | (node (ref Mosfet_CTRL1) (pin 3))
687 | (node (ref Mosfet_CTRL1) (pin 2))
688 | (node (ref Mosfet_CTRL1) (pin 1)))
689 | (net (code 7) (name "Net-(Q1-Pad1)")
690 | (node (ref Q1) (pin 1))
691 | (node (ref R6) (pin 2)))
692 | (net (code 8) (name GND)
693 | (node (ref P2) (pin 5))
694 | (node (ref R12) (pin 1))
695 | (node (ref D4) (pin 1))
696 | (node (ref D2) (pin 1))
697 | (node (ref TVS1) (pin 2))
698 | (node (ref Foot_Switch1) (pin 2))
699 | (node (ref P4) (pin 1))
700 | (node (ref P4) (pin 2))
701 | (node (ref C2) (pin 2))
702 | (node (ref P2) (pin 4))
703 | (node (ref C1) (pin 2))
704 | (node (ref C6) (pin 2))
705 | (node (ref C5) (pin 2))
706 | (node (ref ENC1) (pin C))
707 | (node (ref ENC1) (pin SW1))
708 | (node (ref C3) (pin 2))
709 | (node (ref C7) (pin 1))
710 | (node (ref R1) (pin 1))
711 | (node (ref TVS2) (pin 2))
712 | (node (ref Q1) (pin 2))
713 | (node (ref P1) (pin 1))
714 | (node (ref U1) (pin 19))
715 | (node (ref U1) (pin 14))
716 | (node (ref NTC1) (pin 1))
717 | (node (ref C4) (pin 2))
718 | (node (ref P3) (pin 1))
719 | (node (ref D3) (pin 2))
720 | (node (ref R9) (pin 2)))
721 | (net (code 9) (name "Net-(R17-Pad1)")
722 | (node (ref R17) (pin 1))
723 | (node (ref T5) (pin 1)))
724 | (net (code 10) (name "Net-(Q1-Pad3)")
725 | (node (ref SP1) (pin 2))
726 | (node (ref Q1) (pin 3))
727 | (node (ref R8) (pin 1)))
728 | (net (code 11) (name "Net-(R18-Pad1)")
729 | (node (ref T6) (pin 1))
730 | (node (ref R18) (pin 1)))
731 | (net (code 12) (name "Net-(R16-Pad1)")
732 | (node (ref R16) (pin 1))
733 | (node (ref T4) (pin 1)))
734 | (net (code 13) (name "Net-(R15-Pad1)")
735 | (node (ref R15) (pin 1))
736 | (node (ref T3) (pin 1)))
737 | (net (code 14) (name "Net-(R14-Pad1)")
738 | (node (ref T2) (pin 1))
739 | (node (ref R14) (pin 1)))
740 | (net (code 15) (name "Net-(R13-Pad1)")
741 | (node (ref R13) (pin 1))
742 | (node (ref T1) (pin 1)))
743 | (net (code 16) (name "Net-(P2-Pad3)")
744 | (node (ref P2) (pin 3)))
745 | (net (code 17) (name "Net-(P5-Pad1)")
746 | (node (ref P5) (pin 1))
747 | (node (ref R9) (pin 1))
748 | (node (ref R10) (pin 1))
749 | (node (ref P5) (pin 2)))
750 | (net (code 18) (name /Probe)
751 | (node (ref T3) (pin 4))
752 | (node (ref T5) (pin 4))
753 | (node (ref T1) (pin 4))
754 | (node (ref TVS3) (pin 1))
755 | (node (ref T4) (pin 4))
756 | (node (ref T2) (pin 4))
757 | (node (ref P7) (pin 1))
758 | (node (ref T6) (pin 4))
759 | (node (ref P7) (pin 2))
760 | (node (ref TVS4) (pin 1))
761 | (node (ref TVS5) (pin 1)))
762 | (net (code 19) (name "Net-(Mosfet_CTRL2-Pad1)")
763 | (node (ref R15) (pin 2))
764 | (node (ref R13) (pin 2))
765 | (node (ref Mosfet_CTRL2) (pin 2))
766 | (node (ref R18) (pin 2))
767 | (node (ref Mosfet_CTRL2) (pin 3))
768 | (node (ref Mosfet_CTRL2) (pin 4))
769 | (node (ref Mosfet_CTRL2) (pin 5))
770 | (node (ref Mosfet_CTRL2) (pin 6))
771 | (node (ref R17) (pin 2))
772 | (node (ref R16) (pin 2))
773 | (node (ref R14) (pin 2))
774 | (node (ref Mosfet_CTRL2) (pin 1)))
775 | (net (code 20) (name /A3)
776 | (node (ref NTC1) (pin 2))
777 | (node (ref R7) (pin 1))
778 | (node (ref U1) (pin 7)))
779 | (net (code 21) (name "Net-(U1-Pad6)")
780 | (node (ref U1) (pin 6)))
781 | (net (code 22) (name /A1)
782 | (node (ref U1) (pin 5))
783 | (node (ref R6) (pin 1)))
784 | (net (code 23) (name /A0)
785 | (node (ref R12) (pin 2))
786 | (node (ref U1) (pin 4))
787 | (node (ref R11) (pin 1))
788 | (node (ref C7) (pin 2))
789 | (node (ref D4) (pin 3)))
790 | (net (code 24) (name "Net-(U1-Pad3)")
791 | (node (ref U1) (pin 3)))
792 | (net (code 25) (name "Net-(U1-Pad2)")
793 | (node (ref U1) (pin 2)))
794 | (net (code 26) (name "Net-(U1-Pad1)")
795 | (node (ref U1) (pin 1)))
796 | (net (code 27) (name /SDA)
797 | (node (ref U1) (pin 8))
798 | (node (ref P3) (pin 4)))
799 | (net (code 28) (name "Net-(U1-Pad17)")
800 | (node (ref U1) (pin 17)))
801 | (net (code 29) (name "Net-(U1-Pad29)")
802 | (node (ref U1) (pin 29)))
803 | (net (code 30) (name "Net-(U1-Pad28)")
804 | (node (ref U1) (pin 28)))
805 | (net (code 31) (name "Net-(U1-Pad18)")
806 | (node (ref U1) (pin 18)))
807 | (net (code 32) (name "Net-(U1-Pad27)")
808 | (node (ref U1) (pin 27)))
809 | (net (code 33) (name /D8)
810 | (node (ref U1) (pin 26))
811 | (node (ref R3) (pin 1))
812 | (node (ref C5) (pin 1)))
813 | (net (code 34) (name "Net-(U1-Pad16)")
814 | (node (ref U1) (pin 16)))
815 | (net (code 35) (name /D7)
816 | (node (ref U1) (pin 25))
817 | (node (ref Foot_Switch1) (pin 1)))
818 | (net (code 36) (name /D6)
819 | (node (ref U1) (pin 24))
820 | (node (ref ENC1) (pin SW2)))
821 | (net (code 37) (name /D5)
822 | (node (ref P2) (pin 2))
823 | (node (ref U1) (pin 23))
824 | (node (ref R1) (pin 2)))
825 | (net (code 38) (name "Net-(U1-Pad13)")
826 | (node (ref U1) (pin 13)))
827 | (net (code 39) (name "Net-(U1-Pad22)")
828 | (node (ref U1) (pin 22)))
829 | (net (code 40) (name /D3)
830 | (node (ref U1) (pin 21))
831 | (node (ref D2) (pin 3))
832 | (node (ref D3) (pin 1))
833 | (node (ref R10) (pin 2)))
834 | (net (code 41) (name "Net-(U1-Pad11)")
835 | (node (ref U1) (pin 11)))
836 | (net (code 42) (name "Net-(U1-Pad30)")
837 | (node (ref U1) (pin 30)))
838 | (net (code 43) (name /D2)
839 | (node (ref R2) (pin 1))
840 | (node (ref U1) (pin 20))
841 | (node (ref C6) (pin 1)))
842 | (net (code 44) (name "Net-(U1-Pad10)")
843 | (node (ref U1) (pin 10)))
844 | (net (code 45) (name /SCL)
845 | (node (ref P3) (pin 3))
846 | (node (ref U1) (pin 9)))
847 | (net (code 46) (name /battery_minus)
848 | (node (ref T1) (pin 2))
849 | (node (ref T1) (pin 3))
850 | (node (ref T1) (pin 5))
851 | (node (ref T2) (pin 3))
852 | (node (ref T1) (pin 6))
853 | (node (ref T4) (pin 2))
854 | (node (ref T2) (pin 2))
855 | (node (ref T4) (pin 3))
856 | (node (ref T6) (pin 5))
857 | (node (ref P6) (pin 1))
858 | (node (ref T4) (pin 5))
859 | (node (ref T4) (pin 6))
860 | (node (ref T4) (pin 7))
861 | (node (ref T5) (pin 2))
862 | (node (ref T5) (pin 3))
863 | (node (ref T5) (pin 5))
864 | (node (ref T5) (pin 6))
865 | (node (ref T5) (pin 7))
866 | (node (ref T6) (pin 2))
867 | (node (ref T6) (pin 6))
868 | (node (ref T6) (pin 7))
869 | (node (ref T6) (pin 3))
870 | (node (ref TVS3) (pin 2))
871 | (node (ref TVS4) (pin 2))
872 | (node (ref TVS5) (pin 2))
873 | (node (ref P6) (pin 2))
874 | (node (ref T2) (pin 5))
875 | (node (ref T2) (pin 6))
876 | (node (ref T2) (pin 7))
877 | (node (ref T3) (pin 2))
878 | (node (ref T3) (pin 3))
879 | (node (ref T3) (pin 5))
880 | (node (ref T3) (pin 6))
881 | (node (ref T3) (pin 7))
882 | (node (ref T1) (pin 7)))))
--------------------------------------------------------------------------------
/KiCAD_PCB_Files/KiCAD_Project/Arduino_Spot_Welder.pro:
--------------------------------------------------------------------------------
1 | update=03/03/2021 15:58:26
2 | version=1
3 | last_client=kicad
4 | [pcbnew]
5 | version=1
6 | LastNetListRead=
7 | UseCmpFile=1
8 | PadDrill=0.600000000000
9 | PadDrillOvalY=0.600000000000
10 | PadSizeH=1.500000000000
11 | PadSizeV=1.500000000000
12 | PcbTextSizeV=1.500000000000
13 | PcbTextSizeH=1.500000000000
14 | PcbTextThickness=0.300000000000
15 | ModuleTextSizeV=1.000000000000
16 | ModuleTextSizeH=1.000000000000
17 | ModuleTextSizeThickness=0.150000000000
18 | SolderMaskClearance=0.000000000000
19 | SolderMaskMinWidth=0.000000000000
20 | DrawSegmentWidth=0.200000000000
21 | BoardOutlineThickness=0.100000000000
22 | ModuleOutlineThickness=0.150000000000
23 | [cvpcb]
24 | version=1
25 | NetIExt=net
26 | [general]
27 | version=1
28 | [eeschema]
29 | version=1
30 | LibDir=../../../../Own_Kicad_Libraries/Rotary-Encoders.pretty;../../../../Own_Kicad_Libraries/TO-263_Schematic.pretty;../../../../Own_Kicad_Libraries/Arduino_nano.pretty
31 | [eeschema/libraries]
32 | LibName1=TO-263
33 | LibName2=power
34 | LibName3=device
35 | LibName4=transistors
36 | LibName5=conn
37 | LibName6=linear
38 | LibName7=regul
39 | LibName8=74xx
40 | LibName9=cmos4000
41 | LibName10=adc-dac
42 | LibName11=memory
43 | LibName12=xilinx
44 | LibName13=microcontrollers
45 | LibName14=dsp
46 | LibName15=microchip
47 | LibName16=analog_switches
48 | LibName17=motorola
49 | LibName18=texas
50 | LibName19=intel
51 | LibName20=audio
52 | LibName21=interface
53 | LibName22=digital-audio
54 | LibName23=philips
55 | LibName24=display
56 | LibName25=cypress
57 | LibName26=siliconi
58 | LibName27=opto
59 | LibName28=atmel
60 | LibName29=contrib
61 | LibName30=valves
62 | LibName31=Schematic-Symbols/Rotary-Encoders
63 | LibName32=arduino
64 | [schematic_editor]
65 | version=1
66 | PageLayoutDescrFile=
67 | PlotDirectoryName=
68 | SubpartIdSeparator=0
69 | SubpartFirstId=65
70 | NetFmtName=Pcbnew
71 | SpiceForceRefPrefix=0
72 | SpiceUseNetNumbers=0
73 | LabSize=60
74 |
--------------------------------------------------------------------------------
/KiCAD_PCB_Files/KiCAD_Project/README.md:
--------------------------------------------------------------------------------
1 | These are the KICAD project files for the Arduino Spot Welder V4
2 |
--------------------------------------------------------------------------------
/KiCAD_PCB_Files/KiCAD_Project/fp-lib-table:
--------------------------------------------------------------------------------
1 | (fp_lib_table
2 | (lib (name pots_own)(type KiCad)(uri E:\Cloud\SkyDrive\Own_Kicad_Libraries\pots_own.pretty)(options "")(descr ""))
3 | (lib (name Rotary-Encoders)(type KiCad)(uri E:\Cloud\SkyDrive\Own_Kicad_Libraries\Rotary-Encoders.pretty)(options "")(descr ""))
4 | (lib (name OLED_SSD1306)(type KiCad)(uri E:\Cloud\SkyDrive\Own_Kicad_Libraries\OLED_SSD1306.pretty)(options "")(descr ""))
5 | (lib (name Vias)(type KiCad)(uri E:\Cloud\SkyDrive\Own_Kicad_Libraries\Vias.pretty)(options "")(descr ""))
6 | (lib (name smd-semi)(type KiCad)(uri E:\Cloud\SkyDrive\Own_Kicad_Libraries\kicad-pcblib-master\smd-semi.pretty)(options "")(descr ""))
7 | (lib (name Connectors_USB)(type KiCad)(uri E:\Cloud\SkyDrive\Own_Kicad_Libraries\Connectors_USB.pretty)(options "")(descr ""))
8 | (lib (name arduino)(type Legacy)(uri E:\Cloud\SkyDrive\Own_Kicad_Libraries\Arduino_nano.pretty\arduino.mod)(options "")(descr ""))
9 | )
10 |
--------------------------------------------------------------------------------
/KiCAD_PCB_Files/README.md:
--------------------------------------------------------------------------------
1 | These are the pcb files for the Spot welder V4
2 |
--------------------------------------------------------------------------------
/KiCAD_PCB_Files/Spot_Welder_V4_PCB_Layout.JPG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/KaeptnBalu/Arduino_Spot_Welder_V4/40e2d8a17df735c2a2b23d6d951538f4eaea7b9a/KiCAD_PCB_Files/Spot_Welder_V4_PCB_Layout.JPG
--------------------------------------------------------------------------------
/KiCAD_PCB_Files/Spot_Welder_V4_Schematic.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/KaeptnBalu/Arduino_Spot_Welder_V4/40e2d8a17df735c2a2b23d6d951538f4eaea7b9a/KiCAD_PCB_Files/Spot_Welder_V4_Schematic.pdf
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/Parts/Aluminum_Parts/Alu_Part_V4_3d.JPG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/KaeptnBalu/Arduino_Spot_Welder_V4/40e2d8a17df735c2a2b23d6d951538f4eaea7b9a/Parts/Aluminum_Parts/Alu_Part_V4_3d.JPG
--------------------------------------------------------------------------------
/Parts/Aluminum_Parts/Alu_Part_V4_4mm.dxf:
--------------------------------------------------------------------------------
1 | 0
2 | SECTION
3 | 2
4 | HEADER
5 | 9
6 | $INSUNITS
7 | 70
8 | 4
9 | 9
10 | $ACADVER
11 | 1
12 | AC1014
13 | 9
14 | $HANDSEED
15 | 5
16 | FFFF
17 | 0
18 | ENDSEC
19 | 0
20 | SECTION
21 | 2
22 | TABLES
23 | 0
24 | TABLE
25 | 2
26 | VPORT
27 | 5
28 | 8
29 | 100
30 | AcDbSymbolTable
31 | 0
32 | ENDTAB
33 | 0
34 | TABLE
35 | 2
36 | LTYPE
37 | 5
38 | 5
39 | 100
40 | AcDbSymbolTable
41 | 0
42 | LTYPE
43 | 5
44 | 14
45 | 100
46 | AcDbSymbolTableRecord
47 | 100
48 | AcDbLinetypeTableRecord
49 | 2
50 | BYBLOCK
51 | 70
52 | 0
53 | 0
54 | LTYPE
55 | 5
56 | 15
57 | 100
58 | AcDbSymbolTableRecord
59 | 100
60 | AcDbLinetypeTableRecord
61 | 2
62 | BYLAYER
63 | 70
64 | 0
65 | 0
66 | ENDTAB
67 | 0
68 | TABLE
69 | 2
70 | LAYER
71 | 5
72 | 2
73 | 100
74 | AcDbSymbolTable
75 | 70
76 | 2
77 | 0
78 | LAYER
79 | 5
80 | 50
81 | 100
82 | AcDbSymbolTableRecord
83 | 100
84 | AcDbLayerTableRecord
85 | 2
86 | 0
87 | 70
88 | 0
89 | 6
90 | CONTINUOUS
91 | 0
92 | ENDTAB
93 | 0
94 | TABLE
95 | 2
96 | STYLE
97 | 5
98 | 3
99 | 100
100 | AcDbSymbolTable
101 | 70
102 | 1
103 | 0
104 | STYLE
105 | 5
106 | 11
107 | 100
108 | AcDbSymbolTableRecord
109 | 100
110 | AcDbTextStyleTableRecord
111 | 2
112 | STANDARD
113 | 70
114 | 0
115 | 0
116 | ENDTAB
117 | 0
118 | TABLE
119 | 2
120 | VIEW
121 | 5
122 | 6
123 | 100
124 | AcDbSymbolTable
125 | 70
126 | 0
127 | 0
128 | ENDTAB
129 | 0
130 | TABLE
131 | 2
132 | UCS
133 | 5
134 | 7
135 | 100
136 | AcDbSymbolTable
137 | 70
138 | 0
139 | 0
140 | ENDTAB
141 | 0
142 | TABLE
143 | 2
144 | APPID
145 | 5
146 | 9
147 | 100
148 | AcDbSymbolTable
149 | 70
150 | 2
151 | 0
152 | APPID
153 | 5
154 | 12
155 | 100
156 | AcDbSymbolTableRecord
157 | 100
158 | AcDbRegAppTableRecord
159 | 2
160 | ACAD
161 | 70
162 | 0
163 | 0
164 | ENDTAB
165 | 0
166 | TABLE
167 | 2
168 | DIMSTYLE
169 | 5
170 | A
171 | 100
172 | AcDbSymbolTable
173 | 70
174 | 1
175 | 0
176 | ENDTAB
177 | 0
178 | TABLE
179 | 2
180 | BLOCK_RECORD
181 | 5
182 | 1
183 | 100
184 | AcDbSymbolTable
185 | 70
186 | 1
187 | 0
188 | BLOCK_RECORD
189 | 5
190 | 1F
191 | 100
192 | AcDbSymbolTableRecord
193 | 100
194 | AcDbBlockTableRecord
195 | 2
196 | *MODEL_SPACE
197 | 0
198 | BLOCK_RECORD
199 | 5
200 | 1B
201 | 100
202 | AcDbSymbolTableRecord
203 | 100
204 | AcDbBlockTableRecord
205 | 2
206 | *PAPER_SPACE
207 | 0
208 | ENDTAB
209 | 0
210 | ENDSEC
211 | 0
212 | SECTION
213 | 2
214 | BLOCKS
215 | 0
216 | BLOCK
217 | 5
218 | 20
219 | 100
220 | AcDbEntity
221 | 100
222 | AcDbBlockBegin
223 | 2
224 | *MODEL_SPACE
225 | 0
226 | ENDBLK
227 | 5
228 | 21
229 | 100
230 | AcDbEntity
231 | 100
232 | AcDbBlockEnd
233 | 0
234 | BLOCK
235 | 5
236 | 1C
237 | 100
238 | AcDbEntity
239 | 100
240 | AcDbBlockBegin
241 | 2
242 | *PAPER_SPACE
243 | 0
244 | ENDBLK
245 | 5
246 | 1D
247 | 100
248 | AcDbEntity
249 | 100
250 | AcDbBlockEnd
251 | 0
252 | ENDSEC
253 | 0
254 | SECTION
255 | 2
256 | ENTITIES
257 | 0
258 | LWPOLYLINE
259 | 5
260 | 100
261 | 100
262 | AcDbEntity
263 | 8
264 | 0
265 | 100
266 | AcDbPolyline
267 | 90
268 | 6
269 | 70
270 | 1
271 | 43
272 | 0.0
273 | 10
274 | 3.4999999999999973
275 | 20
276 | 0
277 | 10
278 | -3.4999999999999969
279 | 20
280 | -5.5511151231257827e-16
281 | 42
282 | -0.41421356237309548
283 | 10
284 | -7.4999999999999982
285 | 20
286 | 4.0000000000000036
287 | 10
288 | -7.499999999999992
289 | 20
290 | 90
291 | 10
292 | 7.499999999999992
293 | 20
294 | 90
295 | 10
296 | 7.4999999999999982
297 | 20
298 | 4.0000000000000009
299 | 42
300 | -0.41421356237309537
301 | 0
302 | LINE
303 | 5
304 | 101
305 | 100
306 | AcDbEntity
307 | 8
308 | 0
309 | 100
310 | AcDbLine
311 | 10
312 | 0
313 | 20
314 | -1.75
315 | 30
316 | 0
317 | 11
318 | 0
319 | 21
320 | -22.5
321 | 31
322 | 0
323 | 0
324 | LINE
325 | 5
326 | 102
327 | 100
328 | AcDbEntity
329 | 8
330 | 0
331 | 100
332 | AcDbLine
333 | 10
334 | 1.75
335 | 20
336 | 0
337 | 30
338 | 0
339 | 11
340 | 22.5
341 | 21
342 | 0
343 | 31
344 | 0
345 | 0
346 | CIRCLE
347 | 5
348 | 103
349 | 100
350 | AcDbEntity
351 | 8
352 | 0
353 | 100
354 | AcDbCircle
355 | 10
356 | 8.8817841970012523e-15
357 | 20
358 | 85
359 | 30
360 | 0
361 | 40
362 | 1.6000000000000003
363 | 210
364 | 0
365 | 220
366 | 0
367 | 230
368 | 1
369 | 0
370 | CIRCLE
371 | 5
372 | 104
373 | 100
374 | AcDbEntity
375 | 8
376 | 0
377 | 100
378 | AcDbCircle
379 | 10
380 | 8.8817841970012523e-15
381 | 20
382 | 65
383 | 30
384 | 0
385 | 40
386 | 1.6000000000000003
387 | 210
388 | 0
389 | 220
390 | 0
391 | 230
392 | 1
393 | 0
394 | CIRCLE
395 | 5
396 | 105
397 | 100
398 | AcDbEntity
399 | 8
400 | 0
401 | 100
402 | AcDbCircle
403 | 10
404 | 8.8817841970012523e-15
405 | 20
406 | 45
407 | 30
408 | 0
409 | 40
410 | 1.6000000000000003
411 | 210
412 | 0
413 | 220
414 | 0
415 | 230
416 | 1
417 | 0
418 | CIRCLE
419 | 5
420 | 106
421 | 100
422 | AcDbEntity
423 | 8
424 | 0
425 | 100
426 | AcDbCircle
427 | 10
428 | 8.8817841970012523e-15
429 | 20
430 | 25
431 | 30
432 | 0
433 | 40
434 | 1.6000000000000003
435 | 210
436 | 0
437 | 220
438 | 0
439 | 230
440 | 1
441 | 0
442 | CIRCLE
443 | 5
444 | 107
445 | 100
446 | AcDbEntity
447 | 8
448 | 0
449 | 100
450 | AcDbCircle
451 | 10
452 | 0
453 | 20
454 | 7.0000000000000009
455 | 30
456 | 0
457 | 40
458 | 3.25
459 | 210
460 | 0
461 | 220
462 | 0
463 | 230
464 | 1
465 | 0
466 | ENDSEC
467 | 0
468 | SECTION
469 | 2
470 | OBJECTS
471 | 0
472 | DICTIONARY
473 | 5
474 | C
475 | 100
476 | AcDbDictionary
477 | 3
478 | ACAD_GROUP
479 | 350
480 | D
481 | 3
482 | ACAD_MLINESTYLE
483 | 350
484 | 17
485 | 0
486 | DICTIONARY
487 | 5
488 | D
489 | 100
490 | AcDbDictionary
491 | 0
492 | DICTIONARY
493 | 5
494 | 1A
495 | 330
496 | C
497 | 100
498 | AcDbDictionary
499 | 0
500 | DICTIONARY
501 | 5
502 | 17
503 | 100
504 | AcDbDictionary
505 | 0
506 | ENDSEC
507 | 0
508 | EOF
509 |
--------------------------------------------------------------------------------
/Parts/Aluminum_Parts/Alu_Part_V4_sketch.JPG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/KaeptnBalu/Arduino_Spot_Welder_V4/40e2d8a17df735c2a2b23d6d951538f4eaea7b9a/Parts/Aluminum_Parts/Alu_Part_V4_sketch.JPG
--------------------------------------------------------------------------------
/Parts/Aluminum_Parts/Alu_Parts_V4.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/KaeptnBalu/Arduino_Spot_Welder_V4/40e2d8a17df735c2a2b23d6d951538f4eaea7b9a/Parts/Aluminum_Parts/Alu_Parts_V4.pdf
--------------------------------------------------------------------------------
/Parts/Aluminum_Parts/README.md:
--------------------------------------------------------------------------------
1 |
2 | Use the PDF template to cut the aluminum pieces from 4mm material.
3 | The parts can be mounted to the pcb with M3x8 screws and M3 nuts.
4 |
5 | You can also take a look at the dxf drawing to manufacture the aluminum parts with a cnc or something else.
6 |
--------------------------------------------------------------------------------
/Parts/BOM_Arduino_Spot_Welder_V4.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/KaeptnBalu/Arduino_Spot_Welder_V4/40e2d8a17df735c2a2b23d6d951538f4eaea7b9a/Parts/BOM_Arduino_Spot_Welder_V4.xlsx
--------------------------------------------------------------------------------
/Parts/Mouser.com_Shopping_Cart_V4/README.md:
--------------------------------------------------------------------------------
1 | https://www.mouser.com/ProjectManager/ProjectDetail.aspx?AccessID=6572a2786f
2 |
--------------------------------------------------------------------------------
/Parts/README.md:
--------------------------------------------------------------------------------
1 | These are the parts you need to buy for building the Spot Welder V4 from scratch. With the Mouser.com Shop Link you can directly ad all electronic component parts to your shopping cart.
2 |
3 | Not included in the Mouser shopping cart link:
4 |
5 | 1x Arduino Nano
6 | 1x OLED Display
7 |
8 | You can get ready made welding cables, aluminum parts and pcb sets at www.malectrics.eu if you dont want to make them yourself.
9 |
10 | # BOM (Bill of materials) - electronic components
11 |
12 |
13 | |Quantity |PCB Reference |Name |Mouser.com Part Number |
14 | |---------|----------------------|---------------------------------|--------------------------|
15 | |6 |IRFS7430TRL7PP |Mosfet IRFS7430TRL7PP 40V 522A |942-IRFS7430TRL7PP |
16 | |1 |MCP1407 |Mosfet Driver MCP1407-E/SN |579-MCP1407-E/SN |
17 | |1 |Bourns_PEC11L |Rotary Encoder |652-PEC11L4220FS0015 |
18 | |2 |U1 Arduino Nano |1x15 Pol Female Pin Header |992-15FX1-254MM |
19 | |1 |Mosfet_CTRL2 |1x8 Pol Female Pin Header |437-8018700810001101 |
20 | |2 |P6,P7 |1x2 Pol Female Pin Header |437-8018700210001101 |
21 | |1 |OLED_Display |1x4 Pol Female Pin Header |517-974-01-04-RK |
22 | |1 |Mosfet_CTRL1, P4, P5 |1x16 Pol Male Pin Header |538-22-28-4160 |
23 | |1 |Foot_Switch1 |PCB connector 2pin |710-61900211121 |
24 | |1 |P1 |Terminal Block |710-691214110002 |
25 | |1 |D1 |SMD-Schottky 60V 1A |750-CDBA160-G |
26 | |1 |Zener D3 |SMD Zener diode 4,3V 0,5W |78-MMSZ4687-E3-08 |
27 | |2 |D2,D4 |Schottky BAV99 |78-BAV99-E3-08 |
28 | |4 |TVS3,TVS4,TVS5 |TVS Diode 15,6V 7kW |576-SLD8S14A |
29 | |1 |TVS1,TVS2 |TVS Diode 14,4V 400W |621-SMAJ13A-13-F |
30 | |1 |C2 |film capacitor 1 µF RM5 |505-MKS2C041001FMSSD |
31 | |2 |C3,C4 |electrolytic capacitor 470µF 25V |647-UWT1E471MNL1S |
32 | |4 |C1, C5, C6, C7 |ceramic capacitor 0,01µF SMD |80-C0805C103J5R |
33 | |1 |Q1 |Bipolartransistor 200mA |621-MMBT3904-F |
34 | |1 |SP1 |Piezzo Speaker |810-PS1240P02BT |
35 | |1 |NTC1 |NTC Thermistor |81-NCP21XV103J03RA |
36 | |10 |R1;R2,R3,R4,R5,R7,R11 |Resistor 0805 SMD 10 kOhm |603-RC0805FR-0710KL |
37 | |10 |R6,R8,R9 |Resistor 0805 SMD 1 kOhm |603-RC0805FR-071KL |
38 | |10 |R10 |Resistor 0805 SMD 620 Ohm |603-RC0805FR-07620RL |
39 | |10 |R12 |Resistor 0805 SMD 3,3 kOhm |603-RC0805FR-133K3L |
40 | |10 |R13 … R18 |Resistor 1206 SMD 30 Ohm |603-RC1206FR-0730RL |
41 |
42 |
43 | ## Other Parts - Mechanical Parts - Optional Parts
44 |
45 | | Quantity | Name | Description | Link / Where to buy |
46 | |----------|----------------|------------------------------|----------------------------------|
47 | | 1 | Arduino Nano | | [Banggood](https://ban.ggood.vip/15P6G)|
48 | | 1 | OLED Diplay 0,96" 128x64 | take care of correct pinout (GND - VCC - SCL - SDA) | [Banggood](https://ban.ggood.vip/15P6J) |
49 | | 1 | Alu 90x15x4mm | see alu_template.pdf | local hardware Store or https://malectrics.eu/ |
50 | | 8 | M3x8 screw + nuts | for Alu Parts assembly | local hardware store |
51 | | 2 | M3x20 screw | to screw pcbs together | local hardware store |
52 | | 6 | M3 Nylon Nuts | to screw pcbs together | Ebay or Aliexpress |
53 | | 1 | 1m 10 mm² - 16mm² flexible silicone cable | for 2pcs 0,5m welding cables | Ebay or Aliexpress |
54 | | 1 | 0,1m 10mm² - 16mm² solid copper wire | for the welding tips | local hardware store or welding tips from https://malectrics.eu/ |
55 | | 2 | cable shoe for 10 mm² or 16mm2 | for welding cable | local hardware store or https://malectrics.eu/ |
56 | | 2 | cable connector for 10 mm² or 16mm2 | welding tip connection to the welding cables | local hardware store or https://malectrics.eu/ |
57 | | 1 | battery terminals | for car battery | local hardware store or https://malectrics.eu/ |
58 | | 1 | PCB Set | Arduino + Mosfet PCB | https://malectrics.eu/ |
59 | | 2 | nylon spacers M2 x 12mm + M2x5 screws for OLED display | OPTIONAL | Ebay or Aliexpress |
60 | | 1 | Foot Switch | OPTIONAL | https://malectrics.eu/ |
61 | | 1 | 3d printed case | OPTIONAL | https://malectrics.eu/ or [Github](https://github.com/KaeptnBalu/Arduino_Spot_Welder_V4/tree/main/Parts/Spot_Welder_V4_Case) |
62 | | 1 | 300A Fuse | OPTIONAL | https://malectrics.eu/
63 |
--------------------------------------------------------------------------------
/Parts/Spot_Welder_V4_Case/Arduino_Spot_Welder_V4_Case.f3d:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/KaeptnBalu/Arduino_Spot_Welder_V4/40e2d8a17df735c2a2b23d6d951538f4eaea7b9a/Parts/Spot_Welder_V4_Case/Arduino_Spot_Welder_V4_Case.f3d
--------------------------------------------------------------------------------
/Parts/Spot_Welder_V4_Case/Arduino_Spot_Welder_V4_Case_3d.JPG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/KaeptnBalu/Arduino_Spot_Welder_V4/40e2d8a17df735c2a2b23d6d951538f4eaea7b9a/Parts/Spot_Welder_V4_Case/Arduino_Spot_Welder_V4_Case_3d.JPG
--------------------------------------------------------------------------------
/Parts/Spot_Welder_V4_Case/README.md:
--------------------------------------------------------------------------------
1 | These are the CAD files for the case. You can use these if you want to modify the case for your needs. The case was designed in Autodesk Fusion 360.
2 | Ready printed case with acessories can be bought here: https://malectrics.eu/product/arduino-spot-welder-v4-case-kit-copy/
3 |
4 | Additional hardware you need to mount the welder and the ANL 300A fuse in the case:
5 |
6 | - 30x30x10mm 12V fan
7 | - 4pcs M3x16 screws
8 | - 2pcs M5x10mm screws
9 | - 2pcs M5 nuts
10 | - 2pcs M5 washers
11 | - 2pcs M5 brass washers
12 |
--------------------------------------------------------------------------------
/Parts/Spot_Welder_V4_Case/STL_3D_Printing/Arduino_Spot_Welder_V4_Case_Bottom.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/KaeptnBalu/Arduino_Spot_Welder_V4/40e2d8a17df735c2a2b23d6d951538f4eaea7b9a/Parts/Spot_Welder_V4_Case/STL_3D_Printing/Arduino_Spot_Welder_V4_Case_Bottom.stl
--------------------------------------------------------------------------------
/Parts/Spot_Welder_V4_Case/STL_3D_Printing/Arduino_Spot_Welder_V4_Case_Top.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/KaeptnBalu/Arduino_Spot_Welder_V4/40e2d8a17df735c2a2b23d6d951538f4eaea7b9a/Parts/Spot_Welder_V4_Case/STL_3D_Printing/Arduino_Spot_Welder_V4_Case_Top.stl
--------------------------------------------------------------------------------
/Parts/Spot_Welder_V4_Case/STL_3D_Printing/README.md:
--------------------------------------------------------------------------------
1 | These are the STL files of the case for 3d printing.
2 |
3 | Printing Parameters I used:
4 | - PLA material
5 | - no support
6 | - 0.2mm layer height
7 |
--------------------------------------------------------------------------------
/Parts/Spot_Welder_V4_Case/STL_3D_Printing/Rotary_Knob.stl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/KaeptnBalu/Arduino_Spot_Welder_V4/40e2d8a17df735c2a2b23d6d951538f4eaea7b9a/Parts/Spot_Welder_V4_Case/STL_3D_Printing/Rotary_Knob.stl
--------------------------------------------------------------------------------
/Parts/Spot_Welder_V4_Case/case_kit_v4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/KaeptnBalu/Arduino_Spot_Welder_V4/40e2d8a17df735c2a2b23d6d951538f4eaea7b9a/Parts/Spot_Welder_V4_Case/case_kit_v4.jpg
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Arduino_Spot_Welder_V4
2 | This is the latest V4 of the Arduino Spot Welder. The previous V3 can be found here https://github.com/KaeptnBalu/Arduino_Spot_Welder_V3
3 |
4 | An Arduino based Spot Welder for battery welding
5 |
6 | Build Guide: Car Bundle: https://malectrics.eu/v4-car-battery-bundle-assembly-instructions/
7 | Lipo Bundle:https://malectrics.eu/v4-lipo-battery-bundle-assembly-instructions/
8 | Introduction Video: coming soon (Video for previuos V3 https://www.youtube.com/watch?v=CNmvx2JSCvA)
9 | Project Homepage: https://malectrics.eu/
10 |
11 | Improvements in V4:
12 |
13 | - Buzzer: With the buzzer alarms will not only be displayed on the screen but also be audible for the user. This makes it much easier to notice an alarm while working with the welder.
14 | - Temperature Sensor: The temperature sensor will trigger an alarm and disable welding when temperature reaches 65°C to protect the welder from overheating.
15 | - additional 470µF Capacitor: With now two 470µF capacitors it is possible to use weld times up to 100 – 150ms without the risk of the Arduino Nano rebooting. The reboot could happen in V3 at very long weld times because the voltage at the Arduino Nano dropped to low dring the weld.
16 | - SMD Mosfet Driver: the mosfet driver chip has been changed from the through hole version that was plugged in a socket to a SMD version that is directly soldered to the pcb. The SMD version eliminates eventual contact problems that could happen with the through hole version when it was not plugged in the socket correctly.
17 | - SMD Mosfets: The mosfets have been changed from through hole version to SMD. That will eliminate the problem of failing mosfet legs in V3 on very high currents.
18 | - new aluminum parts: there are still two aluminum parts used on the mosfet board but the parts are just straight and both the same size. This makes producing or modding them for DIY users much easier.
19 | - Stronger Protection Diodes: The protection diodes on the bottom of the mosfet board have been changed to a much stronger version. They are rated for the same current as the ones in V3 but can take much higher short peak amps and have better heat dissipation because they are phisically bigger.
20 |
21 |
22 |
23 | This Spot Welder can be used to weld 18650 batteries. It uses a 12V car battery as welding current supply. Typically one 60Ah 600A battery delivers enough current to get good welds with 0.15mm - 0.2mm nickel strips. For thicker nickel strips maybe you will need bigger battery or two in paralell. (Maximum 800A total)
24 |
25 | The Welder generates a double pulse, where the first one is 12% of the time of the second one by default. Pulse time of the main pulse is adjustable by the rotary encoder and displayed on the screen in ms so you can exactly adjust the time. Its adjustable from 1 … 100 mS by default. (adjustable up to 500ms in the system menu)
26 |
27 | If you want to download the project click on "clone or download" on this page. Downloading single files sometimes seems to cause some files to be corrupted while downloading.
28 |
29 | You can get parts to build your own Spot Welder or prebuilt kits at https://malectrics.eu/
30 |
--------------------------------------------------------------------------------