forked from adafruit/Adafruit-TPA2012-or-TS2012-Breakout-PCB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Adafruit TS2012 TPA2012 Class D Audio Amp.sch
5503 lines (5499 loc) · 349 KB
/
Adafruit TS2012 TPA2012 Class D Audio Amp.sch
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="6.4">
<drawing>
<settings>
<setting alwaysvectorfont="yes"/>
<setting verticaltext="up"/>
</settings>
<grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="no" altdistance="0.01" altunitdist="inch" altunit="inch"/>
<layers>
<layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/>
<layer number="2" name="Route2" color="1" fill="3" visible="no" active="no"/>
<layer number="3" name="Route3" color="4" fill="3" visible="no" active="no"/>
<layer number="4" name="Route4" color="1" fill="4" visible="no" active="no"/>
<layer number="5" name="Route5" color="4" fill="4" visible="no" active="no"/>
<layer number="6" name="Route6" color="1" fill="8" visible="no" active="no"/>
<layer number="7" name="Route7" color="4" fill="8" visible="no" active="no"/>
<layer number="8" name="Route8" color="1" fill="2" visible="no" active="no"/>
<layer number="9" name="Route9" color="4" fill="2" visible="no" active="no"/>
<layer number="10" name="Route10" color="1" fill="7" visible="no" active="no"/>
<layer number="11" name="Route11" color="4" fill="7" visible="no" active="no"/>
<layer number="12" name="Route12" color="1" fill="5" visible="no" active="no"/>
<layer number="13" name="Route13" color="4" fill="5" visible="no" active="no"/>
<layer number="14" name="Route14" color="1" fill="6" visible="no" active="no"/>
<layer number="15" name="Route15" color="4" fill="6" visible="no" active="no"/>
<layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/>
<layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/>
<layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/>
<layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/>
<layer number="20" name="Dimension" color="15" fill="1" visible="no" active="no"/>
<layer number="21" name="tPlace" color="14" fill="1" visible="no" active="no"/>
<layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/>
<layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/>
<layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/>
<layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/>
<layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/>
<layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/>
<layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/>
<layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/>
<layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/>
<layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/>
<layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/>
<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/>
<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/>
<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/>
<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/>
<layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/>
<layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/>
<layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/>
<layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/>
<layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/>
<layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/>
<layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/>
<layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/>
<layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/>
<layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/>
<layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/>
<layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/>
<layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/>
<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/>
<layer number="51" name="tDocu" color="7" fill="1" visible="no" active="no"/>
<layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/>
<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="tCAD" color="7" fill="1" visible="no" active="no"/>
<layer number="59" name="tCarbon" color="7" fill="1" visible="no" active="no"/>
<layer number="60" name="bCarbon" color="7" fill="1" visible="no" active="no"/>
<layer number="90" name="Modules" color="7" fill="1" visible="yes" active="yes"/>
<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="no" 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="99" name="SpiceOrder" color="7" fill="1" visible="no" active="no"/>
<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/>
<layer number="101" name="Patch_Top" color="12" fill="4" visible="no" active="yes"/>
<layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/>
<layer number="103" name="fp3" color="7" fill="1" visible="no" active="yes"/>
<layer number="104" name="Name" color="7" fill="1" visible="yes" active="yes"/>
<layer number="105" name="Beschreib" color="9" fill="1" visible="no" active="yes"/>
<layer number="106" name="BGA-Top" color="4" fill="1" visible="no" active="yes"/>
<layer number="107" name="BD-Top" color="5" fill="1" visible="no" active="yes"/>
<layer number="108" name="fp8" color="7" fill="1" visible="no" active="yes"/>
<layer number="109" name="fp9" color="7" fill="1" visible="no" active="yes"/>
<layer number="110" name="fp0" color="7" fill="1" visible="no" active="yes"/>
<layer number="111" name="LPC17xx" color="7" fill="1" visible="no" active="yes"/>
<layer number="112" name="tSilk" color="7" fill="1" visible="no" active="yes"/>
<layer number="113" name="ReferenceLS" color="7" fill="1" visible="no" active="no"/>
<layer number="116" name="Patch_BOT" color="9" fill="4" visible="no" active="yes"/>
<layer number="118" name="Rect_Pads" color="7" fill="1" visible="no" active="no"/>
<layer number="121" name="_tsilk" color="7" fill="1" visible="no" active="yes"/>
<layer number="122" name="_bsilk" color="7" fill="1" visible="no" active="yes"/>
<layer number="123" name="tTestmark" color="7" fill="1" visible="no" active="yes"/>
<layer number="124" name="bTestmark" color="7" fill="1" visible="no" active="yes"/>
<layer number="125" name="_tNames" color="7" fill="1" visible="no" active="yes"/>
<layer number="126" name="_bNames" color="7" fill="1" visible="no" active="yes"/>
<layer number="127" name="_tValues" color="7" fill="1" visible="no" active="yes"/>
<layer number="128" name="_bValues" color="7" fill="1" visible="no" active="yes"/>
<layer number="129" name="Mask" color="7" fill="1" visible="yes" active="yes"/>
<layer number="131" name="tAdjust" color="7" fill="1" visible="no" active="yes"/>
<layer number="132" name="bAdjust" color="7" fill="1" visible="no" active="yes"/>
<layer number="144" name="Drill_legend" color="7" fill="1" visible="no" active="yes"/>
<layer number="150" name="Notes" color="7" fill="1" visible="no" active="yes"/>
<layer number="151" name="HeatSink" color="7" fill="1" visible="no" active="yes"/>
<layer number="152" name="_bDocu" color="7" fill="1" visible="no" active="yes"/>
<layer number="153" name="FabDoc1" color="6" fill="1" visible="no" active="no"/>
<layer number="154" name="FabDoc2" color="2" fill="1" visible="no" active="no"/>
<layer number="155" name="FabDoc3" color="7" fill="15" visible="no" active="no"/>
<layer number="199" name="Contour" color="7" fill="1" visible="no" active="yes"/>
<layer number="200" name="200bmp" color="1" fill="10" visible="no" active="yes"/>
<layer number="201" name="201bmp" color="2" fill="1" visible="no" active="no"/>
<layer number="202" name="202bmp" color="3" fill="1" visible="no" active="no"/>
<layer number="203" name="203bmp" color="4" fill="10" visible="no" active="yes"/>
<layer number="204" name="204bmp" color="5" fill="10" visible="no" active="yes"/>
<layer number="205" name="205bmp" color="6" fill="10" visible="no" active="yes"/>
<layer number="206" name="206bmp" color="7" fill="10" visible="no" active="yes"/>
<layer number="207" name="207bmp" color="8" fill="10" visible="no" active="yes"/>
<layer number="208" name="208bmp" color="9" fill="10" visible="no" active="yes"/>
<layer number="209" name="209bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="210" name="210bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="211" name="211bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="212" name="212bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="213" name="213bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="214" name="214bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="215" name="215bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="216" name="216bmp" color="7" fill="1" visible="no" active="yes"/>
<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
<layer number="225" name="225bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="226" name="226bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="227" name="227bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="228" name="228bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="229" name="229bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="230" name="230bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="231" name="Eagle3D_PG1" color="7" fill="1" visible="no" active="no"/>
<layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="no" active="no"/>
<layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="no" active="no"/>
<layer number="248" name="Housing" color="7" fill="1" visible="yes" active="yes"/>
<layer number="249" name="Edge" color="7" fill="1" visible="no" 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="254" name="cooling" color="7" fill="1" visible="no" active="yes"/>
<layer number="255" name="routoute" color="7" fill="1" visible="yes" active="yes"/>
</layers>
<schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R">
<libraries>
<library name="microbuilder">
<description><h2><b>microBuilder.eu</b> Eagle Footprint Library</h2>
<p>Footprints for common components used in our projects and products. This is the same library that we use internally, and it is regularly updated. The newest version can always be found at <b>www.microBuilder.eu</b>. If you find this library useful, please feel free to purchase something from our online store. Please also note that all holes are optimised for metric drill bits!</p>
<h3>Obligatory Warning</h3>
<p>While it probably goes without saying, there are no guarantees that the footprints or schematic symbols in this library are flawless, and we make no promises of fitness for production, prototyping or any other purpose. These libraries are provided for information puposes only, and are used at your own discretion. While we make every effort to produce accurate footprints, and many of the items found in this library have be proven in production, we can't make any promises of suitability for a specific purpose. If you do find any errors, though, please feel free to contact us at www.microbuilder.eu to let us know about it so that we can update the library accordingly!</p>
<h3>Revision History</h3>
<p>
<table width="100%" bgcolor="#EEE">
<tr bgcolor="#CCC">
<td width="60">
<b>Version</b>
</td>
<td width="100">
<b>Release Date</b>
</td>
<td>
<b>Changes</b>
</td>
</tr>
<tr>
<td>1.07</td>
<td>9 August 2011</td>
<td>
Parts Added:
<ul>
<li>2N7002PS - Dual N-Channel MOSFET (SOT363)</li>
<li>24AA256 - 256K (32K x 8) I2C EEPROM</li>
<li>74HC4050D - 6-channel level shifter</li>
<li>74LCX245MTC - 8-bit 5.0-3.3V level shifter</li>
<li>93LC46B - 1K 16-Bit EEPROM (for FT2232H)</li>
<li>A4983 - Stepper Motor Driver</li>
<li>AD7780 - 24-Bit Sigma-Delta ADC with 128x PGA</li>
<li>ADP3303 - High Accuracy 200 mA LDO</li>
<li>ADXL345 - Digital Accelerometer</li>
<li>ANT-868-SP - 868MHz SMT Antenna</li>
<li>BMP085 - Digital Pressue Sensor</li>
<li>FT2232H - Dual High-Speed USB to UART (LQFP64)</li>
<li>ILI9481_LCD - 320x480 LCD</li>
<li>ISL12022M - Temp Comp. RTC</li>
<li>HMC5883L - Digital 3-Axis Compass</li>
<li>ITG-3200 - Digital 3-Axis Gyroscope</li>
<li>L3G2400D - 3-Axis I²C/SPI Gyroscope</li>
<li>LAN8720 - 10/100 Ethernet PHY (QFN-24)</li>
<li>LM4811 - Headphone Amplifier</li>
<li>LOADCELL - Connectors for 4-wire load cells</li>
<li>LPC1227/6/5/4 - Cortex M0 MCU</li>
<li>LTC3581 - 3.3A Boost/Inverting DC/DC</li>
<li>M25P16 - 16MBit Serial Flash (SPI)</li>
<li>MAX3421E - USB Device/Host Controller</li>
<li>MCP6022 - Dual 10MHz Op-Amp (SOIC8)</li>
<li>MCP73871 - LIPO Battery Charger</li>
<li>OL2381 - 315/434/868/915 MHz Transceiver</li>
<li>PCF2129A - High Accuracy RTC w/Integrated Crystal</li>
<li>SN74AUP - Tri-State Buffer</li>
<li>SPX29302 - 3A 1% Adjustable LDO Regulator (TO263)</li>
<li>STEREOJACK - 3.5mm Headphone Jack (Courtesy Adafruit)</li>
<li>TPS61029 - Boost Converter/li>
<li>TXS0102 - 2-Bit bi-directional level shifter (I2C)</li>
<li>TXB0104PWR - 4-Bit bi-directional level shifter</li>
<li>TXB0108PWR - 8-Bit bi-directional level shifter</li>
<li>UPD5713TK - 50MHz-2.5GHz SPDT Switch</li>
<li>VCNL4000 - Digital Proximity and Light Sensor</li>
</ul>
Parts Updated:
<ul>
<li>LPC1754 - Removed 1756+ pin labels (ENET+I2S)</li>
<li>JST_2PIN - Added SH-type connector as well</li>
<li>LED_RGB_PLCC6 - Changed to CREE CLV61-FKB</li>
<li>TSL2561 - Added DFN footprint (CS obsolete)</li>
</ul>
<br/>
</td>
</tr>
<tr>
<td>1.06</td>
<td>10 August 2010</td>
<td>
Parts Added:
<ul>
<li>ADM1191 - I2C Digital Power Monitor</li>
<li>ADT7410 - 13-bit +/-0.5°C I2C Temp. Sensor</li>
<li>DP83848 - 10/100 Ethernet Transceiver (40-LLP)</li>
<li>ILI9325 - 2.8" TFT LCD w/Touch Screen</li>
<li>LM358 - SOIC8 OP-AMP</li>
<li>LM2671 - 500mA Switching Step-Down Voltage Regulator</li>
<li>LPC1768 - 100MHz Cortex M3, 512KB Flash/64KB SRAM</li>
<li>LPC313x/314x - ARM926EJ-S MCUs (TFBGA180)</li>
<li>LTC3554 - USB Lipo Charger w/Dual Step-Down</li>
<li>MBED - MBED footprint and pinout</li>
<li>MIC5387 - 3 Output 150mA LDO</li>
<li>MICROSD - uSD/Transflash Connector</li>
<li>MOSFET-P - P-Channel MOSFET</li>
<li>MT48H32M16LF - 512Mb Low-Power SDRAM (VFBGA54)</li>
<li>OSCILLATOR - 5x7mm SMT Oscillator</li>
<li>S1D13743 - TFT LCD Controller with 464K SRAM</li>
<li>VREG_SOT23-5 - Single Part for SOT23-5 Linear Regulators</li>
</ul>
Parts Updated:
<ul>
<li>DCBarrel: Fixed reversed GND/GNDBreak pins on SMT version</li>
</ul>
<br/>
</td>
</tr>
<tr>
<td>1.05</td>
<td>24 April, 2010</td>
<td>
Parts Added:
<ul>
<li>AT25040A - Atmel 1K/4K SPI EEPROM (SOIC8 and TSSOP8)</li>
<li>BRIDGERECTIFIER - Comchip C4S-G 400V 800mA Peak 1.1V Vf</li>
<li>DIODE-ZENER - Zener Diode</li>
<li>FTDIUSBCABLE - Connector for FTDI's TTL-232R USB/RS232 Cable</li>
<li>LED_RGB_PLCC4 - PLCC4 RGB LED (Common Anode)</li>
<li>LPC1113/4_QFN - LPC1113/LPC1114 in QFN33</li>
<li>LD39015xx - Ultra low dropout 150mA voltage regulator</li>
<li>MCP24AA32 - Microchip 32K 1.8V I2C EEPROM (SOT23-5)</li>
<li>PN532 - 13.56MHz contactless communication transceiver</li>
<li>TRANSISTOR_NPN - 500mA 45V NPN Transistor (BC817)</li>
</ul>
<br/>
</td>
</tr>
<tr>
<td>1.04</td>
<td>14 January, 2010</td>
<td>
Parts Added:
<ul>
<li>ANTENNA868MHZ - 868MHz SMT/Chip Antenna</li>
<li>AT86RF212 - 700/800/900 MHz Transceiver</li>
<li>BALUN - 800-1000 MHz (1206)</li>
<li>BALUN+LP - 863-928 MHz Balun with Built-In LP Filter (0805)</li>
<li>LOWPASSFILTER - 869MHz RF Low Pass Filter (0603)</li>
<li>SMACONNECTOR - 90° DIP SMA Connector</li>
</ul>
<br/>
</td>
</tr>
<tr>
<td>1.03</td>
<td>15 December 2009</td>
<td>
Parts Added:
<ul>
<li>BUTTON_SMT - 4-Pin soft-touch SMT button</li>
<li>DIODE - Add SOD-323, SOD-523 Footprints</li>
<li>FERRITE - 120 0hm, 600mA Ferrite Chip</li>
<li>PSP_LCDOUTLINE - Dimensional Drawing for Sharp LQ043 LCD</li>
<li>RJ45 - Ethernet Connector with LEDs and internal transformer</li>
</ul>
Parts Updated:
<ul>
<li>DCBARREL - SMT version updated to improve manufacturability (added tRestrict polygons)</li>
<li>JTAG-CORTEXM3 - Footprints updated to correspond to real physical dimensions</li>
</ul>
<br/>
</td>
</tr>
<tr>
<td>1.02</td>
<td>26 November 2009</td>
<td>
Parts Added:
<ul>
<li>BAT54C - 200mA 30V Dual Schottky Diode (Common Cathode) </li>
<li>HEADER-1x20 - 1x20 2.54mm/0.1" Header Pins</li>
<li>LPC2478 - 72MHz ARM7 MCU (QFP208 Package)</li>
<li>LPC1113/4 - 50MHz Cortex M0 MCU (QFP48 Package)</li>
<li>MAX1698 - Step-Up Current Regulator for LED Backlights</li>
<li>MT48LC4M16A2P - Micron 64MB SDRAM (4Mb x 16)</li>
<li>PTC - 100ma, 250ma and 750mA PTCs</li>
</ul>
<br/>
</td>
</tr>
<tr>
<td>1.01</td>
<td>14 November 2009</td>
<td>
Parts Added:
<ul>
<li>NCP1400A - 100mA PWM Step-Up Regulator (3.3V and 5.0V SOT23-5)</li>
<li>MIC5320 - Dual 150mA ULDO Linear Regulator</li>
<li>INDUCTOR - 10µH, 22µH and 47µH 1007 Inductors</li>
</ul>
<br/>
</td>
</tr>
<tr>
<td>1.00</td>
<td>12 November 2009</td>
<td>Initial Release</td>
</tr>
</table>
</p>
<h3>License</h3>
<p>This work is placed in the public domain, and may be freely used for commercial and non-commercial work with the following conditions:</p>
<p>THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
</p></description>
<packages>
<package name="WQFN20">
<description><p>20-PWQFN 4.0x4.0mm 0.5mm pitch</p>
<b>Source</b>: http://www.ti.com/lit/ds/symlink/tpa2012d2.pdf</description>
<smd name="21" x="0" y="0" dx="2.45" dy="2.45" layer="1" cream="no"/>
<wire x1="-2" y1="2" x2="2" y2="2" width="0.2032" layer="51"/>
<wire x1="2" y1="2" x2="2" y2="-2" width="0.2032" layer="51"/>
<wire x1="2" y1="-2" x2="-2" y2="-2" width="0.2032" layer="51"/>
<wire x1="-2" y1="-2" x2="-2" y2="2" width="0.2032" layer="51"/>
<smd name="20" x="-1.975" y="-1" dx="0.28" dy="0.75" layer="1" roundness="100" rot="R270"/>
<smd name="1" x="-1" y="-1.975" dx="0.28" dy="0.75" layer="1" roundness="100"/>
<smd name="2" x="-0.5" y="-1.975" dx="0.28" dy="0.75" layer="1" roundness="100"/>
<smd name="3" x="0" y="-1.975" dx="0.28" dy="0.75" layer="1" roundness="100"/>
<smd name="4" x="0.5" y="-1.975" dx="0.28" dy="0.75" layer="1" roundness="100"/>
<smd name="5" x="1" y="-1.975" dx="0.28" dy="0.75" layer="1" roundness="100"/>
<smd name="6" x="1.975" y="-1" dx="0.28" dy="0.75" layer="1" roundness="100" rot="R90"/>
<smd name="7" x="1.975" y="-0.5" dx="0.28" dy="0.75" layer="1" roundness="100" rot="R90"/>
<smd name="8" x="1.975" y="0" dx="0.28" dy="0.75" layer="1" roundness="100" rot="R90"/>
<smd name="9" x="1.975" y="0.5" dx="0.28" dy="0.75" layer="1" roundness="100" rot="R90"/>
<smd name="10" x="1.975" y="1" dx="0.28" dy="0.75" layer="1" roundness="100" rot="R90"/>
<smd name="11" x="1" y="1.975" dx="0.28" dy="0.75" layer="1" roundness="100" rot="R180"/>
<smd name="16" x="-1.975" y="1" dx="0.28" dy="0.75" layer="1" roundness="100" rot="R270"/>
<smd name="17" x="-1.975" y="0.5" dx="0.28" dy="0.75" layer="1" roundness="100" rot="R270"/>
<smd name="18" x="-1.975" y="0" dx="0.28" dy="0.75" layer="1" roundness="100" rot="R270"/>
<smd name="19" x="-1.975" y="-0.5" dx="0.28" dy="0.75" layer="1" roundness="100" rot="R270"/>
<wire x1="-1.6" y1="2.1" x2="-2.1" y2="2.1" width="0.2032" layer="21"/>
<wire x1="-2.1" y1="2.1" x2="-2.1" y2="1.6" width="0.2032" layer="21"/>
<wire x1="1.6" y1="2.1" x2="2.1" y2="2.1" width="0.2032" layer="21"/>
<wire x1="2.1" y1="2.1" x2="2.1" y2="1.6" width="0.2032" layer="21"/>
<wire x1="-2.1" y1="-1.6" x2="-2.1" y2="-2.1" width="0.2032" layer="21"/>
<wire x1="-2.1" y1="-2.1" x2="-1.6" y2="-2.1" width="0.2032" layer="21"/>
<wire x1="1.6" y1="-2.1" x2="2.1" y2="-2.1" width="0.2032" layer="21"/>
<wire x1="2.1" y1="-2.1" x2="2.1" y2="-1.6" width="0.2032" layer="21"/>
<text x="-2.024" y="2.532" size="0.8128" layer="25" ratio="18">>NAME</text>
<text x="-2.024" y="-3.04" size="0.4064" layer="27" ratio="10">>VALUE</text>
<circle x="-1.012" y="-2.7606" radius="0.113590625" width="0.2032" layer="21"/>
<rectangle x1="-1.15" y1="0.2" x2="-0.2" y2="1.15" layer="31"/>
<rectangle x1="0.2" y1="0.2" x2="1.15" y2="1.15" layer="31"/>
<rectangle x1="0.2" y1="-1.15" x2="1.15" y2="-0.2" layer="31"/>
<rectangle x1="-1.15" y1="-1.15" x2="-0.2" y2="-0.2" layer="31"/>
<smd name="12" x="0.5" y="1.975" dx="0.28" dy="0.75" layer="1" roundness="100" rot="R180"/>
<smd name="13" x="0" y="1.975" dx="0.28" dy="0.75" layer="1" roundness="100" rot="R180"/>
<smd name="14" x="-0.5" y="1.975" dx="0.28" dy="0.75" layer="1" roundness="100" rot="R180"/>
<smd name="15" x="-1" y="1.975" dx="0.28" dy="0.75" layer="1" roundness="100" rot="R180"/>
</package>
<package name="0805">
<description>0805 (2012 Metric)</description>
<wire x1="-1.873" y1="0.883" x2="1.873" y2="0.883" width="0.0508" layer="39"/>
<wire x1="1.873" y1="-0.883" x2="-1.873" y2="-0.883" width="0.0508" layer="39"/>
<wire x1="-1.873" y1="-0.883" x2="-1.873" y2="0.883" width="0.0508" layer="39"/>
<wire x1="-0.381" y1="0.66" x2="0.381" y2="0.66" width="0.1016" layer="51"/>
<wire x1="-0.356" y1="-0.66" x2="0.381" y2="-0.66" width="0.1016" layer="51"/>
<wire x1="1.873" y1="0.883" x2="1.873" y2="-0.883" width="0.0508" layer="39"/>
<wire x1="1.85" y1="1" x2="1.85" y2="-1" width="0.2032" layer="21"/>
<wire x1="1.85" y1="-1" x2="-1.85" y2="-1" width="0.2032" layer="21"/>
<wire x1="-1.85" y1="-1" x2="-1.85" y2="1" width="0.2032" layer="21"/>
<wire x1="-1.85" y1="1" x2="1.85" y2="1" width="0.2032" layer="21"/>
<smd name="1" x="-0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
<smd name="2" x="0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
<text x="2.032" y="-0.127" size="0.8128" layer="25" ratio="18">>NAME</text>
<text x="2.032" y="-0.762" size="0.4064" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-1.0922" y1="-0.7239" x2="-0.3421" y2="0.7262" layer="51"/>
<rectangle x1="0.3556" y1="-0.7239" x2="1.1057" y2="0.7262" layer="51"/>
<rectangle x1="-0.1001" y1="-0.4001" x2="0.1001" y2="0.4001" layer="35"/>
</package>
<package name="1X10_ROUND70">
<wire x1="-12.7" y1="0.635" x2="-12.7" y2="-0.635" width="0.2032" layer="51"/>
<pad name="1" x="-11.43" y="0" drill="1" diameter="1.778" rot="R90"/>
<pad name="2" x="-8.89" y="0" drill="1" diameter="1.778" rot="R90"/>
<pad name="3" x="-6.35" y="0" drill="1" diameter="1.778" rot="R90"/>
<pad name="4" x="-3.81" y="0" drill="1" diameter="1.778" rot="R90"/>
<pad name="5" x="-1.27" y="0" drill="1" diameter="1.778" rot="R90"/>
<pad name="6" x="1.27" y="0" drill="1" diameter="1.778" rot="R90"/>
<pad name="7" x="3.81" y="0" drill="1" diameter="1.778" rot="R90"/>
<pad name="8" x="6.35" y="0" drill="1" diameter="1.778" rot="R90"/>
<pad name="9" x="8.89" y="0" drill="1" diameter="1.778" rot="R90"/>
<pad name="10" x="11.43" y="0" drill="1" diameter="1.778" rot="R90"/>
<text x="-12.7762" y="1.8288" size="0.8128" layer="25" ratio="18">>NAME</text>
<text x="-12.7" y="-3.175" size="0.4064" layer="27" ratio="10">>VALUE</text>
<rectangle x1="8.636" y1="-0.254" x2="9.144" y2="0.254" layer="51"/>
<rectangle x1="6.096" y1="-0.254" x2="6.604" y2="0.254" layer="51"/>
<rectangle x1="3.556" y1="-0.254" x2="4.064" y2="0.254" layer="51"/>
<rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
<rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
<rectangle x1="-4.064" y1="-0.254" x2="-3.556" y2="0.254" layer="51"/>
<rectangle x1="-6.604" y1="-0.254" x2="-6.096" y2="0.254" layer="51"/>
<rectangle x1="-9.144" y1="-0.254" x2="-8.636" y2="0.254" layer="51"/>
<rectangle x1="-11.684" y1="-0.254" x2="-11.176" y2="0.254" layer="51"/>
<rectangle x1="11.176" y1="-0.254" x2="11.684" y2="0.254" layer="51"/>
</package>
<package name="TERMBLOCK_1X2-3.5MM">
<wire x1="-3.4" y1="3.4" x2="-3.4" y2="-2.2" width="0.2032" layer="21"/>
<wire x1="-3.4" y1="-2.2" x2="-3.4" y2="-3.6" width="0.2032" layer="21"/>
<wire x1="-3.4" y1="-3.6" x2="3.6" y2="-3.6" width="0.2032" layer="21"/>
<wire x1="3.6" y1="-3.6" x2="3.6" y2="-2.2" width="0.2032" layer="21"/>
<wire x1="3.6" y1="-2.2" x2="3.6" y2="3.4" width="0.2032" layer="21"/>
<wire x1="3.6" y1="3.4" x2="-3.4" y2="3.4" width="0.2032" layer="21"/>
<wire x1="-3.4" y1="-2.2" x2="3.6" y2="-2.2" width="0.2032" layer="21"/>
<pad name="1" x="1.8" y="0" drill="1" diameter="2.1844"/>
<pad name="2" x="-1.7" y="0" drill="1" diameter="2.1844"/>
<text x="-3" y="3.89" size="0.8128" layer="25" ratio="18">>NAME</text>
<text x="-3.048" y="-3.048" size="0.4064" layer="27" ratio="10">>VALUE</text>
</package>
<package name="FIDUCIAL-1X2.5">
<circle x="0" y="0" radius="1.1" width="1.2" layer="29"/>
<circle x="0" y="0" radius="1.1" width="1.2" layer="39"/>
<circle x="0" y="0" radius="1.1" width="1.2" layer="41"/>
<smd name="1" x="0" y="0" dx="1" dy="1" layer="1" roundness="100" cream="no"/>
<text x="-0.508" y="-1.016" size="0.4064" layer="25">1mm</text>
</package>
<package name="PASS-ROUND">
<description><b>FIDUCIAL MARKER</b><p>
round, layers 1 + 16 + 21 + 39 + 49</description>
<wire x1="0" y1="0.508" x2="0.508" y2="0" width="1.4224" layer="49" curve="-90" cap="flat"/>
<wire x1="-0.508" y1="0" x2="0" y2="-0.508" width="1.4224" layer="49" curve="90" cap="flat"/>
<wire x1="0" y1="0.508" x2="0.508" y2="0" width="1.4224" layer="49" curve="-90" cap="flat"/>
<wire x1="-0.508" y1="0" x2="0" y2="-0.508" width="1.4224" layer="49" curve="90" cap="flat"/>
<wire x1="-2.54" y1="0" x2="-1.27" y2="0" width="0.1524" layer="49"/>
<wire x1="0" y1="2.54" x2="0" y2="1.27" width="0.1524" layer="49"/>
<wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.1524" layer="49"/>
<wire x1="2.54" y1="0" x2="1.27" y2="0" width="0.1524" layer="49"/>
<wire x1="-2.54" y1="0" x2="-1.524" y2="0" width="0.1524" layer="1"/>
<wire x1="0" y1="2.54" x2="0" y2="1.524" width="0.1524" layer="1"/>
<wire x1="0" y1="-2.54" x2="0" y2="-1.524" width="0.1524" layer="1"/>
<wire x1="2.54" y1="0" x2="1.524" y2="0" width="0.1524" layer="1"/>
<wire x1="-2.54" y1="0" x2="-1.524" y2="0" width="0.1524" layer="16"/>
<wire x1="0" y1="2.54" x2="0" y2="1.524" width="0.1524" layer="16"/>
<wire x1="0" y1="-2.54" x2="0" y2="-1.524" width="0.1524" layer="16"/>
<wire x1="2.54" y1="0" x2="1.524" y2="0" width="0.1524" layer="16"/>
<wire x1="0.0254" y1="0.5842" x2="0.5842" y2="0.0254" width="1.1176" layer="16" curve="-90" cap="flat"/>
<wire x1="0.0254" y1="0.5842" x2="0.5842" y2="0.0254" width="1.1176" layer="1" curve="-90" cap="flat"/>
<wire x1="-0.5842" y1="-0.0254" x2="-0.0254" y2="-0.5842" width="1.1176" layer="16" curve="90" cap="flat"/>
<wire x1="-0.5842" y1="-0.0254" x2="-0.0254" y2="-0.5842" width="1.1176" layer="1" curve="90" cap="flat"/>
<circle x="0" y="0" radius="1.27" width="0.1524" layer="49"/>
<circle x="0" y="0" radius="1.27" width="0.1524" layer="49"/>
<circle x="0" y="0" radius="1.27" width="0.1524" layer="1"/>
<circle x="0" y="0" radius="1.27" width="0.1524" layer="16"/>
<circle x="0" y="0" radius="2.54" width="0" layer="29"/>
<circle x="0" y="0" radius="2.54" width="0" layer="30"/>
</package>
<package name="FIDUCIAL_1MM">
<smd name="1" x="0" y="0" dx="1" dy="1" layer="1" roundness="100" cream="no"/>
<wire x1="-0.75" y1="0" x2="0" y2="0.75" width="0.5" layer="29" curve="-90"/>
<wire x1="0" y1="0.75" x2="0.75" y2="0" width="0.5" layer="29" curve="-90"/>
<wire x1="0.75" y1="0" x2="0" y2="-0.75" width="0.5" layer="29" curve="-90"/>
<wire x1="0" y1="-0.75" x2="-0.75" y2="0" width="0.5" layer="29" curve="-90"/>
<wire x1="-0.75" y1="0" x2="0" y2="0.75" width="0.5" layer="41" curve="-90"/>
<wire x1="0" y1="0.75" x2="0.75" y2="0" width="0.5" layer="41" curve="-90"/>
<wire x1="0.75" y1="0" x2="0" y2="-0.75" width="0.5" layer="41" curve="-90"/>
<wire x1="0" y1="-0.75" x2="-0.75" y2="0" width="0.5" layer="41" curve="-90"/>
<wire x1="-0.75" y1="0" x2="0" y2="0.75" width="0.5" layer="39" curve="-90"/>
<wire x1="0" y1="0.75" x2="0.75" y2="0" width="0.5" layer="39" curve="-90"/>
<wire x1="0.75" y1="0" x2="0" y2="-0.75" width="0.5" layer="39" curve="-90"/>
<wire x1="0" y1="-0.75" x2="-0.75" y2="0" width="0.5" layer="39" curve="-90"/>
</package>
<package name="MOUNTINGHOLE_2.5_PLATED">
<circle x="0" y="0" radius="2" width="0.2032" layer="21"/>
<circle x="0" y="0" radius="1" width="2.032" layer="39"/>
<circle x="0" y="0" radius="1" width="2.032" layer="40"/>
<circle x="0" y="0" radius="1" width="2.032" layer="41"/>
<circle x="0" y="0" radius="1" width="2.032" layer="42"/>
<pad name="P$1" x="0" y="0" drill="2.5" diameter="3.2"/>
</package>
<package name="0603">
<description>0603 (1608 Metric)</description>
<wire x1="-1.473" y1="0.729" x2="1.473" y2="0.729" width="0.0508" layer="39"/>
<wire x1="1.473" y1="0.729" x2="1.473" y2="-0.729" width="0.0508" layer="39"/>
<wire x1="1.473" y1="-0.729" x2="-1.473" y2="-0.729" width="0.0508" layer="39"/>
<wire x1="-1.473" y1="-0.729" x2="-1.473" y2="0.729" width="0.0508" layer="39"/>
<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
<wire x1="-1.65" y1="0.75" x2="1.65" y2="0.75" width="0.2032" layer="21"/>
<wire x1="1.65" y1="0.75" x2="1.65" y2="-0.75" width="0.2032" layer="21"/>
<wire x1="1.65" y1="-0.75" x2="-1.65" y2="-0.75" width="0.2032" layer="21"/>
<wire x1="-1.65" y1="-0.75" x2="-1.65" y2="0.75" width="0.2032" layer="21"/>
<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
<text x="1.778" y="-0.127" size="0.8128" layer="25" font="vector" ratio="18">>NAME</text>
<text x="1.778" y="-0.762" size="0.4064" layer="27" font="vector" ratio="10">>VALUE</text>
<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
</package>
<package name="0603-MINI">
<description>0603-Mini
<p>Mini footprint for dense boards</p></description>
<wire x1="-1.346" y1="0.583" x2="1.346" y2="0.583" width="0.0508" layer="39"/>
<wire x1="1.346" y1="0.583" x2="1.346" y2="-0.583" width="0.0508" layer="39"/>
<wire x1="1.346" y1="-0.583" x2="-1.346" y2="-0.583" width="0.0508" layer="39"/>
<wire x1="-1.346" y1="-0.583" x2="-1.346" y2="0.583" width="0.0508" layer="39"/>
<wire x1="-1.45" y1="-0.7" x2="-1.45" y2="0.7" width="0.2032" layer="21"/>
<wire x1="-1.45" y1="0.7" x2="1.45" y2="0.7" width="0.2032" layer="21"/>
<wire x1="1.45" y1="0.7" x2="1.45" y2="-0.7" width="0.2032" layer="21"/>
<wire x1="1.45" y1="-0.7" x2="-1.45" y2="-0.7" width="0.2032" layer="21"/>
<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
<smd name="1" x="-0.75" y="0" dx="0.9" dy="0.9" layer="1"/>
<smd name="2" x="0.75" y="0" dx="0.9" dy="0.9" layer="1"/>
<text x="1.524" y="-0.0635" size="0.8128" layer="25" ratio="18">>NAME</text>
<text x="1.524" y="-0.635" size="0.4064" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
</package>
<package name="0805_NOTHERMALS">
<wire x1="-1.873" y1="0.883" x2="1.873" y2="0.883" width="0.0508" layer="39"/>
<wire x1="1.873" y1="-0.883" x2="-1.873" y2="-0.883" width="0.0508" layer="39"/>
<wire x1="-1.873" y1="-0.883" x2="-1.873" y2="0.883" width="0.0508" layer="39"/>
<wire x1="-0.381" y1="0.66" x2="0.381" y2="0.66" width="0.1016" layer="51"/>
<wire x1="-0.356" y1="-0.66" x2="0.381" y2="-0.66" width="0.1016" layer="51"/>
<wire x1="1.873" y1="0.883" x2="1.873" y2="-0.883" width="0.0508" layer="39"/>
<wire x1="1.85" y1="1" x2="1.85" y2="-1" width="0.2032" layer="21"/>
<wire x1="1.85" y1="-1" x2="-1.85" y2="-1" width="0.2032" layer="21"/>
<wire x1="-1.85" y1="-1" x2="-1.85" y2="1" width="0.2032" layer="21"/>
<wire x1="-1.85" y1="1" x2="1.85" y2="1" width="0.2032" layer="21"/>
<smd name="1" x="-0.95" y="0" dx="1.3" dy="1.5" layer="1" thermals="no"/>
<smd name="2" x="0.95" y="0" dx="1.3" dy="1.5" layer="1" thermals="no"/>
<text x="2.032" y="-0.127" size="0.8128" layer="25" ratio="18">>NAME</text>
<text x="2.032" y="-0.762" size="0.4064" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-1.0922" y1="-0.7239" x2="-0.3421" y2="0.7262" layer="51"/>
<rectangle x1="0.3556" y1="-0.7239" x2="1.1057" y2="0.7262" layer="51"/>
</package>
<package name="_0402">
<description><b> 0402</b></description>
<wire x1="-0.245" y1="0.174" x2="0.245" y2="0.174" width="0.1016" layer="51"/>
<wire x1="0.245" y1="-0.174" x2="-0.245" y2="-0.174" width="0.1016" layer="51"/>
<wire x1="-1.0573" y1="0.5557" x2="1.0573" y2="0.5557" width="0.2032" layer="21"/>
<wire x1="1.0573" y1="0.5557" x2="1.0573" y2="-0.5556" width="0.2032" layer="21"/>
<wire x1="1.0573" y1="-0.5556" x2="-1.0573" y2="-0.5557" width="0.2032" layer="21"/>
<wire x1="-1.0573" y1="-0.5557" x2="-1.0573" y2="0.5557" width="0.2032" layer="21"/>
<smd name="1" x="-0.508" y="0" dx="0.6" dy="0.6" layer="1"/>
<smd name="2" x="0.508" y="0" dx="0.6" dy="0.6" layer="1"/>
<text x="-0.9525" y="0.7939" size="0.8128" layer="25" ratio="18">>NAME</text>
<text x="-0.9525" y="-1.3336" size="0.4064" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-0.0794" y1="-0.2381" x2="0.0794" y2="0.2381" layer="35"/>
<rectangle x1="0.25" y1="-0.25" x2="0.5" y2="0.25" layer="51"/>
<rectangle x1="-0.5" y1="-0.25" x2="-0.25" y2="0.25" layer="51"/>
</package>
<package name="_0402MP">
<description><b>0402 MicroPitch<p></description>
<wire x1="-0.245" y1="0.174" x2="0.245" y2="0.174" width="0.1016" layer="51"/>
<wire x1="0.245" y1="-0.174" x2="-0.245" y2="-0.174" width="0.1016" layer="51"/>
<wire x1="0" y1="0.127" x2="0" y2="-0.127" width="0.2032" layer="21"/>
<smd name="1" x="-0.508" y="0" dx="0.5" dy="0.5" layer="1"/>
<smd name="2" x="0.508" y="0" dx="0.5" dy="0.5" layer="1"/>
<text x="-0.635" y="0.4763" size="0.6096" layer="25" ratio="18">>NAME</text>
<text x="-0.635" y="-0.7938" size="0.4064" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-0.1" y1="-0.2" x2="0.1" y2="0.2" layer="35"/>
<rectangle x1="-0.5" y1="-0.25" x2="-0.254" y2="0.25" layer="51"/>
<rectangle x1="0.2588" y1="-0.25" x2="0.5" y2="0.25" layer="51"/>
</package>
<package name="_0603">
<description><b>0603</b></description>
<wire x1="-0.432" y1="-0.306" x2="0.432" y2="-0.306" width="0.1016" layer="51"/>
<wire x1="0.432" y1="0.306" x2="-0.432" y2="0.306" width="0.1016" layer="51"/>
<wire x1="-1.4605" y1="0.635" x2="1.4605" y2="0.635" width="0.2032" layer="21"/>
<wire x1="1.4605" y1="0.635" x2="1.4605" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="1.4605" y1="-0.635" x2="-1.4605" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="-1.4605" y1="-0.635" x2="-1.4605" y2="0.635" width="0.2032" layer="21"/>
<smd name="1" x="-0.762" y="0" dx="0.9" dy="0.8" layer="1"/>
<smd name="2" x="0.762" y="0" dx="0.9" dy="0.8" layer="1"/>
<text x="-1.27" y="0.9525" size="0.8128" layer="25" ratio="18">>NAME</text>
<text x="-1.27" y="-1.4923" size="0.4064" layer="27" ratio="10">>VALUE</text>
<rectangle x1="0.4318" y1="-0.4" x2="0.8382" y2="0.4" layer="51"/>
<rectangle x1="-0.8382" y1="-0.4" x2="-0.4318" y2="0.4" layer="51"/>
<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
</package>
<package name="_0603MP">
<description><b>0603 MicroPitch</b></description>
<wire x1="-0.432" y1="-0.306" x2="0.432" y2="-0.306" width="0.1016" layer="51"/>
<wire x1="0.432" y1="0.306" x2="-0.432" y2="0.306" width="0.1016" layer="51"/>
<wire x1="0" y1="0.254" x2="0" y2="-0.254" width="0.2032" layer="21"/>
<smd name="1" x="-0.762" y="0" dx="0.8" dy="0.8" layer="1"/>
<smd name="2" x="0.762" y="0" dx="0.8" dy="0.8" layer="1"/>
<text x="-0.9525" y="0.635" size="0.8128" layer="25" ratio="18">>NAME</text>
<text x="-0.9525" y="-0.9525" size="0.4064" layer="27" ratio="10">>VALUE</text>
<rectangle x1="0.4318" y1="-0.4" x2="0.8" y2="0.4" layer="51"/>
<rectangle x1="-0.8" y1="-0.4" x2="-0.4318" y2="0.4" layer="51"/>
<rectangle x1="-0.1999" y1="-0.25" x2="0.1999" y2="0.25" layer="35"/>
</package>
<package name="_0805">
<description><b>0805</b></description>
<wire x1="-0.41" y1="0.585" x2="0.41" y2="0.585" width="0.1016" layer="51"/>
<wire x1="-0.41" y1="-0.585" x2="0.41" y2="-0.585" width="0.1016" layer="51"/>
<wire x1="-1.905" y1="0.889" x2="1.905" y2="0.889" width="0.2032" layer="21"/>
<wire x1="1.905" y1="0.889" x2="1.905" y2="-0.889" width="0.2032" layer="21"/>
<wire x1="1.905" y1="-0.889" x2="-1.905" y2="-0.889" width="0.2032" layer="21"/>
<wire x1="-1.905" y1="-0.889" x2="-1.905" y2="0.889" width="0.2032" layer="21"/>
<smd name="1" x="-1.016" y="0" dx="1.2" dy="1.3" layer="1"/>
<smd name="2" x="1.016" y="0" dx="1.2" dy="1.3" layer="1"/>
<text x="-1.5875" y="1.27" size="0.8128" layer="25" ratio="18">>NAME</text>
<text x="-1.5874" y="-1.651" size="0.4064" layer="27" ratio="10">>VALUE</text>
<rectangle x1="0.4064" y1="-0.65" x2="1.0564" y2="0.65" layer="51"/>
<rectangle x1="-1.0668" y1="-0.65" x2="-0.4168" y2="0.65" layer="51"/>
<rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
</package>
<package name="_0805MP">
<description><b>0805 MicroPitch</b></description>
<wire x1="-0.51" y1="0.535" x2="0.51" y2="0.535" width="0.1016" layer="51"/>
<wire x1="-0.51" y1="-0.535" x2="0.51" y2="-0.535" width="0.1016" layer="51"/>
<wire x1="0" y1="0.508" x2="0" y2="-0.508" width="0.2032" layer="21"/>
<smd name="1" x="-1.016" y="0" dx="1.2" dy="1.3" layer="1"/>
<smd name="2" x="1.016" y="0" dx="1.2" dy="1.3" layer="1"/>
<text x="-1.5875" y="0.9525" size="0.8128" layer="25" ratio="18">>NAME</text>
<text x="-1.5875" y="-1.27" size="0.4064" layer="27" ratio="10">>VALUE</text>
<rectangle x1="0.4064" y1="-0.65" x2="1" y2="0.65" layer="51"/>
<rectangle x1="-1" y1="-0.65" x2="-0.4168" y2="0.65" layer="51"/>
<rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
</package>
<package name="0805_10MGAP">
<wire x1="-0.381" y1="0.66" x2="0.381" y2="0.66" width="0.1016" layer="51"/>
<wire x1="-0.356" y1="-0.66" x2="0.381" y2="-0.66" width="0.1016" layer="51"/>
<smd name="1" x="-1.05" y="0" dx="1.2" dy="1.5" layer="1"/>
<smd name="2" x="1.05" y="0" dx="1.2" dy="1.5" layer="1"/>
<text x="2.032" y="-0.127" size="0.8128" layer="25" ratio="18">>NAME</text>
<text x="2.032" y="-0.762" size="0.4064" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-1.0922" y1="-0.7239" x2="-0.3421" y2="0.7262" layer="51"/>
<rectangle x1="0.3556" y1="-0.7239" x2="1.1057" y2="0.7262" layer="51"/>
<wire x1="0" y1="0.508" x2="0" y2="-0.508" width="0.3048" layer="21"/>
</package>
<package name="2012">
<wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.2032" layer="51"/>
<wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.2032" layer="51"/>
<wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
<wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
<wire x1="-3.302" y1="1.524" x2="3.302" y2="1.524" width="0.2032" layer="21"/>
<wire x1="3.302" y1="1.524" x2="3.302" y2="-1.524" width="0.2032" layer="21"/>
<wire x1="3.302" y1="-1.524" x2="-3.302" y2="-1.524" width="0.2032" layer="21"/>
<wire x1="-3.302" y1="-1.524" x2="-3.302" y2="1.524" width="0.2032" layer="21"/>
<smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
<smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
<text x="-2.54" y="1.8415" size="0.8128" layer="25" ratio="18">>NAME</text>
<text x="-2.667" y="-2.159" size="0.4064" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="51"/>
<rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="51"/>
</package>
<package name="2512">
<description><b>RESISTOR 2512 (Metric 6432)</b></description>
<wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.2032" layer="51"/>
<wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.2032" layer="51"/>
<wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
<wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
<wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
<wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
<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="-3.683" y="1.905" size="0.8128" layer="25" ratio="18">>NAME</text>
<text x="-3.556" y="-2.286" size="0.4064" layer="27" ratio="10">>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"/>
<rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
</package>
<package name="1X10_OVAL">
<description><b>1x10 PIN HEADER</b></description>
<wire x1="-12.7" y1="0.635" x2="-12.7" y2="-0.635" width="0.2032" layer="51"/>
<pad name="1" x="-11.43" y="0" drill="1" shape="long" rot="R90"/>
<pad name="2" x="-8.89" y="0" drill="1" shape="long" rot="R90"/>
<pad name="3" x="-6.35" y="0" drill="1" shape="long" rot="R90"/>
<pad name="4" x="-3.81" y="0" drill="1" shape="long" rot="R90"/>
<pad name="5" x="-1.27" y="0" drill="1" shape="long" rot="R90"/>
<pad name="6" x="1.27" y="0" drill="1" shape="long" rot="R90"/>
<pad name="7" x="3.81" y="0" drill="1" shape="long" rot="R90"/>
<pad name="8" x="6.35" y="0" drill="1" shape="long" rot="R90"/>
<pad name="9" x="8.89" y="0" drill="1" shape="long" rot="R90"/>
<pad name="10" x="11.43" y="0" drill="1" shape="long" rot="R90"/>
<text x="-12.7762" y="1.8288" size="0.8128" layer="25" ratio="18">>NAME</text>
<text x="-12.7" y="-3.175" size="0.4064" layer="27" ratio="10">>VALUE</text>
<rectangle x1="8.636" y1="-0.254" x2="9.144" y2="0.254" layer="51"/>
<rectangle x1="6.096" y1="-0.254" x2="6.604" y2="0.254" layer="51"/>
<rectangle x1="3.556" y1="-0.254" x2="4.064" y2="0.254" layer="51"/>
<rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
<rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
<rectangle x1="-4.064" y1="-0.254" x2="-3.556" y2="0.254" layer="51"/>
<rectangle x1="-6.604" y1="-0.254" x2="-6.096" y2="0.254" layer="51"/>
<rectangle x1="-9.144" y1="-0.254" x2="-8.636" y2="0.254" layer="51"/>
<rectangle x1="-11.684" y1="-0.254" x2="-11.176" y2="0.254" layer="51"/>
<rectangle x1="11.176" y1="-0.254" x2="11.684" y2="0.254" layer="51"/>
</package>
<package name="1X10_ROUND_76">
<wire x1="-12.7" y1="0.635" x2="-12.7" y2="-0.635" width="0.2032" layer="51"/>
<pad name="1" x="-11.43" y="0" drill="1" diameter="1.9304" rot="R90"/>
<pad name="2" x="-8.89" y="0" drill="1" diameter="1.9304" rot="R90"/>
<pad name="3" x="-6.35" y="0" drill="1" diameter="1.9304" rot="R90"/>
<pad name="4" x="-3.81" y="0" drill="1" diameter="1.9304" rot="R90"/>
<pad name="5" x="-1.27" y="0" drill="1" diameter="1.9304" rot="R90"/>
<pad name="6" x="1.27" y="0" drill="1" diameter="1.9304" rot="R90"/>
<pad name="7" x="3.81" y="0" drill="1" diameter="1.9304" rot="R90"/>
<pad name="8" x="6.35" y="0" drill="1" diameter="1.9304" rot="R90"/>
<pad name="9" x="8.89" y="0" drill="1" diameter="1.9304" rot="R90"/>
<pad name="10" x="11.43" y="0" drill="1" diameter="1.9304" rot="R90"/>
<text x="-12.7762" y="1.8288" size="0.8128" layer="25" ratio="18">>NAME</text>
<text x="-12.7" y="-3.175" size="0.4064" layer="27" ratio="10">>VALUE</text>
<rectangle x1="8.636" y1="-0.254" x2="9.144" y2="0.254" layer="51"/>
<rectangle x1="6.096" y1="-0.254" x2="6.604" y2="0.254" layer="51"/>
<rectangle x1="3.556" y1="-0.254" x2="4.064" y2="0.254" layer="51"/>
<rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
<rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
<rectangle x1="-4.064" y1="-0.254" x2="-3.556" y2="0.254" layer="51"/>
<rectangle x1="-6.604" y1="-0.254" x2="-6.096" y2="0.254" layer="51"/>
<rectangle x1="-9.144" y1="-0.254" x2="-8.636" y2="0.254" layer="51"/>
<rectangle x1="-11.684" y1="-0.254" x2="-11.176" y2="0.254" layer="51"/>
<rectangle x1="11.176" y1="-0.254" x2="11.684" y2="0.254" layer="51"/>
</package>
<package name="MOUNTINGHOLE_3.0_PLATED">
<wire x1="-2.159" y1="0" x2="0" y2="-2.159" width="2.4892" layer="51" curve="90" cap="flat"/>
<wire x1="0" y1="2.159" x2="2.159" y2="0" width="2.4892" layer="51" curve="-90" cap="flat"/>
<circle x="0" y="0" radius="3.429" width="0.2032" layer="21"/>
<circle x="0" y="0" radius="0.762" width="0.4572" layer="51"/>
<circle x="0" y="0" radius="3.048" width="2.032" layer="39"/>
<circle x="0" y="0" radius="3.048" width="2.032" layer="43"/>
<circle x="0" y="0" radius="3.048" width="2.032" layer="40"/>
<circle x="0" y="0" radius="3.048" width="2.032" layer="41"/>
<circle x="0" y="0" radius="3.048" width="2.032" layer="42"/>
<pad name="P$1" x="0" y="0" drill="3" diameter="6.4516"/>
<text x="-1.27" y="-3.81" size="1.27" layer="48">3,0</text>
</package>
<package name="MOUNTINGHOLE_1.0_PLATED">
<circle x="0" y="0" radius="1.75" width="0.2032" layer="21"/>
<circle x="0" y="0" radius="1" width="2.032" layer="39"/>
<circle x="0" y="0" radius="1" width="2.032" layer="43"/>
<circle x="0" y="0" radius="1" width="2.032" layer="40"/>
<circle x="0" y="0" radius="1" width="2.032" layer="41"/>
<circle x="0" y="0" radius="1" width="2.032" layer="42"/>
<pad name="P$1" x="0" y="0" drill="1" diameter="3"/>
<text x="-0.87" y="-2.74" size="0.8128" layer="48">1,0</text>
</package>
<package name="MOUNTINGHOLE_2.0_PLATED">
<circle x="0" y="0" radius="1.8" width="0.2032" layer="21"/>
<circle x="0" y="0" radius="1" width="2.032" layer="39"/>
<circle x="0" y="0" radius="1" width="2.032" layer="43"/>
<circle x="0" y="0" radius="1" width="2.032" layer="40"/>
<circle x="0" y="0" radius="1" width="2.032" layer="41"/>
<circle x="0" y="0" radius="1" width="2.032" layer="42"/>
<pad name="P$1" x="0" y="0" drill="2.2" diameter="3"/>
<text x="-0.87" y="-2.74" size="0.8128" layer="48">2,0</text>
</package>
<package name="MOUNTINGHOLE_3.0_PLATEDTHIN">
<circle x="0" y="0" radius="2.2" width="0.2" layer="21"/>
<circle x="0" y="0" radius="1" width="2.032" layer="39"/>
<circle x="0" y="0" radius="1" width="2.032" layer="43"/>
<circle x="0" y="0" radius="1" width="2.032" layer="40"/>
<circle x="0" y="0" radius="1" width="2.032" layer="41"/>
<circle x="0" y="0" radius="1" width="2.032" layer="42"/>
<pad name="P$1" x="0" y="0" drill="3" diameter="3.6"/>
</package>
<package name="MOUNTINGHOLE_2.5_PLATED_THICK">
<circle x="0" y="0" radius="2.25" width="0.2032" layer="21"/>
<circle x="0" y="0" radius="1.25" width="2.032" layer="39"/>
<circle x="0" y="0" radius="1.25" width="2.032" layer="40"/>
<circle x="0" y="0" radius="1.25" width="2.032" layer="41"/>
<circle x="0" y="0" radius="1.25" width="2.032" layer="42"/>
<pad name="P$1" x="0" y="0" drill="2.5" diameter="4"/>
</package>
<package name="MOUNTINGHOLE_3.0_PLATED_VIAS">
<wire x1="-2.159" y1="0" x2="0" y2="-2.159" width="2.4892" layer="51" curve="90" cap="flat"/>
<wire x1="0" y1="2.159" x2="2.159" y2="0" width="2.4892" layer="51" curve="-90" cap="flat"/>
<circle x="0" y="0" radius="3.429" width="0.2032" layer="21"/>
<circle x="0" y="0" radius="0.762" width="0.4572" layer="51"/>
<circle x="0" y="0" radius="3.048" width="2.032" layer="39"/>
<circle x="0" y="0" radius="3.048" width="2.032" layer="41"/>
<pad name="P$1" x="0" y="0" drill="3" diameter="6.4516"/>
<pad name="P$2" x="0" y="2.5" drill="0.4"/>
<pad name="P$3" x="2.5" y="0" drill="0.4"/>
<pad name="P$4" x="0" y="-2.5" drill="0.4"/>
<pad name="P$5" x="-2.5" y="0" drill="0.4"/>
<pad name="P$6" x="-1.8" y="1.7" drill="0.4"/>
<pad name="P$7" x="-1.8" y="-1.7" drill="0.4"/>
<pad name="P$8" x="1.8" y="-1.7" drill="0.4"/>
<pad name="P$9" x="1.8" y="1.7" drill="0.4"/>
</package>
<package name="MOUNTINGHOLE_3.0_PLATED_SQUAREVIAS">
<circle x="0" y="0" radius="0.762" width="0.4572" layer="51"/>
<pad name="P$1" x="0" y="0" drill="3" diameter="6.4" shape="square"/>
<rectangle x1="-3.75" y1="-3.75" x2="3.75" y2="3.75" layer="39"/>
<rectangle x1="-3.75" y1="-3.75" x2="3.75" y2="3.75" layer="41"/>
<wire x1="-3.4" y1="3.4" x2="-3.4" y2="-3.4" width="0.127" layer="21"/>
<wire x1="-3.4" y1="-3.4" x2="3.4" y2="-3.4" width="0.127" layer="21"/>
<wire x1="3.4" y1="-3.4" x2="3.4" y2="3.4" width="0.127" layer="21"/>
<wire x1="3.4" y1="3.4" x2="-3.4" y2="3.4" width="0.127" layer="21"/>
<pad name="P$2" x="-2.25" y="0" drill="0.4"/>
<pad name="P$3" x="0" y="2.25" drill="0.4"/>
<pad name="P$4" x="2.25" y="0" drill="0.4"/>
<pad name="P$5" x="0" y="-2.25" drill="0.4"/>
<pad name="P$6" x="-2.25" y="2.25" drill="0.4"/>
<pad name="P$7" x="2.25" y="2.25" drill="0.4"/>
<pad name="P$8" x="2.25" y="-2.25" drill="0.4"/>
<pad name="P$9" x="-2.25" y="-2.25" drill="0.4"/>
</package>
<package name="DIPSWITCH_2PIN">
<description>Two button DIP switch</description>
<wire x1="2.49" y1="3" x2="-2.49" y2="3" width="0.127" layer="51"/>
<wire x1="2.49" y1="-3" x2="-2.49" y2="-3" width="0.127" layer="51"/>
<wire x1="2.49" y1="-3" x2="2.49" y2="3" width="0.127" layer="51"/>
<wire x1="-2.49" y1="-3" x2="-2.49" y2="3" width="0.127" layer="51"/>
<wire x1="2" y1="-1.5" x2="0.5" y2="-1.5" width="0.2032" layer="51"/>
<wire x1="0.5" y1="-1.5" x2="0.5" y2="2" width="0.2032" layer="51"/>
<wire x1="0.5" y1="2" x2="2" y2="2" width="0.2032" layer="51"/>
<wire x1="2" y1="2" x2="2" y2="-1.5" width="0.2032" layer="51"/>
<wire x1="-0.5" y1="2" x2="-2" y2="2" width="0.2032" layer="51"/>
<wire x1="-2" y1="2" x2="-2" y2="-1.5" width="0.2032" layer="51"/>
<wire x1="-0.5" y1="2" x2="-0.5" y2="-1.5" width="0.2032" layer="51"/>
<wire x1="-0.5" y1="-1.5" x2="-2" y2="-1.5" width="0.2032" layer="51"/>
<wire x1="2.49" y1="-3" x2="2.49" y2="3" width="0.2032" layer="21"/>
<wire x1="2.49" y1="-3" x2="-2.49" y2="-3" width="0.2032" layer="21"/>
<wire x1="2.49" y1="3" x2="-2.49" y2="3" width="0.2032" layer="21"/>
<wire x1="-2.49" y1="-3" x2="-2.49" y2="3" width="0.2032" layer="21"/>
<smd name="2ON" x="1.27" y="4.4" dx="2" dy="1.1" layer="1" rot="R270"/>
<smd name="1ON" x="-1.27" y="4.4" dx="2" dy="1.1" layer="1" rot="R270"/>
<smd name="2OFF" x="1.27" y="-4.4" dx="2" dy="1.1" layer="1" rot="R270"/>
<smd name="1OFF" x="-1.27" y="-4.4" dx="2" dy="1.1" layer="1" rot="R270"/>
<text x="-1.04" y="-1.949" size="0.6096" layer="51" rot="R180">1</text>
<text x="1.54" y="-1.949" size="0.6096" layer="51" rot="R180">2</text>
<text x="1.75" y="2.826" size="0.6096" layer="51" rot="R180">ON</text>
<text x="-0.75" y="2.826" size="0.6096" layer="51" rot="R180">ON</text>
<text x="1.75" y="2.826" size="0.6096" layer="21" rot="R180">ON</text>
<text x="-0.75" y="2.826" size="0.6096" layer="21" rot="R180">ON</text>
<text x="-1.04" y="-1.949" size="0.6096" layer="21" rot="R180">1</text>
<text x="1.54" y="-1.949" size="0.6096" layer="21" rot="R180">2</text>
<text x="2.794" y="2.286" size="0.8128" layer="25" ratio="18">>NAME</text>
<text x="2.794" y="1.651" size="0.4064" layer="27" ratio="10">>VALUE</text>
<rectangle x1="0.75" y1="-1.25" x2="1.75" y2="0.75" layer="51" rot="R180"/>
<rectangle x1="-1.75" y1="-1.25" x2="-0.75" y2="0.75" layer="51" rot="R180"/>
</package>
<package name="0603-NO">
<wire x1="-1.473" y1="0.729" x2="1.473" y2="0.729" width="0.0508" layer="39"/>
<wire x1="1.473" y1="0.729" x2="1.473" y2="-0.729" width="0.0508" layer="39"/>
<wire x1="1.473" y1="-0.729" x2="-1.473" y2="-0.729" width="0.0508" layer="39"/>
<wire x1="-1.473" y1="-0.729" x2="-1.473" y2="0.729" width="0.0508" layer="39"/>
<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="51"/>
<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="51"/>
<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
<text x="1.778" y="-0.127" size="0.8128" layer="25" font="vector" ratio="18">>NAME</text>
<text x="1.778" y="-0.762" size="0.4064" layer="27" font="vector" ratio="10">>VALUE</text>
<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="51"/>
<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="51"/>
<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
</package>
<package name="0805-NO">
<wire x1="-0.381" y1="0.66" x2="0.381" y2="0.66" width="0.1016" layer="51"/>
<wire x1="-0.356" y1="-0.66" x2="0.381" y2="-0.66" width="0.1016" layer="51"/>
<smd name="1" x="-0.95" y="0" dx="1.24" dy="1.5" layer="1"/>
<smd name="2" x="0.95" y="0" dx="1.24" dy="1.5" layer="1"/>
<text x="2.032" y="-0.127" size="0.8128" layer="25" ratio="18">>NAME</text>
<text x="2.032" y="-0.762" size="0.4064" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-1.0922" y1="-0.7239" x2="-0.3421" y2="0.7262" layer="51"/>
<rectangle x1="0.3556" y1="-0.7239" x2="1.1057" y2="0.7262" layer="51"/>
<wire x1="0" y1="0.508" x2="0" y2="-0.508" width="0.3048" layer="21"/>
</package>
<package name="_1206">
<wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1016" layer="51"/>
<wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1016" layer="51"/>
<wire x1="-2.286" y1="1.143" x2="2.286" y2="1.143" width="0.2032" layer="21"/>
<wire x1="2.286" y1="1.143" x2="2.286" y2="-1.143" width="0.2032" layer="21"/>
<wire x1="2.286" y1="-1.143" x2="-2.286" y2="-1.143" width="0.2032" layer="21"/>
<wire x1="-2.286" y1="-1.143" x2="-2.286" y2="1.143" width="0.2032" layer="21"/>
<smd name="2" x="1.27" y="0" dx="1.4" dy="1.8" layer="1"/>
<smd name="1" x="-1.27" y="0" dx="1.4" dy="1.8" layer="1"/>
<rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="51"/>
<rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="51"/>
<rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
<text x="-2.2225" y="1.5113" size="0.8128" layer="25" ratio="18">>NAME</text>
<text x="-2.2225" y="-1.8288" size="0.4064" layer="27" ratio="10">>VALUE</text>
</package>
<package name="_1206MP">
<wire x1="1.0525" y1="-0.7128" x2="-1.0652" y2="-0.7128" width="0.1016" layer="51"/>
<wire x1="1.0525" y1="0.7128" x2="-1.0652" y2="0.7128" width="0.1016" layer="51"/>
<wire x1="-0.635" y1="0.635" x2="0.635" y2="0.635" width="0.2032" layer="21"/>
<wire x1="-0.635" y1="-0.635" x2="0.635" y2="-0.635" width="0.2032" layer="21"/>
<smd name="2" x="1.524" y="0" dx="1.3" dy="1.6" layer="1"/>
<smd name="1" x="-1.524" y="0" dx="1.3" dy="1.6" layer="1"/>
<text x="-2.2225" y="1.1113" size="0.8128" layer="25" ratio="18">>NAME</text>
<text x="-2.2225" y="-1.4288" size="0.4064" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-1.6" y1="-0.8" x2="-0.9" y2="0.8" layer="51"/>
<rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
<rectangle x1="0.9001" y1="-0.8" x2="1.6" y2="0.8" layer="51" rot="R180"/>
</package>
<package name="1X10_ROUND">
<wire x1="-12.7" y1="0.635" x2="-12.7" y2="-0.635" width="0.2032" layer="51"/>
<pad name="1" x="-11.43" y="0" drill="1" diameter="1.6764" rot="R90"/>
<pad name="2" x="-8.89" y="0" drill="1" diameter="1.6764" rot="R90"/>
<pad name="3" x="-6.35" y="0" drill="1" diameter="1.6764" rot="R90"/>
<pad name="4" x="-3.81" y="0" drill="1" diameter="1.6764" rot="R90"/>
<pad name="5" x="-1.27" y="0" drill="1" diameter="1.6764" rot="R90"/>
<pad name="6" x="1.27" y="0" drill="1" diameter="1.6764" rot="R90"/>
<pad name="7" x="3.81" y="0" drill="1" diameter="1.6764" rot="R90"/>
<pad name="8" x="6.35" y="0" drill="1" diameter="1.6764" rot="R90"/>
<pad name="9" x="8.89" y="0" drill="1" diameter="1.6764" rot="R90"/>
<pad name="10" x="11.43" y="0" drill="1" diameter="1.6764" rot="R90"/>
<text x="-12.7762" y="1.8288" size="0.8128" layer="25" ratio="18">>NAME</text>
<text x="-12.7" y="-3.175" size="0.4064" layer="27" ratio="10">>VALUE</text>
<rectangle x1="8.636" y1="-0.254" x2="9.144" y2="0.254" layer="51"/>
<rectangle x1="6.096" y1="-0.254" x2="6.604" y2="0.254" layer="51"/>
<rectangle x1="3.556" y1="-0.254" x2="4.064" y2="0.254" layer="51"/>
<rectangle x1="1.016" y1="-0.254" x2="1.524" y2="0.254" layer="51"/>
<rectangle x1="-1.524" y1="-0.254" x2="-1.016" y2="0.254" layer="51"/>
<rectangle x1="-4.064" y1="-0.254" x2="-3.556" y2="0.254" layer="51"/>
<rectangle x1="-6.604" y1="-0.254" x2="-6.096" y2="0.254" layer="51"/>
<rectangle x1="-9.144" y1="-0.254" x2="-8.636" y2="0.254" layer="51"/>
<rectangle x1="-11.684" y1="-0.254" x2="-11.176" y2="0.254" layer="51"/>
<rectangle x1="11.176" y1="-0.254" x2="11.684" y2="0.254" layer="51"/>
</package>
<package name="1X10_ROUND_2MM">
<description>1x10 2.0mm Header Pins</description>
<wire x1="-11.7" y1="0.635" x2="-11.7" y2="-0.635" width="0.2032" layer="51"/>
<pad name="1" x="-10" y="0" drill="1" diameter="1.5" rot="R90"/>
<pad name="2" x="-8" y="0" drill="1" diameter="1.5" rot="R90"/>
<pad name="3" x="-6" y="0" drill="1" diameter="1.5" rot="R90"/>
<pad name="4" x="-4" y="0" drill="1" diameter="1.5" rot="R90"/>
<pad name="5" x="-2" y="0" drill="1" diameter="1.5" rot="R90"/>
<pad name="6" x="0" y="0" drill="1" diameter="1.5" rot="R90"/>
<pad name="7" x="2" y="0" drill="1" diameter="1.5" rot="R90"/>
<pad name="8" x="4" y="0" drill="1" diameter="1.5" rot="R90"/>
<pad name="9" x="6" y="0" drill="1" diameter="1.5" rot="R90"/>
<pad name="10" x="8" y="0" drill="1" diameter="1.5" rot="R90"/>
<text x="-10.7762" y="1.8288" size="0.8128" layer="25" ratio="18">>NAME</text>
<text x="-10.7" y="-3.175" size="0.4064" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-10.234" y1="-0.254" x2="-9.726" y2="0.254" layer="51"/>
<rectangle x1="-8.234" y1="-0.254" x2="-7.726" y2="0.254" layer="51"/>
<rectangle x1="-6.234" y1="-0.254" x2="-5.726" y2="0.254" layer="51"/>
<rectangle x1="-4.234" y1="-0.254" x2="-3.726" y2="0.254" layer="51"/>
<rectangle x1="-2.234" y1="-0.254" x2="-1.726" y2="0.254" layer="51"/>
<rectangle x1="-0.234" y1="-0.254" x2="0.274" y2="0.254" layer="51"/>
<rectangle x1="1.766" y1="-0.254" x2="2.274" y2="0.254" layer="51"/>
<rectangle x1="3.766" y1="-0.254" x2="4.274" y2="0.254" layer="51"/>
<rectangle x1="5.766" y1="-0.254" x2="6.274" y2="0.254" layer="51"/>
<rectangle x1="7.766" y1="-0.254" x2="8.274" y2="0.254" layer="51"/>
</package>
<package name="1X10_SMT_4UCON_06680">
<description><p><b>Pin Headers</b><br/>
10 Pin, 0.1"/2.54mm pitch, SMT</p>
<p>4UCON: 06680</p></description>
<smd name="1" x="-11.43" y="1.22" dx="1" dy="2.5" layer="1"/>
<smd name="2" x="-8.89" y="-1.82" dx="1" dy="2.5" layer="1"/>
<smd name="3" x="-6.35" y="1.22" dx="1" dy="2.5" layer="1"/>
<smd name="4" x="-3.81" y="-1.82" dx="1" dy="2.5" layer="1"/>
<smd name="5" x="-1.27" y="1.22" dx="1" dy="2.5" layer="1"/>
<smd name="6" x="1.27" y="-1.82" dx="1" dy="2.5" layer="1"/>