-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAudiA6Main.net
1225 lines (1225 loc) · 42.8 KB
/
AudiA6Main.net
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
(export (version D)
(design
(source A:\Dropbox\Projects\AudiA6Main\AudiA6Main\AudiA6Main.sch)
(date "12-06-2018 20:51:34")
(tool "Eeschema (5.0.0-rc2-dev-340-g7483a73a5)")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source AudiA6Main.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /Soundboard/) (tstamps /5AEA9E11/)
(title_block
(title)
(company)
(rev)
(date)
(source Soundboard.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /DEBUG/) (tstamps /5AC4CE42/)
(title_block
(title)
(company)
(rev)
(date)
(source DEBUG.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /SAMD21PWR/) (tstamps /5B05130D/)
(title_block
(title)
(company)
(rev)
(date)
(source SAMD21PWR.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref IC1)
(value ATSAMD21G18A-AU)
(footprint ATSAMD21G18A-AU:QFP50P900X900X120-48N)
(datasheet "TQFP-48 Atmel")
(fields
(field (name MF) Atmel)
(field (name Price) "3.66 USD")
(field (name MP) ATSAMD21G18A-AU)
(field (name Description) "Cortex-M0+, 256KB FLASH, 32KB SRAM, USB, DMA, T&R - 48TQFP IND TEMP, GREEN, 1.6-3.6V, 48MHz")
(field (name Availability) Warning))
(libsource (lib athir) (part ATSAMD21G18A-AU))
(sheetpath (names /) (tstamps /))
(tstamp 5A808C58))
(comp (ref J6)
(value RJ45)
(footprint Connect:RJ45_8)
(libsource (lib Connector) (part RJ45))
(sheetpath (names /) (tstamps /))
(tstamp 5A808D53))
(comp (ref J7)
(value RJ45)
(footprint Connect:RJ45_8)
(libsource (lib Connector) (part RJ45))
(sheetpath (names /) (tstamps /))
(tstamp 5ABC12F0))
(comp (ref J8)
(value RJ45)
(footprint Connect:RJ45_8)
(libsource (lib Connector) (part RJ45))
(sheetpath (names /) (tstamps /))
(tstamp 5ABC1735))
(comp (ref U9)
(value AP1117-15)
(footprint TO_SOT_Packages_SMD:SOT-223-3_TabPin2)
(datasheet http://www.diodes.com/datasheets/AP1117.pdf)
(libsource (lib regul) (part AP1117-15))
(sheetpath (names /) (tstamps /))
(tstamp 5ABC1751))
(comp (ref C18)
(value 10uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5ABC1757))
(comp (ref C14)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5ABC1761))
(comp (ref J9)
(value RJ45)
(footprint Connect:RJ45_8)
(libsource (lib Connector) (part RJ45))
(sheetpath (names /) (tstamps /))
(tstamp 5ABC176F))
(comp (ref U10)
(value AP1117-15)
(footprint TO_SOT_Packages_SMD:SOT-223-3_TabPin2)
(datasheet http://www.diodes.com/datasheets/AP1117.pdf)
(libsource (lib regul) (part AP1117-15))
(sheetpath (names /) (tstamps /))
(tstamp 5ABC178B))
(comp (ref C19)
(value 10uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5ABC1791))
(comp (ref C15)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5ABC179B))
(comp (ref J5)
(value BLUEFRUIT)
(footprint Pin_Headers:Pin_Header_Straight_1x08_Pitch2.54mm)
(libsource (lib Connector) (part Conn_01x08))
(sheetpath (names /) (tstamps /))
(tstamp 5AC3BE1D))
(comp (ref U5)
(value MSGEQ7)
(footprint Housings_DIP:DIP-8_W7.62mm)
(datasheet http://mix-sig.com/images/datasheets/MSGEQ7.pdf)
(libsource (lib audio) (part MSGEQ7))
(sheetpath (names /) (tstamps /))
(tstamp 5AC3CBB8))
(comp (ref C9)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5AC6BA7E))
(comp (ref R8)
(value 200k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5AC6BAE4))
(comp (ref C10)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5AC72CCF))
(comp (ref C8)
(value 33pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5AC9A4F2))
(comp (ref C7)
(value 68nF)
(footprint Resistors_Universal:Resistor_SMD+THTuniversal_0805to1206_RM10_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5ACBA095))
(comp (ref J3)
(value Audio-Jack-4)
(footprint athir:SJ1-35235)
(libsource (lib Connector) (part Audio-Jack-4))
(sheetpath (names /) (tstamps /))
(tstamp 5AD1C471))
(comp (ref R6)
(value 15k)
(footprint Resistors_Universal:Resistor_SMD+THTuniversal_0805to1206_RM10_HandSoldering_RevA_Date25Jun2010)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5AD1C66E))
(comp (ref U4)
(value LD1117S50TR_SOT223)
(footprint TO_SOT_Packages_SMD:SOT-223-3_TabPin2)
(datasheet http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00000544.pdf)
(libsource (lib regul) (part LD1117S50TR_SOT223))
(sheetpath (names /) (tstamps /))
(tstamp 5ADBB2A5))
(comp (ref C4)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5ADE9B70))
(comp (ref C5)
(value 10uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5ADE9C42))
(comp (ref C3)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5AE42E13))
(comp (ref C6)
(value 10uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5AE5D7F1))
(comp (ref SW1)
(value SW_RESET)
(footprint Buttons_Switches_ThroughHole:SW_PUSH_6mm)
(libsource (lib Switch) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5AF86810))
(comp (ref R1)
(value 330)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B04B04F))
(comp (ref TP1)
(value UART_TX)
(footprint Wire_Pads:SolderWirePad_single_2-5mmDrill)
(libsource (lib Connector) (part Test_Point))
(sheetpath (names /) (tstamps /))
(tstamp 5AD70CB2))
(comp (ref TP2)
(value UART_RX)
(footprint Wire_Pads:SolderWirePad_single_2-5mmDrill)
(libsource (lib Connector) (part Test_Point))
(sheetpath (names /) (tstamps /))
(tstamp 5AD70DA2))
(comp (ref Y1)
(value Crystal_Small)
(footprint Crystals:Crystal_SMD_G8-2pin_3.2x1.5mm_HandSoldering)
(libsource (lib device) (part Crystal_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5AD991EC))
(comp (ref C2)
(value 15pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5ADC2E58))
(comp (ref C1)
(value 15pF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5ADD8640))
(comp (ref TP3)
(value GND)
(footprint Wire_Pads:SolderWirePad_single_2-5mmDrill)
(libsource (lib Connector) (part Test_Point))
(sheetpath (names /) (tstamps /))
(tstamp 5AFB82F6))
(comp (ref TP4)
(value 12V)
(footprint Wire_Pads:SolderWirePad_single_2-5mmDrill)
(libsource (lib Connector) (part Test_Point))
(sheetpath (names /) (tstamps /))
(tstamp 5AFCFC24))
(comp (ref FL1)
(value ACP3225)
(footprint athir:ACP3225)
(libsource (lib athir) (part ACP3225))
(sheetpath (names /) (tstamps /))
(tstamp 5ACB4272))
(comp (ref Q2)
(value TP0610T)
(footprint TO_SOT_Packages_SMD:TO-252-2)
(datasheet http://www.vishay.com/docs/70209/70209.pdf)
(libsource (lib Transistor) (part TP0610T))
(sheetpath (names /) (tstamps /))
(tstamp 5B1F41CA))
(comp (ref R12)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B1FDA05))
(comp (ref D5)
(value D_Schottky)
(footprint Diodes_SMD:D_SOD-123F)
(libsource (lib device) (part D_Schottky))
(sheetpath (names /) (tstamps /))
(tstamp 5B21A6CB))
(comp (ref Q1)
(value NTR5103NT1G)
(footprint TO_SOT_Packages_SMD:TSOT-23_HandSoldering)
(libsource (lib athir) (part NTR5103NT1G))
(sheetpath (names /) (tstamps /))
(tstamp 5B22E308))
(comp (ref D3)
(value D_Schottky)
(footprint Diodes_SMD:D_SOD-123F)
(libsource (lib device) (part D_Schottky))
(sheetpath (names /) (tstamps /))
(tstamp 5B238B9D))
(comp (ref R10)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B2587E2))
(comp (ref R9)
(value 200)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B26E830))
(comp (ref D1)
(value "I2C PWR")
(footprint Diodes_SMD:D_1206)
(libsource (lib device) (part LED_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B279D13))
(comp (ref SW2)
(value I2C_PWR)
(footprint Buttons_Switches_ThroughHole:SW_PUSH_6mm)
(libsource (lib Switch) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5B3367E3))
(comp (ref Q3)
(value NTR5103NT1G)
(footprint TO_SOT_Packages_SMD:TSOT-23_HandSoldering)
(libsource (lib athir) (part NTR5103NT1G))
(sheetpath (names /) (tstamps /))
(tstamp 5B35B616))
(comp (ref D4)
(value D_Schottky)
(footprint Diodes_SMD:D_SOD-123F)
(libsource (lib device) (part D_Schottky))
(sheetpath (names /) (tstamps /))
(tstamp 5B35B61C))
(comp (ref R13)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B35B630))
(comp (ref R11)
(value 200)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B35B63C))
(comp (ref D2)
(value "I2C PWR")
(footprint Diodes_SMD:D_1206)
(libsource (lib device) (part LED_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B35B644))
(comp (ref SW3)
(value I2C_RESET)
(footprint Buttons_Switches_ThroughHole:SW_PUSH_6mm)
(libsource (lib Switch) (part SW_Push))
(sheetpath (names /) (tstamps /))
(tstamp 5B35B651))
(comp (ref R5)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B35B65E))
(comp (ref R4)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B520C30))
(comp (ref R2)
(value 15k)
(footprint Resistors_Universal:Resistor_SMD+THTuniversal_0805to1206_RM10_HandSoldering_RevA_Date25Jun2010)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B5B6EE3))
(comp (ref R7)
(value 220)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B5DF7A8))
(comp (ref R3)
(value POT)
(footprint Potentiometers:Potentiometer_Trimmer_Bourns_3296W)
(libsource (lib device) (part POT))
(sheetpath (names /) (tstamps /))
(tstamp 5B64257B))
(comp (ref R14)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B28597D))
(comp (ref R15)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5B293992))
(comp (ref J11)
(value Conn_01x14)
(footprint Pin_Headers:Pin_Header_Straight_1x14_Pitch2.54mm)
(libsource (lib Connector) (part Conn_01x14))
(sheetpath (names /Soundboard/) (tstamps /5AEA9E11/))
(tstamp 5AEA9F31))
(comp (ref J12)
(value Conn_01x14)
(footprint Pin_Headers:Pin_Header_Straight_1x14_Pitch2.54mm)
(libsource (lib Connector) (part Conn_01x14))
(sheetpath (names /Soundboard/) (tstamps /5AEA9E11/))
(tstamp 5AEA9F38))
(comp (ref P1)
(value CONN_02X10)
(footprint athir:SAM-ICE-Header)
(libsource (lib Connector) (part Conn_02x10_Odd_Even))
(sheetpath (names /DEBUG/) (tstamps /5AC4CE42/))
(tstamp 5889076F))
(comp (ref R19)
(value 100kohm)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /DEBUG/) (tstamps /5AC4CE42/))
(tstamp 58890834))
(comp (ref R20)
(value 100kohm)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /DEBUG/) (tstamps /5AC4CE42/))
(tstamp 588908E2))
(comp (ref R21)
(value 100kohm)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /DEBUG/) (tstamps /5AC4CE42/))
(tstamp 588908FF))
(comp (ref C21)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /DEBUG/) (tstamps /5AC4CE42/))
(tstamp 58890FEC))
(comp (ref L1)
(value Ferrite_Bead_Small)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part Ferrite_Bead_Small))
(sheetpath (names /SAMD21PWR/) (tstamps /5B05130D/))
(tstamp 5B0514A6))
(comp (ref C23)
(value 10uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /SAMD21PWR/) (tstamps /5B05130D/))
(tstamp 5B0514AF))
(comp (ref C26)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /SAMD21PWR/) (tstamps /5B05130D/))
(tstamp 5B0514B6))
(comp (ref C24)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /SAMD21PWR/) (tstamps /5B05130D/))
(tstamp 5B0514CB))
(comp (ref C22)
(value 10uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /SAMD21PWR/) (tstamps /5B05130D/))
(tstamp 5B0514D6))
(comp (ref C25)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /SAMD21PWR/) (tstamps /5B05130D/))
(tstamp 5B0514F0))
(comp (ref C27)
(value 1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /SAMD21PWR/) (tstamps /5B05130D/))
(tstamp 5B051501)))
(libparts
(libpart (lib athir) (part ACP3225)
(fields
(field (name Reference) FL)
(field (name Value) ACP3225))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))
(pin (num 4) (name 4) (type passive))))
(libpart (lib regul) (part AP1117-15)
(aliases
(alias AP1117-18)
(alias AP1117-25)
(alias AP1117-33)
(alias AP1117-50)
(alias LD1117S33TR_SOT223)
(alias LD1117S12TR_SOT223)
(alias LD1117S18TR_SOT223)
(alias LD1117S25TR_SOT223)
(alias LD1117S50TR_SOT223)
(alias NCP1117-12_SOT223)
(alias NCP1117-1.5_SOT223)
(alias NCP1117-1.8_SOT223)
(alias NCP1117-2.0_SOT223)
(alias NCP1117-2.5_SOT223)
(alias NCP1117-2.85_SOT223)
(alias NCP1117-3.3_SOT223)
(alias NCP1117-5.0_SOT223))
(description "1A Low Dropout regulator, positive, 1.5V fixed output, SOT-223")
(docs http://www.diodes.com/datasheets/AP1117.pdf)
(footprints
(fp SOT?223*TabPin2*))
(fields
(field (name Reference) U)
(field (name Value) AP1117-15)
(field (name Footprint) TO_SOT_Packages_SMD:SOT-223-3_TabPin2))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name VO) (type passive))
(pin (num 3) (name VI) (type power_in))))
(libpart (lib athir) (part ATSAMD21G18A-AU)
(fields
(field (name Reference) IC)
(field (name Value) ATSAMD21G18A-AU)
(field (name Footprint) QFP50P900X900X120-48N)
(field (name Datasheet) "TQFP-48 Atmel")
(field (name MF) Atmel)
(field (name Price) "3.66 USD")
(field (name MP) ATSAMD21G18A-AU)
(field (name Description) "Cortex-M0+, 256KB FLASH, 32KB SRAM, USB, DMA, T&R - 48TQFP IND TEMP, GREEN, 1.6-3.6V, 48MHz")
(field (name Availability) Warning))
(pins
(pin (num 1) (name PA00) (type BiDi))
(pin (num 2) (name PA01) (type BiDi))
(pin (num 3) (name PA02) (type BiDi))
(pin (num 4) (name PA03) (type BiDi))
(pin (num 5) (name GNDANA) (type input))
(pin (num 6) (name VDDANA) (type input))
(pin (num 7) (name PB08) (type BiDi))
(pin (num 8) (name PB09) (type BiDi))
(pin (num 9) (name PA04) (type BiDi))
(pin (num 10) (name PA05) (type BiDi))
(pin (num 11) (name PA06) (type BiDi))
(pin (num 12) (name PA07) (type BiDi))
(pin (num 13) (name PA08) (type BiDi))
(pin (num 14) (name PA09) (type BiDi))
(pin (num 15) (name PA10) (type BiDi))
(pin (num 16) (name PA11) (type BiDi))
(pin (num 17) (name VDDIO) (type input))
(pin (num 18) (name GND) (type input))
(pin (num 19) (name PB10) (type BiDi))
(pin (num 20) (name PB11) (type BiDi))
(pin (num 21) (name PA12) (type BiDi))
(pin (num 22) (name PA13) (type BiDi))
(pin (num 23) (name PA14) (type BiDi))
(pin (num 24) (name PA15) (type BiDi))
(pin (num 25) (name PA16) (type BiDi))
(pin (num 26) (name PA17) (type BiDi))
(pin (num 27) (name PA18) (type BiDi))
(pin (num 28) (name PA19) (type BiDi))
(pin (num 29) (name PA20) (type BiDi))
(pin (num 30) (name PA21) (type BiDi))
(pin (num 31) (name PA22) (type BiDi))
(pin (num 32) (name PA23) (type BiDi))
(pin (num 33) (name PA24) (type BiDi))
(pin (num 34) (name PA25) (type BiDi))
(pin (num 35) (name GND) (type input))
(pin (num 36) (name VDDIO) (type input))
(pin (num 37) (name PB22) (type BiDi))
(pin (num 38) (name PB23) (type BiDi))
(pin (num 39) (name PA27) (type BiDi))
(pin (num 40) (name RESETN) (type input))
(pin (num 41) (name PA28) (type BiDi))
(pin (num 42) (name GND) (type input))
(pin (num 43) (name VDDCORE) (type output))
(pin (num 44) (name VDDIN) (type input))
(pin (num 45) (name PA30) (type BiDi))
(pin (num 46) (name PA31) (type BiDi))
(pin (num 47) (name PB02) (type BiDi))
(pin (num 48) (name PB03) (type BiDi))))
(libpart (lib Connector) (part Audio-Jack-4)
(description "4-pin (audio) jack receptable (stereo + 4th pin/TRRS connector)")
(docs ~)
(fields
(field (name Reference) J)
(field (name Value) Audio-Jack-4))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))
(pin (num 4) (name ~) (type passive))))
(libpart (lib device) (part C_Small)
(description "Unpolarized capacitor")
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Connector) (part Conn_01x08)
(description "Generic connector, single row, 01x08")
(docs ~)
(footprints
(fp Connector*:*_??x*mm*)
(fp Connector*:*1x??x*mm*)
(fp Pin?Header?Straight?1X*)
(fp Pin?Header?Angled?1X*)
(fp Socket?Strip?Straight?1X*)
(fp Socket?Strip?Angled?1X*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x08))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))))
(libpart (lib Connector) (part Conn_01x14)
(description "Generic connector, single row, 01x14")
(docs ~)
(footprints
(fp Connector*:*_??x*mm*)
(fp Connector*:*1x??x*mm*)
(fp Pin?Header?Straight?1X*)
(fp Pin?Header?Angled?1X*)
(fp Socket?Strip?Straight?1X*)
(fp Socket?Strip?Angled?1X*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x14))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))
(pin (num 14) (name Pin_14) (type passive))))
(libpart (lib Connector) (part Conn_02x10_Odd_Even)
(description "Generic connector, double row, 02x10, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers)")
(docs ~)
(footprints
(fp Connector*:*2x??x*mm*)
(fp Connector*:*2x???Pitch*)
(fp Pin_Header_Straight_2X*)
(fp Pin_Header_Angled_2X*)
(fp Socket_Strip_Straight_2X*)
(fp Socket_Strip_Angled_2X*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x10_Odd_Even))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))
(pin (num 14) (name Pin_14) (type passive))
(pin (num 15) (name Pin_15) (type passive))
(pin (num 16) (name Pin_16) (type passive))
(pin (num 17) (name Pin_17) (type passive))
(pin (num 18) (name Pin_18) (type passive))
(pin (num 19) (name Pin_19) (type passive))
(pin (num 20) (name Pin_20) (type passive))))
(libpart (lib device) (part Crystal_Small)
(description "Two pin crystal, small symbol")
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal_Small))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part D_Schottky)
(description "Schottky diode")
(footprints
(fp TO-???*)
(fp *SingleDiode)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_Schottky))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib device) (part Ferrite_Bead_Small)
(description "Ferrite bead, small symbol")
(footprints
(fp Inductor_*)
(fp L_*)
(fp *Ferrite*))
(fields
(field (name Reference) L)
(field (name Value) Ferrite_Bead_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part LED_Small)
(description "LED, small symbol")
(docs ~)
(footprints
(fp LED*))
(fields
(field (name Reference) D)
(field (name Value) LED_Small))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib audio) (part MSGEQ7)
(description "Seven Band Graphic Equalizer, DIP-8/SOIC-8")
(docs http://mix-sig.com/images/datasheets/MSGEQ7.pdf)
(footprints
(fp SOIC*3.9x4.9mm*Pitch1.27mm*)
(fp DIP*W7.62mm*))
(fields
(field (name Reference) U)
(field (name Value) MSGEQ7))
(pins
(pin (num 1) (name VDD) (type power_in))
(pin (num 2) (name VSS) (type power_in))
(pin (num 3) (name OUT) (type output))
(pin (num 4) (name STROBE) (type input))
(pin (num 5) (name IN) (type input))
(pin (num 6) (name GND) (type power_out))
(pin (num 7) (name RESET) (type input))
(pin (num 8) (name CKIN) (type input))))
(libpart (lib athir) (part NTR5103NT1G)
(footprints
(fp SOT-23-3))
(fields
(field (name Reference) Q)
(field (name Value) NTR5103NT1G)
(field (name Footprint) TO_SOT_Packages_THT:TO-220_Vertical))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name S) (type passive))
(pin (num 3) (name D) (type passive))))
(libpart (lib device) (part POT)
(description Potentiometer)
(footprints
(fp Potentiometer*))
(fields
(field (name Reference) RV)
(field (name Value) POT))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))))
(libpart (lib Connector) (part RJ45)
(description "RJ45 connector with shield")
(fields
(field (name Reference) J)
(field (name Value) RJ45))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))
(pin (num 4) (name ~) (type passive))
(pin (num 5) (name ~) (type passive))
(pin (num 6) (name ~) (type passive))
(pin (num 7) (name ~) (type passive))
(pin (num 8) (name ~) (type passive))
(pin (num 9) (name SHIELD) (type passive))))
(libpart (lib device) (part R_Small)
(description "Resistor, small symbol")
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Switch) (part SW_Push)
(description "Push button switch, generic, two pins")
(fields
(field (name Reference) SW)
(field (name Value) SW_Push))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib Transistor) (part TP0610T)
(aliases
(alias VP0610T)
(alias BSS84)
(alias NTR2101P)
(alias BSS83P))
(description "-0.18A Id, -60V Vds, P-Channel MOSFET, SOT-23-3")
(docs http://www.vishay.com/docs/70209/70209.pdf)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) Q)
(field (name Value) TP0610T)
(field (name Footprint) TO_SOT_Packages_SMD:SOT-23))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name S) (type passive))
(pin (num 3) (name D) (type passive))))
(libpart (lib Connector) (part Test_Point)
(description "test point")
(docs ~)
(footprints
(fp Pin*)
(fp Test*))
(fields
(field (name Reference) TP)
(field (name Value) Test_Point))
(pins
(pin (num 1) (name 1) (type passive)))))
(libraries
(library (logical Connector)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Connector.lib"))
(library (logical Switch)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Switch.lib"))
(library (logical Transistor)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Transistor.lib"))
(library (logical athir)
(uri "A:/Dropbox/Projects/RF Receiver - AD9954 + Tayloe/Hardware/libs/athir.lib"))
(library (logical audio)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/audio.lib"))
(library (logical device)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/device.lib"))
(library (logical regul)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/regul.lib")))
(nets
(net (code 1) (name "Net-(FL1-Pad1)")
(node (ref FL1) (pin 1))
(node (ref TP4) (pin 1)))
(net (code 2) (name /VDDANA)
(node (ref C26) (pin 1))
(node (ref IC1) (pin 6))
(node (ref C23) (pin 1))
(node (ref L1) (pin 1)))
(net (code 3) (name "Net-(FL1-Pad2)")
(node (ref FL1) (pin 2))
(node (ref TP3) (pin 1)))
(net (code 4) (name +12V)
(node (ref C4) (pin 1))
(node (ref C3) (pin 1))
(node (ref U4) (pin 3))
(node (ref FL1) (pin 4)))
(net (code 5) (name GND)
(node (ref J5) (pin 2))
(node (ref P1) (pin 6))
(node (ref P1) (pin 8))
(node (ref P1) (pin 20))
(node (ref P1) (pin 12))
(node (ref P1) (pin 14))
(node (ref P1) (pin 16))
(node (ref U9) (pin 1))
(node (ref J5) (pin 7))
(node (ref C18) (pin 2))
(node (ref C14) (pin 2))
(node (ref U5) (pin 2))
(node (ref P1) (pin 4))
(node (ref P1) (pin 10))
(node (ref C21) (pin 2))
(node (ref C10) (pin 2))
(node (ref D2) (pin 1))
(node (ref P1) (pin 18))
(node (ref J3) (pin 4))
(node (ref SW3) (pin 1))
(node (ref Q3) (pin 2))
(node (ref D4) (pin 2))
(node (ref Q1) (pin 2))
(node (ref J9) (pin 8))
(node (ref C8) (pin 1))
(node (ref SW2) (pin 1))
(node (ref R13) (pin 2))
(node (ref C19) (pin 2))
(node (ref R10) (pin 2))
(node (ref C15) (pin 2))
(node (ref R7) (pin 1))
(node (ref D3) (pin 2))
(node (ref D1) (pin 1))
(node (ref U10) (pin 1))
(node (ref J9) (pin 7))
(node (ref J3) (pin 1))
(node (ref J11) (pin 1))
(node (ref J12) (pin 2))
(node (ref J12) (pin 11))
(node (ref C25) (pin 2))
(node (ref C6) (pin 2))
(node (ref J8) (pin 7))
(node (ref J6) (pin 8))
(node (ref SW1) (pin 1))
(node (ref J12) (pin 14))
(node (ref C24) (pin 2))
(node (ref C27) (pin 2))
(node (ref J6) (pin 7))
(node (ref C22) (pin 2))
(node (ref C3) (pin 2))
(node (ref IC1) (pin 42))
(node (ref IC1) (pin 35))
(node (ref C9) (pin 1))
(node (ref J8) (pin 8))
(node (ref J7) (pin 8))
(node (ref J7) (pin 7))
(node (ref U4) (pin 1))
(node (ref FL1) (pin 3))
(node (ref C4) (pin 2))
(node (ref C5) (pin 2))
(node (ref C2) (pin 2))
(node (ref IC1) (pin 18))
(node (ref C1) (pin 2)))
(net (code 6) (name "Net-(IC1-Pad37)")
(node (ref IC1) (pin 37)))
(net (code 7) (name "Net-(IC1-Pad38)")
(node (ref IC1) (pin 38)))
(net (code 8) (name "Net-(IC1-Pad3)")
(node (ref IC1) (pin 3)))
(net (code 9) (name "Net-(IC1-Pad4)")
(node (ref IC1) (pin 4)))
(net (code 10) (name "Net-(IC1-Pad9)")
(node (ref IC1) (pin 9)))
(net (code 11) (name "Net-(IC1-Pad14)")
(node (ref IC1) (pin 14)))
(net (code 12) (name /VCC_I2C)
(node (ref J9) (pin 6))
(node (ref J8) (pin 6))
(node (ref J6) (pin 6))
(node (ref J7) (pin 6))
(node (ref Q2) (pin 2))
(node (ref D5) (pin 2)))
(net (code 13) (name "Net-(IC1-Pad20)")
(node (ref IC1) (pin 20)))
(net (code 14) (name "Net-(R1-Pad2)")
(node (ref SW1) (pin 2))
(node (ref R1) (pin 2)))
(net (code 15) (name /MCU_RESET)
(node (ref IC1) (pin 40))
(node (ref P1) (pin 15))
(node (ref R1) (pin 1))
(node (ref C21) (pin 1))
(node (ref R19) (pin 2)))
(net (code 16) (name /SWCLK)
(node (ref P1) (pin 9))
(node (ref R20) (pin 2))
(node (ref IC1) (pin 45)))
(net (code 17) (name "Net-(C2-Pad1)")
(node (ref C2) (pin 1))
(node (ref Y1) (pin 2))
(node (ref IC1) (pin 2)))
(net (code 18) (name "Net-(IC1-Pad8)")
(node (ref IC1) (pin 8)))
(net (code 19) (name "Net-(IC1-Pad19)")
(node (ref IC1) (pin 19)))
(net (code 20) (name /SWDIO)
(node (ref R21) (pin 2))
(node (ref IC1) (pin 46))
(node (ref P1) (pin 7)))
(net (code 21) (name "Net-(C1-Pad1)")
(node (ref Y1) (pin 1))
(node (ref IC1) (pin 1))
(node (ref C1) (pin 1)))
(net (code 22) (name /~RESET)
(node (ref J9) (pin 5))
(node (ref J7) (pin 5))
(node (ref Q3) (pin 3))
(node (ref J6) (pin 5))
(node (ref J8) (pin 5)))
(net (code 23) (name "Net-(J6-Pad4)")
(node (ref J6) (pin 4)))
(net (code 24) (name "Net-(J7-Pad4)")
(node (ref J7) (pin 4)))
(net (code 25) (name "Net-(J8-Pad4)")