-
Notifications
You must be signed in to change notification settings - Fork 11
/
ELL-i-Passives.lbr
1648 lines (1589 loc) · 80.9 KB
/
ELL-i-Passives.lbr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE eagle SYSTEM "eagle.dtd">
<eagle version="7.1.0">
<drawing>
<settings>
<setting alwaysvectorfont="no"/>
<setting verticaltext="up"/>
</settings>
<grid distance="0.05" unitdist="inch" unit="inch" style="lines" multiple="1" display="yes" altdistance="0.01" altunitdist="inch" altunit="inch"/>
<layers>
<layer number="1" name="Top" color="4" fill="1" visible="yes" active="yes"/>
<layer number="16" name="Bottom" color="1" fill="1" visible="yes" active="yes"/>
<layer number="17" name="Pads" color="2" fill="1" visible="yes" active="yes"/>
<layer number="18" name="Vias" color="2" fill="1" visible="yes" active="yes"/>
<layer number="19" name="Unrouted" color="6" fill="1" visible="yes" active="yes"/>
<layer number="20" name="Dimension" color="15" fill="1" visible="yes" active="yes"/>
<layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="yes"/>
<layer number="22" name="bPlace" color="7" fill="1" visible="yes" active="yes"/>
<layer number="23" name="tOrigins" color="15" fill="1" visible="yes" active="yes"/>
<layer number="24" name="bOrigins" color="15" fill="1" visible="yes" active="yes"/>
<layer number="25" name="tNames" color="7" fill="1" visible="yes" active="yes"/>
<layer number="26" name="bNames" color="7" fill="1" visible="yes" active="yes"/>
<layer number="27" name="tValues" color="7" fill="1" visible="yes" active="yes"/>
<layer number="28" name="bValues" color="7" fill="1" visible="yes" active="yes"/>
<layer number="29" name="tStop" color="7" fill="3" visible="yes" active="yes"/>
<layer number="30" name="bStop" color="7" fill="6" visible="yes" active="yes"/>
<layer number="31" name="tCream" color="7" fill="4" visible="yes" active="yes"/>
<layer number="32" name="bCream" color="7" fill="5" visible="yes" active="yes"/>
<layer number="33" name="tFinish" color="6" fill="3" visible="yes" active="yes"/>
<layer number="34" name="bFinish" color="6" fill="6" visible="yes" active="yes"/>
<layer number="35" name="tGlue" color="7" fill="4" visible="yes" active="yes"/>
<layer number="36" name="bGlue" color="7" fill="5" visible="yes" active="yes"/>
<layer number="37" name="tTest" color="7" fill="1" visible="yes" active="yes"/>
<layer number="38" name="bTest" color="7" fill="1" visible="yes" active="yes"/>
<layer number="39" name="tKeepout" color="4" fill="11" visible="yes" active="yes"/>
<layer number="40" name="bKeepout" color="1" fill="11" visible="yes" active="yes"/>
<layer number="41" name="tRestrict" color="4" fill="10" visible="yes" active="yes"/>
<layer number="42" name="bRestrict" color="1" fill="10" visible="yes" active="yes"/>
<layer number="43" name="vRestrict" color="2" fill="10" visible="yes" active="yes"/>
<layer number="44" name="Drills" color="7" fill="1" visible="yes" active="yes"/>
<layer number="45" name="Holes" color="7" fill="1" visible="yes" active="yes"/>
<layer number="46" name="Milling" color="3" fill="1" visible="yes" active="yes"/>
<layer number="47" name="Measures" color="7" fill="1" visible="yes" active="yes"/>
<layer number="48" name="Document" color="7" fill="1" visible="yes" active="yes"/>
<layer number="49" name="Reference" color="7" fill="1" visible="yes" active="yes"/>
<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/>
<layer number="51" name="tDocu" color="7" fill="1" visible="yes" active="yes"/>
<layer number="52" name="bDocu" color="7" fill="1" visible="yes" active="yes"/>
<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/>
<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/>
<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/>
<layer number="57" name="tCopper" color="7" fill="1" visible="no" active="no"/>
<layer number="58" name="bCopper" color="7" fill="1" visible="no" active="no"/>
<layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
<layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
<layer number="93" name="Pins" color="2" fill="1" visible="yes" active="yes"/>
<layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
<layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
<layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
<layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
<layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/>
<layer number="101" name="Patch_Top" color="12" fill="4" visible="yes" active="yes"/>
<layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/>
<layer number="103" name="tMap" color="7" fill="1" visible="yes" active="yes"/>
<layer number="104" name="Name" color="16" fill="1" visible="yes" active="yes"/>
<layer number="105" name="tPlate" color="7" fill="1" visible="yes" active="yes"/>
<layer number="106" name="bPlate" color="7" fill="1" visible="yes" active="yes"/>
<layer number="107" name="Crop" color="7" fill="1" visible="yes" active="yes"/>
<layer number="108" name="fp8" color="7" fill="1" visible="yes" active="yes"/>
<layer number="109" name="fp9" color="7" fill="1" visible="yes" active="yes"/>
<layer number="110" name="fp0" color="7" fill="1" visible="yes" active="yes"/>
<layer number="111" name="111" color="7" fill="1" visible="yes" active="yes"/>
<layer number="112" name="tSilk" color="7" fill="1" visible="yes" active="yes"/>
<layer number="116" name="Patch_BOT" color="9" fill="4" visible="yes" active="yes"/>
<layer number="118" name="Rect_Pads" color="7" fill="1" visible="yes" active="yes"/>
<layer number="121" name="_tsilk" color="7" fill="1" visible="yes" active="yes"/>
<layer number="122" name="_bsilk" color="7" fill="1" visible="yes" active="yes"/>
<layer number="123" name="tTestmark" color="7" fill="1" visible="yes" active="yes"/>
<layer number="124" name="bTestmark" color="7" fill="1" visible="yes" active="yes"/>
<layer number="125" name="_tNames" color="7" fill="1" visible="yes" active="yes"/>
<layer number="126" name="_bNames" color="7" fill="1" visible="yes" active="yes"/>
<layer number="127" name="_tValues" color="7" fill="1" visible="yes" active="yes"/>
<layer number="128" name="_bValues" color="7" fill="1" visible="yes" active="yes"/>
<layer number="131" name="tAdjust" color="7" fill="1" visible="yes" active="yes"/>
<layer number="132" name="bAdjust" color="7" fill="1" visible="yes" active="yes"/>
<layer number="144" name="Drill_legend" color="7" fill="1" visible="yes" active="yes"/>
<layer number="151" name="HeatSink" color="7" fill="1" visible="yes" active="yes"/>
<layer number="152" name="_bDocu" color="7" fill="1" visible="yes" active="yes"/>
<layer number="199" name="Contour" color="7" fill="1" visible="yes" active="yes"/>
<layer number="200" name="200bmp" color="1" fill="10" visible="yes" active="yes"/>
<layer number="201" name="201bmp" color="2" fill="10" visible="yes" active="yes"/>
<layer number="202" name="202bmp" color="3" fill="10" visible="yes" active="yes"/>
<layer number="203" name="203bmp" color="4" fill="10" visible="yes" active="yes"/>
<layer number="204" name="204bmp" color="5" fill="10" visible="yes" active="yes"/>
<layer number="205" name="205bmp" color="6" fill="10" visible="yes" active="yes"/>
<layer number="206" name="206bmp" color="7" fill="10" visible="yes" active="yes"/>
<layer number="207" name="207bmp" color="8" fill="10" visible="yes" active="yes"/>
<layer number="208" name="208bmp" color="9" fill="10" visible="yes" active="yes"/>
<layer number="209" name="209bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="210" name="210bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="211" name="211bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="212" name="212bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="213" name="213bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="214" name="214bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="215" name="215bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="216" name="216bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="217" name="217bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="218" name="218bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="219" name="219bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="220" name="220bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="221" name="connection" color="7" fill="1" visible="yes" active="yes"/>
<layer number="222" name="222bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="223" name="223bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="224" name="224bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="231" name="Eagle3D_PG1" color="14" fill="1" visible="yes" active="yes"/>
<layer number="232" name="Eagle3D_PG2" color="14" fill="2" visible="yes" active="yes"/>
<layer number="233" name="Eagle3D_PG3" color="14" fill="4" visible="yes" active="yes"/>
<layer number="248" name="Housing" color="7" fill="1" visible="yes" active="yes"/>
<layer number="249" name="Edge" color="7" fill="1" visible="yes" active="yes"/>
<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/>
<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/>
<layer number="253" name="Extra" color="7" fill="1" visible="yes" active="yes"/>
<layer number="254" name="cooling" color="7" fill="1" visible="yes" active="yes"/>
<layer number="255" name="bExtra" color="7" fill="1" visible="yes" active="yes"/>
</layers>
<library>
<description><h3>Passives -- ELL-i open source co-op Eagle libraries</h3>
<p>In this library you'll find <b>resistors, capasitors</b>, and other passive components that are used in the ELL-i boards.</p>
<p>For resistors, we prefer to use European IEC symbols and slightly different footprints than the SparkFun resistors. However, in general we prefer to use the components from the <a href="https://github.com/Ell-i/SparkFun-Eagle-Libraries">SparkFun Public Eagle PCB Footprints</a>, as they are available from <a href="https://github.com/">GitHub</a>. Whenever possible, we also prefer to push our components to the SparkFun libraries. However, this is not always possible, and therefore we have our own libraries that for the most part contain components that cannot be found in the SparkFun libraries.</p></description>
<packages>
<package name="R0402">
<description><h3>SMD resistor in 0402 package</h3>
<p>A small surface mount resistor, barely big enough to solder with a microscope. If you plan to solder your PCB by hand, consider using a bigger package.</p>
<p>Originally prepared by Turo. Not reviewed.</p></description>
<wire x1="-0.245" y1="0.219" x2="0.245" y2="0.219" width="0.06" layer="51"/>
<wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.06" layer="51"/>
<smd name="1" x="-0.475" y="0" dx="0.45" dy="0.6" layer="1"/>
<smd name="2" x="0.475" y="0" dx="0.45" dy="0.6" layer="1"/>
<text x="-0.935" y="0.362" size="0.4064" layer="25">>NAME</text>
<text x="-0.935" y="-0.705" size="0.4064" layer="27">>VALUE</text>
<rectangle x1="-0.5" y1="-0.25" x2="-0.25" y2="0.25" layer="51"/>
<rectangle x1="0.25" y1="-0.25" x2="0.5" y2="0.25" layer="51"/>
<rectangle x1="-0.2" y1="-0.3" x2="0.2" y2="0.3" layer="41"/>
</package>
<package name="R0603">
<description><h3>SMD resistor in 0603 package</h3>
<p>A small surface mount resistor, just big enough to solder with a microscope. If you plan to solder your PCB by hand, this is the smallest resistor package you should use.</p>
<p>Originally prepared by Turo. Not reviewed.</p></description>
<smd name="1" x="-0.8" y="0" dx="0.6" dy="0.8" layer="1"/>
<smd name="2" x="0.8" y="0" dx="0.6" dy="0.8" layer="1"/>
<wire x1="-0.8" y1="0.4" x2="0.8" y2="0.4" width="0.127" layer="21"/>
<wire x1="0.8" y1="0.4" x2="0.8" y2="-0.4" width="0.127" layer="21"/>
<wire x1="0.8" y1="-0.4" x2="-0.8" y2="-0.4" width="0.127" layer="21"/>
<wire x1="-0.8" y1="-0.4" x2="-0.8" y2="0.4" width="0.127" layer="21"/>
<text x="-1.1" y="0.5" size="0.4064" layer="25">>NAME</text>
<text x="-1.1" y="-0.9" size="0.4064" layer="27">>VALUE</text>
</package>
<package name="R0805">
<description><h3>SMD resistor in 0804 package</h3>
<p>A medium sized surface mount resistor, hand-solderable without a microscope.</p>
<p>Originally prepared by Turo. Not reviewed.</p></description>
<wire x1="-1.573" y1="0.783" x2="1.573" y2="0.783" width="0.0508" layer="39"/>
<wire x1="1.573" y1="-0.783" x2="-1.573" y2="-0.783" width="0.0508" layer="39"/>
<wire x1="-1.573" y1="-0.783" x2="-1.573" y2="0.783" width="0.0508" layer="39"/>
<wire x1="-0.581" y1="0.56" x2="0.581" y2="0.56" width="0.1016" layer="51"/>
<wire x1="-0.556" y1="-0.56" x2="0.581" y2="-0.56" width="0.1016" layer="51"/>
<wire x1="1.573" y1="0.783" x2="1.573" y2="-0.783" width="0.0508" layer="39"/>
<smd name="1" x="-0.95" y="0" dx="0.9" dy="1.1" layer="1"/>
<smd name="2" x="0.95" y="0" dx="0.9" dy="1.1" layer="1"/>
<text x="-1.489" y="0.816" size="0.8128" layer="25" font="vector" ratio="15">>NAME</text>
<text x="-1.489" y="-1.486" size="0.8128" layer="27" font="vector" ratio="15">>VALUE</text>
<rectangle x1="-1.05" y1="-0.625" x2="-0.5" y2="0.625" layer="51"/>
<polygon width="0.01" layer="35">
<vertex x="-0.2" y="0.45"/>
<vertex x="-0.2" y="-0.45"/>
<vertex x="0.2" y="-0.45"/>
<vertex x="0.2" y="0.45"/>
</polygon>
<rectangle x1="0.5" y1="-0.625" x2="1.05" y2="0.625" layer="51"/>
<wire x1="-1.573" y1="0.783" x2="1.573" y2="0.783" width="0.0508" layer="39"/>
</package>
<package name="R1206">
<description><h3>SMD resistor in 1206 package</h3>
<p>A large surface mount resistor. Use these if you need a high power (1/2 W) resistor. Easy to solder by hand.</p>
<p>Originally copied from SparkFun-Passives.lbr, under SparkFun Creative Commons license.</p>
<p>Not reviewed.</p></description>
<wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/>
<wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/>
<smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
<smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
<rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/>
<rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/>
<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
<wire x1="1.573" y1="-0.783" x2="-1.573" y2="-0.783" width="0.0508" layer="39"/>
<wire x1="-1.573" y1="-0.783" x2="-1.573" y2="0.783" width="0.0508" layer="39"/>
<text x="-1.989" y="1.316" size="0.8128" layer="25" font="vector" ratio="15">>NAME</text>
<text x="-1.989" y="-1.986" size="0.8128" layer="27" font="vector" ratio="15">>VALUE</text>
<wire x1="-1.573" y1="0.783" x2="1.573" y2="0.783" width="0.0508" layer="39"/>
</package>
<package name="R2512">
<description><h3>SMD resistor in 2512 package</h3>
<p>A very large surface mount resistor.</p>
<p>Originally copied from SparkFun-Passives.lbr, under SparkFun Creative Commons license.</p>
<p>Not reviewed.</p></description>
<wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="51"/>
<wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="51"/>
<smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
<smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
<text x="-2.54" y="1.905" size="1.27" layer="25">>NAME</text>
<text x="-2.54" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="51"/>
<rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="51"/>
</package>
<package name="C0402">
<description><h3>SMD capacitor in 0402 package</h3>
<p>A small surface mount ceramic capacitor, barely big enough to solder with a microscope. If you plan to solder your PCB by hand, consider using a bigger package.</p>
<p>Originally prepared by Turo. Not reviewed.</p></description>
<wire x1="-0.245" y1="0.219" x2="0.245" y2="0.219" width="0.06" layer="51"/>
<wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.06" layer="51"/>
<smd name="1" x="-0.475" y="0" dx="0.45" dy="0.6" layer="1"/>
<smd name="2" x="0.475" y="0" dx="0.45" dy="0.6" layer="1"/>
<text x="-0.935" y="0.362" size="0.4064" layer="25">>NAME</text>
<text x="-0.935" y="-0.705" size="0.4064" layer="27">>VALUE</text>
<rectangle x1="-0.5" y1="-0.25" x2="-0.25" y2="0.25" layer="51"/>
<rectangle x1="0.25" y1="-0.25" x2="0.5" y2="0.25" layer="51"/>
<rectangle x1="-0.2" y1="-0.3" x2="0.2" y2="0.3" layer="41"/>
</package>
<package name="C0603">
<description><h3>SMD capacitor in 0603 package</h3>
<p>A small surface mount ceramic capacitor, just big enough to solder with a microscope. If you plan to solder your PCB by hand, this is the smallest capacitor package you should use.</p>
<p>Originally prepared by Turo. Not reviewed.</p></description>
<smd name="1" x="-0.8" y="0" dx="0.6" dy="0.8" layer="1"/>
<smd name="2" x="0.8" y="0" dx="0.6" dy="0.8" layer="1"/>
<wire x1="-0.8" y1="0.4" x2="0.8" y2="0.4" width="0.127" layer="21"/>
<wire x1="0.8" y1="0.4" x2="0.8" y2="-0.4" width="0.127" layer="21"/>
<wire x1="0.8" y1="-0.4" x2="-0.8" y2="-0.4" width="0.127" layer="21"/>
<wire x1="-0.8" y1="-0.4" x2="-0.8" y2="0.4" width="0.127" layer="21"/>
<text x="-1.1" y="0.5" size="0.4064" layer="25">>NAME</text>
<text x="-1.1" y="-0.9" size="0.4064" layer="27">>VALUE</text>
</package>
<package name="C0805">
<description><h3>SMD capacitor in 0804 package</h3>
<p>A medium sized surface mount ceramic capacitor, hand-solderable without a microscope.</p>
<p>Originally prepared by Turo. Not reviewed.</p></description>
<wire x1="-1.573" y1="0.783" x2="1.573" y2="0.783" width="0.0508" layer="39"/>
<wire x1="1.573" y1="-0.783" x2="-1.573" y2="-0.783" width="0.0508" layer="39"/>
<wire x1="-1.573" y1="-0.783" x2="-1.573" y2="0.783" width="0.0508" layer="39"/>
<wire x1="-0.581" y1="0.56" x2="0.581" y2="0.56" width="0.1016" layer="51"/>
<wire x1="-0.556" y1="-0.56" x2="0.581" y2="-0.56" width="0.1016" layer="51"/>
<wire x1="1.573" y1="0.783" x2="1.573" y2="-0.783" width="0.0508" layer="39"/>
<smd name="1" x="-0.95" y="0" dx="0.9" dy="1.1" layer="1"/>
<smd name="2" x="0.95" y="0" dx="0.9" dy="1.1" layer="1"/>
<text x="-1.489" y="0.816" size="0.8128" layer="25" font="vector" ratio="15">>NAME</text>
<text x="-1.489" y="-1.486" size="0.8128" layer="27" font="vector" ratio="15">>VALUE</text>
<rectangle x1="-1.05" y1="-0.625" x2="-0.5" y2="0.625" layer="51"/>
<polygon width="0.01" layer="35">
<vertex x="-0.2" y="0.45"/>
<vertex x="-0.2" y="-0.45"/>
<vertex x="0.2" y="-0.45"/>
<vertex x="0.2" y="0.45"/>
</polygon>
<rectangle x1="0.5" y1="-0.625" x2="1.05" y2="0.625" layer="51"/>
</package>
<package name="CT3216">
<description><h3>Tantalum capacitor in an EIA3216 package (CASE A)</h3>
<p>Eagle package Copyright (c) SparkFun under Creative Commons v3.0 Share Alike license.</p>
<p>Also Vishay Tantalum Capacitor case <b>A</b>.</p></description>
<wire x1="-1" y1="-1.2" x2="-2.5" y2="-1.2" width="0.2032" layer="21"/>
<wire x1="-2.5" y1="-1.2" x2="-2.5" y2="1.2" width="0.2032" layer="21"/>
<wire x1="-2.5" y1="1.2" x2="-1" y2="1.2" width="0.2032" layer="21"/>
<wire x1="1" y1="-1.2" x2="2.1" y2="-1.2" width="0.2032" layer="21"/>
<wire x1="2.1" y1="-1.2" x2="2.5" y2="-0.8" width="0.2032" layer="21"/>
<wire x1="2.5" y1="-0.8" x2="2.5" y2="0.8" width="0.2032" layer="21"/>
<wire x1="2.5" y1="0.8" x2="2.1" y2="1.2" width="0.2032" layer="21"/>
<wire x1="2.1" y1="1.2" x2="1" y2="1.2" width="0.2032" layer="21"/>
<wire x1="0.381" y1="1.016" x2="0.381" y2="-1.016" width="0.127" layer="21"/>
<smd name="C" x="-1.4" y="0" dx="1.6" dy="1.4" layer="1" rot="R90"/>
<smd name="A" x="1.4" y="0" dx="1.6" dy="1.4" layer="1" rot="R90"/>
<text x="-2.54" y="1.381" size="0.4064" layer="25">>NAME</text>
<text x="0.408" y="1.332" size="0.4064" layer="27">>VALUE</text>
</package>
<package name="CT3528">
<description><h3>Tantalum capacitor in an EIA3528 package (CASE B)</h3>
<p>Eagle package Copyright (c) SparkFun under Creative Commons v3.0 Share Alike license.</p>
<p>Also Vishay Tantalum Capacitor case <b>B</b>.</p></description>
<wire x1="-0.9" y1="-1.6" x2="-2.6" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="-2.6" y1="-1.6" x2="-2.6" y2="1.55" width="0.2032" layer="21"/>
<wire x1="-2.6" y1="1.55" x2="-0.9" y2="1.55" width="0.2032" layer="21"/>
<wire x1="1" y1="-1.55" x2="2.2" y2="-1.55" width="0.2032" layer="21"/>
<wire x1="2.2" y1="-1.55" x2="2.6" y2="-1.2" width="0.2032" layer="21"/>
<wire x1="2.6" y1="-1.2" x2="2.6" y2="1.25" width="0.2032" layer="21"/>
<wire x1="2.6" y1="1.25" x2="2.2" y2="1.55" width="0.2032" layer="21"/>
<wire x1="2.2" y1="1.55" x2="1" y2="1.55" width="0.2032" layer="21"/>
<wire x1="2.2" y1="1.55" x2="1" y2="1.55" width="0.2032" layer="21"/>
<wire x1="0.609" y1="1.311" x2="0.609" y2="-1.286" width="0.2032" layer="21" style="longdash"/>
<smd name="C" x="-1.65" y="0" dx="2.5" dy="1.2" layer="1" rot="R90"/>
<smd name="A" x="1.65" y="0" dx="2.5" dy="1.2" layer="1" rot="R90"/>
<text x="-2.27" y="-1.27" size="1.27" layer="25" rot="R90">>NAME</text>
<text x="3.24" y="-1.37" size="1.27" layer="27" rot="R90">>VALUE</text>
</package>
<package name="CPOL-RADIAL-100UF-25V">
<description><h3>Round (electrolytic) capacitor with 0.1" (2.54 mm) lead spacing</h3>
<p>Copied from SparkFun-Passives.lbr under SparkFun Creative Commons license. Note that the lead spacing in this footprint is 2.54 mm while most capacitors of this size have lead spacing of 2.00 mm. If you are hand-soldering, this is not a problem, but you should not use this pattern for machine pick-and-place.</p>
<p>Appriximately 7 mm diameter</p>
<p><b>NOTE!</b> At the moment there is no 3D model available for this package.</p></description>
<wire x1="-0.635" y1="1.27" x2="-1.905" y2="1.27" width="0.2032" layer="21"/>
<circle x="0" y="0" radius="3.25" width="0.2032" layer="21"/>
<pad name="2" x="-1.27" y="0" drill="0.7" diameter="1.651"/>
<pad name="1" x="1.27" y="0" drill="0.7" diameter="1.651" shape="square"/>
<text x="-1.905" y="-4.318" size="0.8128" layer="27">>Value</text>
<text x="-0.762" y="1.651" size="0.4064" layer="25">>Name</text>
</package>
<package name="CPOL-RADIAL-10UF-25V">
<description><h3>Round (electrolytic) capacitor with 0.1" (2.54 mm) lead spacing</h3>
<p>Copied from SparkFun-Passives.lbr under SparkFun Creative Commons license. Note that the lead spacing in this footprint is 2.54 mm while most capacitors of this size have lead spacing of 2.50 mm. This small difference works just fine. <a href="https://www.sparkfun.com/products/96">SparkFun Product COM-00096</a>.</p>
<p>Diameter 6.30 mm, height 11.20 mm.</p>
<p><b>NOTE!</b> At the moment there is no 3D model available for this package.</p></description>
<wire x1="-0.762" y1="1.397" x2="-1.778" y2="1.397" width="0.2032" layer="21"/>
<circle x="0" y="0" radius="2.5" width="0.2032" layer="21"/>
<pad name="1" x="1.27" y="0" drill="0.7" diameter="1.651" shape="square"/>
<pad name="2" x="-1.27" y="0" drill="0.7" diameter="1.651"/>
<text x="-0.889" y="1.524" size="0.4064" layer="25">>Name</text>
<text x="-1.905" y="-3.683" size="0.8128" layer="27">>Value</text>
</package>
<package name="CT7343">
<description><h3>Tantalum capacitor in an EIA7343 package</h3>
<p>Eagle package Copyright (c) SparkFun under Creative Commons v3.0 Share Alike license.</p>
<p>Also Vishay Tantalum Capacitor case <b>E</b> or <b>V</b>. Vishay E is 4.00±0.30 mm high, V 2.0 mm high.</p></description>
<wire x1="-5" y1="2.5" x2="-2" y2="2.5" width="0.2032" layer="21"/>
<wire x1="-5" y1="2.5" x2="-5" y2="-2.5" width="0.2032" layer="21"/>
<wire x1="-5" y1="-2.5" x2="-2" y2="-2.5" width="0.2032" layer="21"/>
<wire x1="2" y1="2.5" x2="4" y2="2.5" width="0.2032" layer="21"/>
<wire x1="4" y1="2.5" x2="5" y2="1.5" width="0.2032" layer="21"/>
<wire x1="5" y1="1.5" x2="5" y2="-1.5" width="0.2032" layer="21"/>
<wire x1="5" y1="-1.5" x2="4" y2="-2.5" width="0.2032" layer="21"/>
<wire x1="4" y1="-2.5" x2="2" y2="-2.5" width="0.2032" layer="21"/>
<smd name="C" x="-3.17" y="0" dx="2.55" dy="2.7" layer="1" rot="R180"/>
<smd name="A" x="3.17" y="0" dx="2.55" dy="2.7" layer="1" rot="R180"/>
<text x="-1.27" y="1.27" size="0.4064" layer="25">>Name</text>
<text x="-1.27" y="-1.27" size="0.4064" layer="27">>Value</text>
</package>
<package name="CPOL_PANASONIC_G">
<description><H3>Panasonic Aluminium Electrolytic Capacitor Series: S Type: V Package: G</h3>
<p>Eagle package Copyright (c) SparkFun under Creative Commons v3.3 Share-Alike License.</p>
<p>EagleUp model copyright (c) ELL-i co-operative.</p>
<p>Diameter 10.0 mm. Height 10.2±0.3 mm.
<a href="http://industrial.panasonic.com/www-data/pdf/ABA0000/ABA0000CE115.pdf">Datasheet</a>.
</p></description>
<wire x1="-5.1" y1="5.1" x2="2.8" y2="5.1" width="0.1016" layer="51"/>
<wire x1="2.8" y1="5.1" x2="5.1" y2="2.8" width="0.1016" layer="51"/>
<wire x1="5.1" y1="2.8" x2="5.1" y2="-2.8" width="0.1016" layer="51"/>
<wire x1="5.1" y1="-2.8" x2="2.8" y2="-5.1" width="0.1016" layer="51"/>
<wire x1="2.8" y1="-5.1" x2="-5.1" y2="-5.1" width="0.1016" layer="51"/>
<wire x1="-5.1" y1="-5.1" x2="-5.1" y2="5.1" width="0.1016" layer="51"/>
<wire x1="-5.1" y1="1" x2="-5.1" y2="5.1" width="0.2032" layer="21"/>
<wire x1="-5.1" y1="5.1" x2="2.8" y2="5.1" width="0.2032" layer="21"/>
<wire x1="2.8" y1="5.1" x2="5.1" y2="2.8" width="0.2032" layer="21"/>
<wire x1="5.1" y1="2.8" x2="5.1" y2="1" width="0.2032" layer="21"/>
<wire x1="5.1" y1="-1" x2="5.1" y2="-2.8" width="0.2032" layer="21"/>
<wire x1="5.1" y1="-2.8" x2="2.8" y2="-5.1" width="0.2032" layer="21"/>
<wire x1="2.8" y1="-5.1" x2="-5.1" y2="-5.1" width="0.2032" layer="21"/>
<wire x1="-5.1" y1="-5.1" x2="-5.1" y2="-1" width="0.2032" layer="21"/>
<wire x1="-4.85" y1="-1" x2="4.85" y2="-1" width="0.2032" layer="21" curve="156.699401" cap="flat"/>
<wire x1="-4.85" y1="1" x2="4.85" y2="1" width="0.2032" layer="21" curve="-156.699401" cap="flat"/>
<wire x1="-3.25" y1="3.7" x2="-3.25" y2="-3.65" width="0.1016" layer="51"/>
<circle x="0" y="0" radius="4.95" width="0.1016" layer="51"/>
<smd name="-" x="-4.25" y="0" dx="3.9" dy="1.6" layer="1"/>
<smd name="+" x="4.25" y="0" dx="3.9" dy="1.6" layer="1"/>
<text x="-1.27" y="1.27" size="0.4064" layer="25">>NAME</text>
<text x="-1.27" y="-2.54" size="0.4064" layer="27">>VALUE</text>
<rectangle x1="-5.85" y1="-0.45" x2="-4.9" y2="0.45" layer="51"/>
<rectangle x1="4.9" y1="-0.45" x2="5.85" y2="0.45" layer="51"/>
<polygon width="0.1016" layer="51">
<vertex x="-3.3" y="3.6"/>
<vertex x="-4.05" y="2.75"/>
<vertex x="-4.65" y="1.55"/>
<vertex x="-4.85" y="0.45"/>
<vertex x="-4.85" y="-0.45"/>
<vertex x="-4.65" y="-1.55"/>
<vertex x="-4.05" y="-2.75"/>
<vertex x="-3.3" y="-3.6"/>
<vertex x="-3.3" y="3.55"/>
</polygon>
</package>
<package name="CPOL_PANASONIC_E">
<description><H3>Panasonic Aluminium Electrolytic Capacitor Series: S Type: V Package: E</h3>
<p>Eagle package Copyright (c) SparkFun under Creative Commons v3.3 Share-Alike License.</p>
<p>EagleUp model copyright (c) ELL-i co-operative.</p>
<p>Diameter 8.0 mm. Height 6.2±0.3 mm.
<a href="http://industrial.panasonic.com/www-data/pdf/ABA0000/ABA0000CE115.pdf">Datasheet</a>.
</p></description>
<wire x1="-4.1" y1="4.1" x2="1.8" y2="4.1" width="0.1016" layer="51"/>
<wire x1="1.8" y1="4.1" x2="4.1" y2="1.8" width="0.1016" layer="51"/>
<wire x1="4.1" y1="1.8" x2="4.1" y2="-1.8" width="0.1016" layer="51"/>
<wire x1="4.1" y1="-1.8" x2="1.8" y2="-4.1" width="0.1016" layer="51"/>
<wire x1="1.8" y1="-4.1" x2="-4.1" y2="-4.1" width="0.1016" layer="51"/>
<wire x1="-4.1" y1="-4.1" x2="-4.1" y2="4.1" width="0.1016" layer="51"/>
<wire x1="-4.1" y1="0.9" x2="-4.1" y2="4.1" width="0.2032" layer="21"/>
<wire x1="-4.1" y1="4.1" x2="1.8" y2="4.1" width="0.2032" layer="21"/>
<wire x1="1.8" y1="4.1" x2="4.1" y2="1.8" width="0.2032" layer="21"/>
<wire x1="4.1" y1="1.8" x2="4.1" y2="0.9" width="0.2032" layer="21"/>
<wire x1="4.1" y1="-0.9" x2="4.1" y2="-1.8" width="0.2032" layer="21"/>
<wire x1="4.1" y1="-1.8" x2="1.8" y2="-4.1" width="0.2032" layer="21"/>
<wire x1="1.8" y1="-4.1" x2="-4.1" y2="-4.1" width="0.2032" layer="21"/>
<wire x1="-4.1" y1="-4.1" x2="-4.1" y2="-0.9" width="0.2032" layer="21"/>
<wire x1="-2.2" y1="3.25" x2="-2.2" y2="-3.25" width="0.1016" layer="51"/>
<wire x1="-3.85" y1="0.9" x2="3.85" y2="0.9" width="0.2032" layer="21" curve="-153.684915" cap="flat"/>
<wire x1="-3.85" y1="-0.9" x2="3.85" y2="-0.9" width="0.2032" layer="21" curve="153.684915" cap="flat"/>
<circle x="0" y="0" radius="3.95" width="0.1016" layer="51"/>
<smd name="-" x="-3" y="0" dx="3.8" dy="1.4" layer="1"/>
<smd name="+" x="3" y="0" dx="3.8" dy="1.4" layer="1"/>
<text x="-1.27" y="1.27" size="0.4064" layer="25">>NAME</text>
<text x="-1.27" y="-2.54" size="0.4064" layer="27">>VALUE</text>
<rectangle x1="-4.5" y1="-0.35" x2="-3.8" y2="0.35" layer="51"/>
<rectangle x1="3.8" y1="-0.35" x2="4.5" y2="0.35" layer="51"/>
<polygon width="0.1016" layer="51">
<vertex x="-2.25" y="3.2"/>
<vertex x="-3" y="2.5"/>
<vertex x="-3.6" y="1.5"/>
<vertex x="-3.85" y="0.65"/>
<vertex x="-3.85" y="-0.65"/>
<vertex x="-3.55" y="-1.6"/>
<vertex x="-2.95" y="-2.55"/>
<vertex x="-2.25" y="-3.2"/>
<vertex x="-2.25" y="3.15"/>
</polygon>
</package>
<package name="CPOL_PANASONIC_C">
<description><H3>Panasonic Aluminium Electrolytic Capacitor Series: S Type: V Package: C</h3>
<p>Eagle package Copyright (c) SparkFun under Creative Commons v3.3 Share-Alike License.</p>
<p>EagleUp model copyright (c) ELL-i co-operative.</p>
<p>Diameter 5.0 mm. Height 5.4 mm.
<a href="http://industrial.panasonic.com/www-data/pdf/ABA0000/ABA0000CE115.pdf">Datasheet</a>.
</p></description>
<wire x1="-2.6" y1="2.45" x2="1.6" y2="2.45" width="0.2032" layer="21"/>
<wire x1="1.6" y1="2.45" x2="2.7" y2="1.35" width="0.2032" layer="21"/>
<wire x1="2.7" y1="-1.75" x2="1.6" y2="-2.85" width="0.2032" layer="21"/>
<wire x1="1.6" y1="-2.85" x2="-2.6" y2="-2.85" width="0.2032" layer="21"/>
<wire x1="-2.6" y1="2.45" x2="1.6" y2="2.45" width="0.1016" layer="51"/>
<wire x1="1.6" y1="2.45" x2="2.7" y2="1.35" width="0.1016" layer="51"/>
<wire x1="2.7" y1="-1.75" x2="1.6" y2="-2.85" width="0.1016" layer="51"/>
<wire x1="1.6" y1="-2.85" x2="-2.6" y2="-2.85" width="0.1016" layer="51"/>
<wire x1="-2.6" y1="2.45" x2="-2.6" y2="0.35" width="0.2032" layer="21"/>
<wire x1="-2.6" y1="-2.85" x2="-2.6" y2="-0.75" width="0.2032" layer="21"/>
<wire x1="2.7" y1="1.35" x2="2.7" y2="0.35" width="0.2032" layer="21"/>
<wire x1="2.7" y1="-1.75" x2="2.7" y2="-0.7" width="0.2032" layer="21"/>
<wire x1="-2.6" y1="2.45" x2="-2.6" y2="-2.85" width="0.1016" layer="51"/>
<wire x1="2.7" y1="1.35" x2="2.7" y2="-1.75" width="0.1016" layer="51"/>
<wire x1="-2.4" y1="0.35" x2="2.45" y2="0.3" width="0.2032" layer="21" curve="-156.699401"/>
<wire x1="2.5" y1="-0.7" x2="-2.4" y2="-0.75" width="0.2032" layer="21" curve="-154.694887"/>
<circle x="0.05" y="-0.2" radius="2.5004" width="0.1016" layer="51"/>
<smd name="-" x="-1.8" y="-0.2" dx="2.2" dy="0.65" layer="1"/>
<smd name="+" x="1.9" y="-0.2" dx="2.2" dy="0.65" layer="1"/>
<text x="-2.6" y="2.7" size="0.4064" layer="25">>NAME</text>
<text x="-2.6" y="-3.45" size="0.4064" layer="27">>VALUE</text>
</package>
<package name="CPOL_NIPPON_F80">
<description><h3>SMD Aluminium Electrolytic Capacitor in a F80 package</h3>
<p>Nippon Chemi-con, Cal-chip electronics, and Lelon Electronics corporation (at least) use capacitor case sizes with packages names like B55, F60, G10, etc. Case size tables are available in
<a href="http://www.chemi-con.co.jp/e/catalog/pdf/al-e/al-sepa-e/001-guide/al-pns_all-e-130701.pdf">Nippon Chemi-con part numbering system</a> and
<a href="http://www.calchipelectronics.com/pdf/electrolytics/part_numbering_lytics.pdf">Cal-Chip Part Numbering System for the SMD Type</a>.</p></description>
<wire x1="-3.3" y1="3.3" x2="1.7" y2="3.3" width="0.2032" layer="21"/>
<wire x1="1.7" y1="3.3" x2="3.3" y2="2" width="0.2032" layer="21"/>
<wire x1="3.3" y1="-2" x2="1.7" y2="-3.3" width="0.2032" layer="21"/>
<wire x1="1.7" y1="-3.3" x2="-3.3" y2="-3.3" width="0.2032" layer="21"/>
<wire x1="-3.3" y1="3.3" x2="1.7" y2="3.3" width="0.1016" layer="51"/>
<wire x1="1.7" y1="3.3" x2="3.3" y2="2" width="0.1016" layer="51"/>
<wire x1="3.3" y1="-2" x2="1.7" y2="-3.3" width="0.1016" layer="51"/>
<wire x1="1.7" y1="-3.3" x2="-3.3" y2="-3.3" width="0.1016" layer="51"/>
<wire x1="-3.3" y1="3.3" x2="-3.3" y2="0.685" width="0.2032" layer="21"/>
<wire x1="-3.3" y1="-3.3" x2="-3.3" y2="-0.685" width="0.2032" layer="21"/>
<wire x1="3.3" y1="2" x2="3.3" y2="0.685" width="0.2032" layer="21"/>
<wire x1="3.3" y1="-2" x2="3.3" y2="-0.685" width="0.2032" layer="21"/>
<wire x1="-3.3" y1="3.3" x2="-3.3" y2="-3.3" width="0.1016" layer="51"/>
<wire x1="3.3" y1="2" x2="3.3" y2="-2" width="0.1016" layer="51"/>
<wire x1="-3.1" y1="0.685" x2="3.1" y2="0.685" width="0.2032" layer="21" curve="-156.500033"/>
<wire x1="3.1" y1="-0.685" x2="-3.1" y2="-0.685" width="0.2032" layer="21" curve="-154.748326"/>
<circle x="0" y="0" radius="3.15" width="0.1016" layer="51"/>
<smd name="-" x="-2.4" y="0" dx="2.95" dy="1" layer="1"/>
<smd name="+" x="2.4" y="0" dx="2.95" dy="1" layer="1"/>
<text x="-3.2" y="3.5" size="0.4064" layer="25">>NAME</text>
<text x="-3.2" y="-3.85" size="0.4064" layer="27">>VALUE</text>
</package>
<package name="CPOL_PANASONIC_D">
<description><H3>Panasonic Aluminium Electrolytic Capacitor Series: S Type: V Package: D</h3>
<p>Eagle package Copyright (c) SparkFun under Creative Commons v3.3 Share-Alike License.</p>
<p>EagleUp model copyright (c) ELL-i co-operative.</p>
<p>Diameter 6.3 mm. Height 5.4 mm.
<a href="http://industrial.panasonic.com/www-data/pdf/ABA0000/ABA0000CE115.pdf">Datasheet</a>.
</p></description>
<wire x1="-3.25" y1="3.25" x2="1.55" y2="3.25" width="0.1016" layer="51"/>
<wire x1="1.55" y1="3.25" x2="3.25" y2="1.55" width="0.1016" layer="51"/>
<wire x1="3.25" y1="1.55" x2="3.25" y2="-1.55" width="0.1016" layer="51"/>
<wire x1="3.25" y1="-1.55" x2="1.55" y2="-3.25" width="0.1016" layer="51"/>
<wire x1="1.55" y1="-3.25" x2="-3.25" y2="-3.25" width="0.1016" layer="51"/>
<wire x1="-3.25" y1="-3.25" x2="-3.25" y2="3.25" width="0.1016" layer="51"/>
<wire x1="-3.25" y1="0.95" x2="-3.25" y2="3.25" width="0.1016" layer="21"/>
<wire x1="-3.25" y1="3.25" x2="1.55" y2="3.25" width="0.1016" layer="21"/>
<wire x1="1.55" y1="3.25" x2="3.25" y2="1.55" width="0.1016" layer="21"/>
<wire x1="3.25" y1="1.55" x2="3.25" y2="0.95" width="0.1016" layer="21"/>
<wire x1="3.25" y1="-0.95" x2="3.25" y2="-1.55" width="0.1016" layer="21"/>
<wire x1="3.25" y1="-1.55" x2="1.55" y2="-3.25" width="0.1016" layer="21"/>
<wire x1="1.55" y1="-3.25" x2="-3.25" y2="-3.25" width="0.1016" layer="21"/>
<wire x1="-3.25" y1="-3.25" x2="-3.25" y2="-0.95" width="0.1016" layer="21"/>
<wire x1="2.95" y1="0.95" x2="-2.95" y2="0.95" width="0.1016" layer="21" curve="144.299363"/>
<wire x1="-2.95" y1="-0.95" x2="2.95" y2="-0.95" width="0.1016" layer="21" curve="144.299363"/>
<wire x1="-2.1" y1="2.25" x2="-2.1" y2="-2.2" width="0.1016" layer="51"/>
<circle x="0" y="0" radius="3.1" width="0.1016" layer="51"/>
<smd name="+" x="2.4" y="0" dx="3" dy="1.4" layer="1"/>
<smd name="-" x="-2.4" y="0" dx="3" dy="1.4" layer="1"/>
<text x="-1.75" y="1" size="1.016" layer="25">>NAME</text>
<text x="-1.75" y="-1.975" size="1.016" layer="27">>VALUE</text>
<rectangle x1="-3.65" y1="-0.35" x2="-3.05" y2="0.35" layer="51"/>
<rectangle x1="3.05" y1="-0.35" x2="3.65" y2="0.35" layer="51"/>
<polygon width="0.1016" layer="51">
<vertex x="-2.15" y="2.15"/>
<vertex x="-2.6" y="1.6"/>
<vertex x="-2.9" y="0.9"/>
<vertex x="-3.05" y="0"/>
<vertex x="-2.9" y="-0.95"/>
<vertex x="-2.55" y="-1.65"/>
<vertex x="-2.15" y="-2.15"/>
<vertex x="-2.15" y="2.1"/>
</polygon>
</package>
<package name="CPOL-RADIAL-1000UF-25V">
<description><h3>Round (electrolytic) capacitor with 0.2" (5.08 mm) lead spacing</h3>
<p>Copied from SparkFun-Passives.lbr under SparkFun Creative Commons license. Note that the lead spacing in this footprint is 5.08 mm while most capacitors of this size have lead spacing of 5.00 mm. This small difference works just fine. <a href="https://www.sparkfun.com/products/8982">SparkFun Product COM-08982</a>.</p>
<p>Diameter 10.00 mm, height 22.00 mm</p>
<p><b>NOTE!</b> At the moment there is no 3D model available for this package.</p></description>
<wire x1="-1.905" y1="1.27" x2="-3.175" y2="1.27" width="0.2032" layer="21"/>
<circle x="0" y="0" radius="5.461" width="0.2032" layer="21"/>
<pad name="2" x="-2.54" y="0" drill="0.7" diameter="1.651"/>
<pad name="1" x="2.54" y="0" drill="0.7" diameter="1.651" shape="square"/>
<text x="-1.905" y="-4.318" size="0.8128" layer="27">>Value</text>
<text x="-0.762" y="2.921" size="0.4064" layer="25">>Name</text>
</package>
<package name="CPOL_PANASONIC_H13">
<description><H3>Panasonic Aluminium Electrolytic Capacitor Series: S Type: V Package: H13</h3>
<p>Eagle package Copyright (c) SparkFun under Creative Commons v3.3 Share-Alike License.</p>
<p>EagleUp model copyright (c) ELL-i co-operative.</p>
<p>Diameter 13.0 mm. Height 12.7±0.3 mm.
<a href="http://industrial.panasonic.com/www-data/pdf/ABA0000/ABA0000CE115.pdf">Datasheet</a>.
</p></description>
<wire x1="-6.75" y1="6.75" x2="4" y2="6.75" width="0.1016" layer="51"/>
<wire x1="4" y1="6.75" x2="6.75" y2="4" width="0.1016" layer="51"/>
<wire x1="6.75" y1="4" x2="6.75" y2="-4" width="0.1016" layer="51"/>
<wire x1="6.75" y1="-4" x2="4" y2="-6.75" width="0.1016" layer="51"/>
<wire x1="4" y1="-6.75" x2="-6.75" y2="-6.75" width="0.1016" layer="51"/>
<wire x1="-6.75" y1="-6.75" x2="-6.75" y2="6.75" width="0.1016" layer="51"/>
<wire x1="-6.75" y1="1" x2="-6.75" y2="6.75" width="0.2032" layer="21"/>
<wire x1="-6.75" y1="6.75" x2="4" y2="6.75" width="0.2032" layer="21"/>
<wire x1="4" y1="6.75" x2="6.75" y2="4" width="0.2032" layer="21"/>
<wire x1="6.75" y1="4" x2="6.75" y2="1" width="0.2032" layer="21"/>
<wire x1="6.75" y1="-1" x2="6.75" y2="-4" width="0.2032" layer="21"/>
<wire x1="6.75" y1="-4" x2="4" y2="-6.75" width="0.2032" layer="21"/>
<wire x1="4" y1="-6.75" x2="-6.75" y2="-6.75" width="0.2032" layer="21"/>
<wire x1="-6.75" y1="-6.75" x2="-6.75" y2="-1" width="0.2032" layer="21"/>
<wire x1="-6.55" y1="-1.2" x2="6.45" y2="-1.2" width="0.2032" layer="21" curve="156.692742" cap="flat"/>
<wire x1="-6.55" y1="1.2" x2="6.55" y2="1.2" width="0.2032" layer="21" curve="-156.697982" cap="flat"/>
<wire x1="-5" y1="4.25" x2="-4.95" y2="-4.35" width="0.1016" layer="51"/>
<circle x="0" y="0" radius="6.6" width="0.1016" layer="51"/>
<smd name="-" x="-4.7" y="0" dx="5" dy="1.6" layer="1"/>
<smd name="+" x="4.7" y="0" dx="5" dy="1.6" layer="1"/>
<text x="-1.27" y="1.27" size="0.4064" layer="25">>NAME</text>
<text x="-1.27" y="-2.54" size="0.4064" layer="27">>VALUE</text>
<rectangle x1="-7.55" y1="-0.45" x2="-6.6" y2="0.45" layer="51"/>
<rectangle x1="6.6" y1="-0.45" x2="7.55" y2="0.45" layer="51"/>
<polygon width="0.1016" layer="51">
<vertex x="-5" y="4.2"/>
<vertex x="-5.75" y="3.15"/>
<vertex x="-6.25" y="2.05"/>
<vertex x="-6.55" y="0.45"/>
<vertex x="-6.55" y="-0.45"/>
<vertex x="-6.35" y="-1.65"/>
<vertex x="-5.75" y="-3.25"/>
<vertex x="-5" y="-4.2"/>
</polygon>
</package>
<package name="CT6032">
<description><h3>Tantalum capacitor in an EIA6032 package (CASE C)</h3>
<p>Eagle package Copyright (c) SparkFun under Creative Commons v3.0 Share Alike license.</p>
<p>Also Vishay Tantalum Capacitor case <b>C</b>.</p></description>
<wire x1="3.2" y1="-1.6" x2="3.2" y2="1.6" width="0.127" layer="21"/>
<wire x1="-2.8" y1="-1.6" x2="3.2" y2="-1.6" width="0.127" layer="21"/>
<wire x1="3.2" y1="1.6" x2="-2.8" y2="1.6" width="0.127" layer="21"/>
<wire x1="-2.8" y1="1.6" x2="-3.4" y2="1" width="0.127" layer="21"/>
<wire x1="-3.4" y1="1" x2="-3.4" y2="-1" width="0.127" layer="21"/>
<wire x1="-2.8" y1="-1.6" x2="-3.4" y2="-1" width="0.127" layer="21"/>
<smd name="P$1" x="-2.3" y="0" dx="1.5" dy="2.4" layer="1"/>
<smd name="P$2" x="2.3" y="0" dx="1.5" dy="2.4" layer="1"/>
</package>
<package name="COILCRAFT-MSS5121">
<description><h3>Ferrite Bead Coilcraft MSS5121</h3>
<ul>
<li><a href="http://www.coilcraft.com/pdfs/mss5121.pdf">Datasheet</a></li>
</ul></description>
<wire x1="-2.5" y1="2.5" x2="2.5" y2="2.5" width="0.127" layer="21"/>
<wire x1="2.5" y1="2.5" x2="2.5" y2="-2.5" width="0.127" layer="21"/>
<wire x1="2.5" y1="-2.5" x2="-2.5" y2="-2.5" width="0.127" layer="21"/>
<wire x1="-2.5" y1="-2.5" x2="-2.5" y2="2.5" width="0.127" layer="21"/>
<wire x1="-2.5" y1="2.5" x2="2.5" y2="2.5" width="0.127" layer="51"/>
<wire x1="2.5" y1="2.5" x2="2.5" y2="-2.5" width="0.127" layer="51"/>
<wire x1="2.5" y1="-2.5" x2="-2.5" y2="-2.5" width="0.127" layer="51"/>
<wire x1="-2.5" y1="-2.5" x2="-2.5" y2="2.5" width="0.127" layer="51"/>
<smd name="2" x="2" y="2" dx="0.6" dy="0.6" layer="1"/>
<smd name="1" x="-2" y="-2" dx="0.6" dy="0.6" layer="1"/>
<polygon width="0.3" layer="1">
<vertex x="-1.95" y="0.9"/>
<vertex x="-1.85" y="1.05"/>
<vertex x="-1.6" y="1.4"/>
<vertex x="-1" y="1.9"/>
<vertex x="-0.5" y="2.1"/>
<vertex x="0.5" y="2.1"/>
<vertex x="1" y="1.9"/>
<vertex x="1.5" y="1.5"/>
<vertex x="1.9" y="1"/>
<vertex x="1.95" y="0.9"/>
<vertex x="2.5" y="0.9"/>
<vertex x="2.5" y="2.5"/>
<vertex x="-2.5" y="2.5"/>
<vertex x="-2.5" y="0.9"/>
</polygon>
<polygon width="0.3" layer="1">
<vertex x="1.95" y="-0.9"/>
<vertex x="1.85" y="-1.05"/>
<vertex x="1.55" y="-1.45"/>
<vertex x="1.05" y="-1.9"/>
<vertex x="0.55" y="-2.1"/>
<vertex x="0" y="-2.15"/>
<vertex x="-0.5" y="-2.1"/>
<vertex x="-1" y="-1.9"/>
<vertex x="-1.45" y="-1.6"/>
<vertex x="-1.85" y="-1.1"/>
<vertex x="-1.9" y="-0.9"/>
<vertex x="-2.5" y="-0.9"/>
<vertex x="-2.5" y="-2.5"/>
<vertex x="2.5" y="-2.5"/>
<vertex x="2.5" y="-0.9"/>
</polygon>
<text x="-2.6" y="2.8" size="1.016" layer="25">>NAME</text>
<text x="-2.6" y="-3.8" size="1.016" layer="27">>VALUE</text>
<polygon width="0.1" layer="29">
<vertex x="1.85" y="-0.7"/>
<vertex x="1.7" y="-0.95"/>
<vertex x="1.4" y="-1.35"/>
<vertex x="1" y="-1.7"/>
<vertex x="0.5" y="-1.9"/>
<vertex x="0" y="-1.95"/>
<vertex x="-0.5" y="-1.9"/>
<vertex x="-1" y="-1.7"/>
<vertex x="-1.3" y="-1.5"/>
<vertex x="-1.7" y="-1"/>
<vertex x="-1.85" y="-0.7"/>
<vertex x="-2.7" y="-0.7"/>
<vertex x="-2.7" y="-2.7"/>
<vertex x="2.7" y="-2.7"/>
<vertex x="2.7" y="-0.7"/>
</polygon>
<polygon width="0.1" layer="29">
<vertex x="-1.85" y="0.7"/>
<vertex x="-1.7" y="0.95"/>
<vertex x="-1.4" y="1.35"/>
<vertex x="-0.9" y="1.75"/>
<vertex x="-0.5" y="1.9"/>
<vertex x="-0.1" y="1.95"/>
<vertex x="0.5" y="1.9"/>
<vertex x="0.95" y="1.75"/>
<vertex x="1.35" y="1.4"/>
<vertex x="1.75" y="0.9"/>
<vertex x="1.85" y="0.7"/>
<vertex x="2.7" y="0.7"/>
<vertex x="2.7" y="2.7"/>
<vertex x="-2.7" y="2.7"/>
<vertex x="-2.7" y="0.7"/>
</polygon>
<polygon width="0.3" layer="31">
<vertex x="-1.95" y="0.9"/>
<vertex x="-1.85" y="1.05"/>
<vertex x="-1.6" y="1.4"/>
<vertex x="-1" y="1.9"/>
<vertex x="-0.5" y="2.1"/>
<vertex x="0.5" y="2.1"/>
<vertex x="1" y="1.9"/>
<vertex x="1.5" y="1.5"/>
<vertex x="1.9" y="1"/>
<vertex x="1.95" y="0.9"/>
<vertex x="2.5" y="0.9"/>
<vertex x="2.5" y="2.5"/>
<vertex x="-2.5" y="2.5"/>
<vertex x="-2.5" y="0.9"/>
</polygon>
<polygon width="0.3" layer="31">
<vertex x="1.95" y="-0.9"/>
<vertex x="1.85" y="-1.05"/>
<vertex x="1.55" y="-1.45"/>
<vertex x="1.05" y="-1.9"/>
<vertex x="0.55" y="-2.1"/>
<vertex x="0" y="-2.15"/>
<vertex x="-0.5" y="-2.1"/>
<vertex x="-1" y="-1.9"/>
<vertex x="-1.45" y="-1.6"/>
<vertex x="-1.85" y="-1.1"/>
<vertex x="-1.9" y="-0.9"/>
<vertex x="-2.5" y="-0.9"/>
<vertex x="-2.5" y="-2.5"/>
<vertex x="2.5" y="-2.5"/>
<vertex x="2.5" y="-0.9"/>
</polygon>
</package>
<package name="TP_5000">
<description><h3>Test loop.</h3>
<p>
Allow for easy attachment of oscilloscope probe
Inner dia of ring is 1.25 mm.
Has 2.54 mm dia plastic ring,
height off board approx 4.6 mm.
</p>
<p>Keystone Electronics 5000. <a href='http://www.keyelco.com/userAssets/file/M60-2p60.pdf'>Datasheet</a>.
</p>
<p>
Not reviewed.
</p></description>
<pad name="P$1" x="0" y="0" drill="1"/>
<circle x="0" y="0" radius="1.27" width="0.127" layer="21"/>
<text x="-2.54" y="1.27" size="1.27" layer="21">>NAME</text>
<text x="-2.54" y="-2.54" size="1.27" layer="21">>VALUE</text>
</package>
<package name="TP_5021">
<description><h3>Test loop.</h3>
<p>
2.54 mm dia,
does not have a separate base.
Height approx 2.5 mm off board.
</p>
<p>Keystone Electronics 5021.
<a href='http://www.keyelco.com/userAssets/file/M60-2p60.pdf'>Datasheet</a>.
</p>
<p>
Not reviewed.
</p>
<p>
<ul>
<li>Silkscreen has 0.15 mm width, does not overlap pads, is visible after assembly, on tPlace layer</li>
<li>Name is on tNames layer, has vector font, 1.5 mm height and 0.15 mm thickness</li>
<li>Mechanical outline is on Measures layer</li>
<li>Assembly drawing, including name is on tDocu layer</li>
<li>Part has extended keepout area for probing</li>
</ul>
</p></description>
<pad name="P$1" x="0" y="0" drill="1"/>
<wire x1="1.3" y1="0.4" x2="1.3" y2="-0.4" width="0.127" layer="47"/>
<wire x1="1.3" y1="0.4" x2="-1.3" y2="0.4" width="0.127" layer="47"/>
<wire x1="-1.3" y1="0.4" x2="-1.3" y2="-0.4" width="0.127" layer="47"/>
<wire x1="-1.3" y1="-0.4" x2="1.3" y2="-0.4" width="0.127" layer="47"/>
<text x="0" y="0" size="1.5" layer="25" font="vector" ratio="10" align="center">>NAME</text>
<text x="0" y="0" size="0.5" layer="51" font="vector" ratio="10" align="center">>NAME</text>
<rectangle x1="-1.5" y1="-1.5" x2="1.5" y2="1.5" layer="39"/>
<wire x1="0.5" y1="1" x2="-0.5" y2="1" width="0.15" layer="21"/>
<wire x1="-0.5" y1="-1" x2="0.5" y2="-1" width="0.15" layer="21"/>
<wire x1="-1" y1="1" x2="1" y2="1" width="0.15" layer="51"/>
<wire x1="1" y1="1" x2="1" y2="-1" width="0.15" layer="51"/>
<wire x1="1" y1="-1" x2="-1" y2="-1" width="0.15" layer="51"/>
<wire x1="-1" y1="-1" x2="-1" y2="1" width="0.15" layer="51"/>
</package>
<package name="TP_BARE">
<description><h3>Bare copper test point </h3>
<p>
2.54 mm dia bare copper area for probing.
</p>
<p>
Not reviewed.
</p></description>
<smd name="P$1" x="0" y="0" dx="2.54" dy="2.54" layer="1" roundness="100" cream="no"/>
<text x="-2.54" y="1.524" size="1.27" layer="21">>NAME</text>
<text x="-2.54" y="-1.524" size="1.27" layer="21" align="top-left">>VALUE</text>
</package>
<package name="FB1206">
<wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/>
<wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/>
<smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
<smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
<rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/>
<rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/>
<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
<wire x1="1.573" y1="-0.783" x2="-1.573" y2="-0.783" width="0.0508" layer="39"/>
<wire x1="-1.573" y1="-0.783" x2="-1.573" y2="0.783" width="0.0508" layer="39"/>
<text x="-1.989" y="1.316" size="0.8128" layer="25" font="vector" ratio="15">>NAME</text>
<text x="-1.989" y="-1.986" size="0.8128" layer="27" font="vector" ratio="15">>VALUE</text>
<wire x1="-1.573" y1="0.783" x2="1.573" y2="0.783" width="0.0508" layer="39"/>
</package>
<package name="FB0402">
<wire x1="-0.245" y1="0.219" x2="0.245" y2="0.219" width="0.06" layer="51"/>
<wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.06" layer="51"/>
<smd name="1" x="-0.475" y="0" dx="0.45" dy="0.6" layer="1"/>
<smd name="2" x="0.475" y="0" dx="0.45" dy="0.6" layer="1"/>
<text x="-0.935" y="0.362" size="0.4064" layer="25">>NAME</text>
<text x="-0.935" y="-0.705" size="0.4064" layer="27">>VALUE</text>
<rectangle x1="-0.5" y1="-0.25" x2="-0.25" y2="0.25" layer="51"/>
<rectangle x1="0.25" y1="-0.25" x2="0.5" y2="0.25" layer="51"/>
<rectangle x1="-0.2" y1="-0.3" x2="0.2" y2="0.3" layer="41"/>
</package>
<package name="C1210">
<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.127" layer="51"/>
<wire x1="1.6" y1="1.3" x2="1.6" y2="-1.3" width="0.127" layer="51"/>
<wire x1="1.6" y1="-1.3" x2="-1.6" y2="-1.3" width="0.127" layer="51"/>
<wire x1="-1.6" y1="-1.3" x2="-1.6" y2="1.3" width="0.127" layer="51"/>
<wire x1="-1.6" y1="1.3" x2="1.6" y2="1.3" width="0.2032" layer="21"/>
<wire x1="-1.6" y1="-1.3" x2="1.6" y2="-1.3" width="0.2032" layer="21"/>
<smd name="1" x="-1.6" y="0" dx="1.2" dy="2" layer="1"/>
<smd name="2" x="1.6" y="0" dx="1.2" dy="2" layer="1"/>
<text x="-0.8" y="0.5" size="0.4064" layer="25">>NAME</text>
<text x="-0.9" y="-0.7" size="0.4064" layer="27">>VALUE</text>
</package>
<package name="C1206">
<description><b>CAPACITOR</b></description>
<wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/>
<wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/>
<smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
<smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
<text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/>
<rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/>
<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
</package>
<package name="SMD0402-B">
<description><h3>IEC 7351 0402 (1005) - nominal</h3>
<p>
Unpolarised SMD 0402 (1005 metric) footprint, variant B.
Pads are considered as nominal (tolerances are not accounted) to keep pads at reasonable size.
</p>
<p>
Center of pads is at &plusmn;0.5 mm, pad size is 0.35 mm toe and heel, 0.05 mm side. Placement courtyard (keepout area) area is 0.25 mm from pads. Silkscreen has 0.12 mm width, refdes has height of 1.2 mm. Silkscreen is intentionally 0.18 mm away from pads instead of recommended 0.12 mm to keep silkscreen clear of soldermask opening. Refdes is in center of component and must be placed outside component or deleted after layout has been confirmed. Assembly picture outline is drawn at placement courtyard with line width of 0.12 mm.
</p>
<p>
<ul>
<li>
Silkscreen is in tPlace layer.
</li>
<li>
Refdes for silkscreen is in tNames layer.
</li>
<li>
Assembly picture (incl. refdes) is in tDocu layer
</li>
<li>
3D outline is in Measure layer.
</li>
</ul>
</p>
<p> Please see <a href = "http://www.pcblibraries.com/downloads/Guidelines!PCB_Design_Optimization_Starts_in_the_CAD_Library.asp"> this document </a> for details.
</p></description>
<wire x1="-0.245" y1="0.219" x2="0.245" y2="0.219" width="0.06" layer="47"/>
<wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.06" layer="47"/>
<smd name="1" x="-0.5" y="0" dx="0.7" dy="0.6" layer="1" roundness="10"/>
<smd name="2" x="0.5" y="0" dx="0.7" dy="0.6" layer="1" roundness="10"/>
<rectangle x1="-0.5" y1="-0.25" x2="-0.25" y2="0.25" layer="47"/>
<rectangle x1="0.25" y1="-0.25" x2="0.5" y2="0.25" layer="47"/>
<rectangle x1="-1.1" y1="-0.55" x2="1.1" y2="0.55" layer="39"/>
<text x="0" y="0" size="1.2" layer="25" font="vector" ratio="10" align="center">>NAME</text>
<wire x1="0.3" y1="0.48" x2="-0.3" y2="0.48" width="0.127" layer="21"/>
<wire x1="-0.3" y1="-0.48" x2="0.3" y2="-0.48" width="0.127" layer="21"/>
<wire x1="-1.04" y1="0.49" x2="1.04" y2="0.49" width="0.127" layer="51"/>
<wire x1="1.04" y1="0.49" x2="1.04" y2="-0.49" width="0.127" layer="51"/>
<wire x1="1.04" y1="-0.49" x2="-1.04" y2="-0.49" width="0.127" layer="51"/>
<wire x1="-1.04" y1="-0.49" x2="-1.04" y2="0.49" width="0.127" layer="51"/>
<text x="0" y="0" size="0.5" layer="51" font="vector" ratio="10" align="center">>NAME</text>
</package>
<package name="SMD0603-A">
<description><h3>IPC-7351-C compliant smd 0603 (1608 metric) footprint, variant A</h3>
<p>
Variant A has large pads and placement courtyard, ideal for handsoldering. Footprint might cause tombstoning on reflow soldering process due to large pads compared to component size. This footprint should be selected only for sparsely populated designs and designs where joint needs to be robust.
</p>
<p>
Origin is in middle of component, pin 1 is at left. Component is not polarized
</p>
<p>
Pads have 0.55 mm toes, 0.45 mm heels and 0.05 mm sides. Tolerances of body dimensions are not considered to keep footprint at reasonable size, and width of component pad is considered to be 0. Pad size is 1.0 * 0.9 mm.
</p>
<p>
Silkscreen has 0.15 mm clearance from pads and 0.15 mm width. Name is printed on silkscreen on layer tNames, 0.15 mm width and 1.5 mm height.
</p>
<p>
Component has placement courtyard of 0.5 mm from pads.
tDocument layer is used for assembly drawing.
Component outline is drawn on measures layer.
</p></description>
<smd name="P$1" x="-0.8" y="0" dx="1" dy="0.9" layer="1" roundness="10"/>
<smd name="P$2" x="0.8" y="0" dx="1" dy="0.9" layer="1" roundness="10"/>
<wire x1="-0.7" y1="-0.2" x2="-0.7" y2="0.2" width="0.4" layer="47"/>
<wire x1="0.7" y1="0.2" x2="0.7" y2="-0.2" width="0.4" layer="47"/>
<wire x1="-0.7" y1="0.3" x2="0.7" y2="0.3" width="0.2" layer="47"/>
<wire x1="0.7" y1="-0.3" x2="-0.7" y2="-0.3" width="0.2" layer="47"/>
<rectangle x1="-1.8" y1="-0.95" x2="1.8" y2="0.95" layer="39"/>
<wire x1="-1.7" y1="-0.9" x2="-1.7" y2="0.9" width="0.1" layer="51"/>
<wire x1="-1.7" y1="0.9" x2="1.7" y2="0.9" width="0.1" layer="51"/>
<wire x1="1.7" y1="0.9" x2="1.7" y2="-0.9" width="0.1" layer="51"/>
<wire x1="1.7" y1="-0.9" x2="-1.7" y2="-0.9" width="0.1" layer="51"/>
<text x="0" y="0" size="0.8" layer="51" font="vector" ratio="10" align="center">>NAME</text>
<wire x1="0.6" y1="0.65" x2="-0.6" y2="0.65" width="0.15" layer="21"/>
<wire x1="-0.6" y1="-0.65" x2="0.6" y2="-0.65" width="0.15" layer="21"/>
<text x="0" y="0" size="1.5" layer="25" font="vector" ratio="10" align="center">>NAME</text>
</package>
<package name="SMD0805-A">
<description><h3>IPC-7351-C compliant smd 0805 (2012 metric) footprint, variant A</h3>
<p>
Variant A has large pads and placement courtyard, ideal for handsoldering. This footprint should be selected only for sparsely populated designs and designs where joint needs to be robust.
</p>
<p>
Origin is in middle of component, pin 1 is at left. Component is not polarized
</p>
<p>
Pads have 0.55 mm toes, 0.45 mm heels and 0.05 mm sides. Tolerances of body dimensions are not considered to keep footprint at reasonable size, and width of component pad is considered to be 0. Pad size is 1.0 * 1.3 mm.
</p>
<p>
Silkscreen has 0.15 mm clearance from pads and 0.15 mm width. Name is printed on silkscreen on layer tNames, 0.15 mm width and 1.5 mm height.
</p>
<p>
Component has placement courtyard of 0.5 mm from pads.
tDocument layer is used for assembly drawing.
Component outline is drawn on measures layer.
</p>
<p>
See <a href="http://blogs.mentor.com/tom-hausherr/blog/2011/01/28/pcb-design-perfection-starts-in-the-cad-library-part-12/">mentor blog</a> and <a href ="http://www.pcblibraries.com/downloads/Guidelines!PCB_Design_Optimization_Starts_in_the_CAD_Library.asp">PCB libraries presentation</a> for reference.
</p></description>
<smd name="P$1" x="-1" y="0" dx="1" dy="1.3" layer="1"/>
<smd name="P$2" x="1" y="0" dx="1" dy="1.3" layer="1"/>
<wire x1="-1" y1="-0.6" x2="-1" y2="0.6" width="0.127" layer="47"/>
<wire x1="-1" y1="0.6" x2="-0.9" y2="0.6" width="0.127" layer="47"/>
<wire x1="-0.9" y1="0.6" x2="0.9" y2="0.6" width="0.127" layer="47"/>
<wire x1="0.9" y1="0.6" x2="1" y2="0.6" width="0.127" layer="47"/>
<wire x1="1" y1="0.6" x2="1" y2="-0.6" width="0.127" layer="47"/>
<wire x1="1" y1="-0.6" x2="0.9" y2="-0.6" width="0.127" layer="47"/>
<wire x1="0.9" y1="-0.6" x2="-0.9" y2="-0.6" width="0.127" layer="47"/>
<wire x1="-0.9" y1="-0.6" x2="-1" y2="-0.6" width="0.127" layer="47"/>
<wire x1="-0.9" y1="-0.6" x2="-0.9" y2="0.6" width="0.127" layer="47"/>
<wire x1="0.9" y1="0.6" x2="0.9" y2="-0.6" width="0.127" layer="47"/>
<wire x1="-0.5" y1="0.85" x2="0.5" y2="0.85" width="0.127" layer="21"/>