-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGuitarPLLSynthEffect.net
1148 lines (1148 loc) · 42.8 KB
/
GuitarPLLSynthEffect.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 H:/Workspace/ElectronicsProjects/EffectsPedals/Synth/GuitarPLLSynthEffect/GuitarPLLSynthEffect.sch)
(date "30-05-2018 8:47:25 PM")
(tool "Eeschema 4.0.7")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "PLL Synth Effects Pedal")
(company)
(rev A)
(date 2018-04-02)
(source GuitarPLLSynthEffect.sch)
(comment (number 1) (value "FX Vol and Blend controls"))
(comment (number 2) (value "Optional clean signal input for better tracking"))
(comment (number 3) (value "Selectable square and Sawtooth voices"))
(comment (number 4) (value "PLL Synth effect with variable controls"))))
(sheet (number 2) (name /Sheet5AC1BF71/) (tstamps /5AC1BF72/)
(title_block
(title "PLL Synth Effects Pedal")
(company)
(rev A)
(date 2018-04-02)
(source file5AC1BF71.sch)
(comment (number 1) (value "FX Vol and Blend controls"))
(comment (number 2) (value "Optional clean signal input for better tracking"))
(comment (number 3) (value "Selectable square and Sawtooth voices"))
(comment (number 4) (value "PLL Synth effect with variable controls")))))
(components
(comp (ref J_CLEAN_IN1)
(value JACK__MONO_2P_NC)
(footprint custom_sockets:JackSocket_Mono_PCB)
(libsource (lib socket_custom) (part JACK__MONO_2P_NC))
(sheetpath (names /) (tstamps /))
(tstamp 5ABD53A6))
(comp (ref J_OU1)
(value JACK__MONO_2P_NC)
(footprint custom_sockets:JackSocket_Mono_PCB)
(libsource (lib socket_custom) (part JACK__MONO_2P_NC))
(sheetpath (names /) (tstamps /))
(tstamp 5ABD53E5))
(comp (ref J_POWER1)
(value _Barrel_Jack)
(footprint custom_sockets:BARREL_JACK)
(libsource (lib barrel_jack) (part _Barrel_Jack))
(sheetpath (names /) (tstamps /))
(tstamp 5ABD58A2))
(comp (ref C_CLEAN_IN1)
(value 4.7uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 5ABD5AE5))
(comp (ref U_NEG1)
(value _TC7662B)
(footprint SMD_Packages:SOIC-8-N)
(libsource (lib _TC7662b) (part _TC7662B))
(sheetpath (names /) (tstamps /))
(tstamp 5ABEBF1E))
(comp (ref C2_NEG1)
(value 10uF)
(footprint Capacitors_SMD:CP_Elec_4x5.3)
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 5ABEE2CF))
(comp (ref C1_NEG1)
(value 10uF)
(footprint Capacitors_SMD:CP_Elec_4x5.3)
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 5ABEF036))
(comp (ref R_MIX_F1)
(value 10K)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AC0CCCD))
(comp (ref MIX1)
(value B100K)
(footprint Potentiometers:Potentiometer_Bourns_PTV09A-1_Horizontal)
(libsource (lib pot_numbered) (part NPOT))
(sheetpath (names /) (tstamps /))
(tstamp 5AC12327))
(comp (ref R_MIX_G1)
(value 10K)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AC11ECA))
(comp (ref FXVOL1)
(value B1K)
(footprint Potentiometers:Potentiometer_Bourns_PTV09A-1_Horizontal)
(libsource (lib pot_numbered) (part NPOT))
(sheetpath (names /) (tstamps /))
(tstamp 5AC14DA8))
(comp (ref R_FXVOL1)
(value 560R)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AC151DA))
(comp (ref J_DIRTY_IN1)
(value JACK__MONO_2P_NC)
(footprint custom_sockets:JackSocket_Mono_PCB)
(libsource (lib socket_custom) (part JACK__MONO_2P_NC))
(sheetpath (names /) (tstamps /))
(tstamp 5AC21404))
(comp (ref SW_INSW1)
(value SW_SPDT)
(footprint custom_sw:SW_SPDT_W6.86MM_L12.7MM_P4.8MM_D2MM)
(libsource (lib switches) (part SW_SPDT))
(sheetpath (names /) (tstamps /))
(tstamp 5AC214FD))
(comp (ref C_DIRTY_IN1)
(value 4.7uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 5AC23674))
(comp (ref D_IN1)
(value _Schottky)
(footprint Diodes_SMD:D_SOD-123F)
(libsource (lib _schottky) (part _Schottky))
(sheetpath (names /) (tstamps /))
(tstamp 5AC34A74))
(comp (ref C_PWRBY1)
(value 10uF)
(footprint Capacitors_SMD:CP_Elec_4x5.3)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5AC36CD5))
(comp (ref SW_BYPASS1)
(value SW_3PDT_on_on)
(footprint custom_sw:SW_3PDT_W18MM_L17.3MM_P5.3MM_D2MM_PCBPin)
(libsource (lib sw_custom) (part SW_3PDT_on_on))
(sheetpath (names /) (tstamps /))
(tstamp 5AC3ABF6))
(comp (ref D_ON1)
(value LED)
(footprint LEDs:LED_D5.0mm)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5AC4460F))
(comp (ref J_AUX2MAIN_VOL1)
(value Conn_01x06)
(footprint Pin_Headers:Pin_Header_Straight_1x06_Pitch2.54mm)
(libsource (lib conn) (part Conn_01x06))
(sheetpath (names /) (tstamps /))
(tstamp 5AC61AAD))
(comp (ref J_MAIN2AUX_VOL1)
(value Conn_01x06)
(footprint Pin_Headers:Pin_Header_Straight_1x06_Pitch2.54mm)
(libsource (lib conn) (part Conn_01x06))
(sheetpath (names /) (tstamps /))
(tstamp 5AC61E10))
(comp (ref J_MAIN2AUX_LED1)
(value Conn_01x04)
(footprint Pin_Headers:Pin_Header_Straight_1x04_Pitch2.54mm)
(libsource (lib conn) (part Conn_01x04))
(sheetpath (names /) (tstamps /))
(tstamp 5AC366CB))
(comp (ref J_AUX2MAIN_LED1)
(value Conn_01x04)
(footprint Pin_Headers:Pin_Header_Straight_1x04_Pitch2.54mm)
(libsource (lib conn) (part Conn_01x04))
(sheetpath (names /) (tstamps /))
(tstamp 5AC36A08))
(comp (ref R_LED1)
(value 2K7)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5AC39531))
(comp (ref C_OABY1)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5AC3BFA6))
(comp (ref C_OABY2)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5AC47520))
(comp (ref C_PWRBY2)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5AC5AF9D))
(comp (ref U_MAINOA1)
(value TL074)
(footprint SMD_Packages:SOIC-14_N)
(libsource (lib linear) (part TL074))
(sheetpath (names /) (tstamps /))
(tstamp 5AC9DCC2))
(comp (ref JP_MIXEDGND1)
(value Jumper_NC_Dual)
(footprint Oddities:NetTie-II_Connected_SMD)
(libsource (lib device) (part Jumper_NC_Dual))
(sheetpath (names /) (tstamps /))
(tstamp 5AEFD984))
(comp (ref J_MAIN2AUX_INSW1)
(value Conn_01x03)
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm)
(libsource (lib conn) (part Conn_01x03))
(sheetpath (names /) (tstamps /))
(tstamp 5AF2C92F))
(comp (ref J_AUX2MAIN_INSW1)
(value Conn_01x03)
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm)
(libsource (lib conn) (part Conn_01x03))
(sheetpath (names /) (tstamps /))
(tstamp 5AF2CA13))
(comp (ref R_OA_IN1)
(value 2K7)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC1C65B))
(comp (ref C_PllRefIn1)
(value 47nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part CP))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC1C66E))
(comp (ref C_VCO1)
(value 22nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC1C676))
(comp (ref C_LPF1)
(value 470nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC1C694))
(comp (ref DAMPEN1)
(value B100K)
(footprint Potentiometers:Potentiometer_Bourns_PTV09A-1_Horizontal)
(libsource (lib pot_numbered) (part NPOT))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC1C6C0))
(comp (ref TRIG1)
(value B10K)
(footprint Potentiometers:Potentiometer_Bourns_PTV09A-1_Horizontal)
(libsource (lib pot_numbered) (part NPOT))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC1C6EB))
(comp (ref FMOD1)
(value B50K)
(footprint Potentiometers:Potentiometer_Bourns_PTV09A-1_Horizontal)
(libsource (lib pot_numbered) (part NPOT))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC1C6F6))
(comp (ref R_OA_OUT1)
(value 2K7)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC1C718))
(comp (ref R_OA_OUT_F1)
(value 15R)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC1C721))
(comp (ref SW_WAVE1)
(value SW_SPDT)
(footprint custom_sw:SW_SPDT_W6.86MM_L12.7MM_P4.8MM_D2MM)
(libsource (lib switches) (part SW_SPDT))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC188AA))
(comp (ref C_SAWINT1)
(value 10nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC1A22E))
(comp (ref R_SAWFB1)
(value 1K)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC26FA5))
(comp (ref R_SAW1)
(value 2K7)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC270D7))
(comp (ref U_NEG2)
(value _TC7662B)
(footprint SMD_Packages:SOIC-8-N)
(libsource (lib _TC7662b) (part _TC7662B))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC2BE2F))
(comp (ref C2_NEG2)
(value 10uF)
(footprint Capacitors_SMD:CP_Elec_4x5.3)
(libsource (lib device) (part CP))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC2BE36))
(comp (ref C1_NEG2)
(value 10uF)
(footprint Capacitors_SMD:CP_Elec_4x5.3)
(libsource (lib device) (part CP))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC2BE41))
(comp (ref C_HOLD2)
(value 10uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part CP))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC51CA2))
(comp (ref SW_HOLD1)
(value SW_SPDT)
(footprint custom_sw:SW_SPDT_W6.86MM_L12.7MM_P4.8MM_D2MM)
(libsource (lib switches) (part SW_SPDT))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC51DAF))
(comp (ref C_HOLD1)
(value 2.2uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part CP))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC5203C))
(comp (ref J_MAIN2AUX_FXSW1)
(value Conn_01x06)
(footprint Pin_Headers:Pin_Header_Straight_1x06_Pitch2.54mm)
(libsource (lib conn) (part Conn_01x06))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC880BA))
(comp (ref J_AUX2MAIN_FXSW1)
(value Conn_01x06)
(footprint Pin_Headers:Pin_Header_Straight_1x06_Pitch2.54mm)
(libsource (lib conn) (part Conn_01x06))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC88632))
(comp (ref C_OABY3)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC4BA5A))
(comp (ref C_OABY4)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC4C7DB))
(comp (ref C_OABY13)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC56DA7))
(comp (ref C_PWRBY3)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC584C7))
(comp (ref R_SWING1)
(value 22K)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC55D40))
(comp (ref R_SAWJOIN1)
(value 10R)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC5CB3E))
(comp (ref U_OAPLLSAW1)
(value TL072)
(footprint SMD_Packages:SOIC-8-N)
(libsource (lib linear) (part TL072))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AED44F4))
(comp (ref U_OAFXBUF1)
(value TL072)
(footprint SMD_Packages:SOIC-8-N)
(libsource (lib linear) (part TL072))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AED4BDA))
(comp (ref JTP1)
(value TEST_1P)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib conn) (part TEST_1P))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AEB993D))
(comp (ref R_SFOUT1)
(value 100K)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AEE652B))
(comp (ref U_PLL1)
(value _4046)
(footprint Custom_SMD_Packages:SO-16-N++)
(libsource (lib _4046) (part _4046))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC1C6B4))
(comp (ref J_AUX2MAIN_PLL1)
(value Conn_01x06)
(footprint Pin_Headers:Pin_Header_Straight_1x06_Pitch2.54mm)
(libsource (lib conn) (part Conn_01x06))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AF121F1))
(comp (ref J_MAIN2AUX_PLL1)
(value Conn_01x06)
(footprint Pin_Headers:Pin_Header_Straight_1x06_Pitch2.54mm)
(libsource (lib conn) (part Conn_01x06))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AF128F8))
(comp (ref SWING1)
(value B1M)
(footprint Potentiometers:Potentiometer_Bourns_PTV09A-1_Horizontal)
(libsource (lib pot_numbered) (part NPOT))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AC1C6AC))
(comp (ref C_OABY6)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AF27C3B))
(comp (ref C_OABY5)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AF28A89))
(comp (ref J_AUX2MAIN_FX1)
(value Conn_01x03)
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm)
(libsource (lib conn) (part Conn_01x03))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AF2EB70))
(comp (ref J_MAIN2AUX_FX1)
(value Conn_01x03)
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm)
(libsource (lib conn) (part Conn_01x03))
(sheetpath (names /Sheet5AC1BF71/) (tstamps /5AC1BF72/))
(tstamp 5AF2ED33)))
(libparts
(libpart (lib device) (part C)
(description "Unpolarized capacitor")
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part CP)
(description "Polarised capacitor")
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib conn) (part Conn_01x03)
(description "Generic connector, single row, 01x03")
(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_01x03))
(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))))
(libpart (lib conn) (part Conn_01x04)
(description "Generic connector, single row, 01x04")
(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_01x04))
(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))))
(libpart (lib conn) (part Conn_01x06)
(description "Generic connector, single row, 01x06")
(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_01x06))
(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))))
(libpart (lib socket_custom) (part JACK__MONO_2P_NC)
(fields
(field (name Reference) J)
(field (name Value) JACK__MONO_2P_NC))
(pins
(pin (num 1) (name TIP) (type passive))
(pin (num 2) (name TIP_NC) (type passive))
(pin (num 3) (name SLEEVE_NC) (type passive))
(pin (num 4) (name SLEEVE) (type passive))))
(libpart (lib device) (part Jumper_NC_Dual)
(description "Dual Jumper, normally closed")
(fields
(field (name Reference) JP)
(field (name Value) Jumper_NC_Dual))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))))
(libpart (lib device) (part LED)
(description "LED generic")
(footprints
(fp LED*))
(fields
(field (name Reference) D)
(field (name Value) LED))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib linear) (part LM2902)
(aliases
(alias LM324)
(alias TLC274)
(alias TLC279)
(alias TL074)
(alias LM324A)
(alias MCP6004)
(alias TL084)
(alias TL064)
(alias LMV324)
(alias LMC6484)
(alias MCP604)
(alias MC33079)
(alias MC33179)
(alias OPA4134)
(alias OPA4340UA)
(alias OPA4376)
(alias MCP6L94)
(alias TSV914)
(alias ADA4807-4))
(description "Low-Power, Quad-Operational Amplifiers, DIP-14/SOIC-14/SSOP-14")
(docs http://www.ti.com/lit/ds/symlink/lm2902-n.pdf)
(footprints
(fp SOIC*3.9x8.7mm*Pitch1.27mm*)
(fp DIP*W7.62mm*)
(fp TSSOP*4.4x5mm*Pitch0.65mm*)
(fp SSOP*5.3x6.2mm*Pitch0.65mm*)
(fp MSOP*3x3mm*Pitch0.5mm*))
(fields
(field (name Reference) U)
(field (name Value) LM2902))
(pins
(pin (num 1) (name ~) (type output))
(pin (num 2) (name -) (type input))
(pin (num 3) (name +) (type input))
(pin (num 4) (name V+) (type power_in))
(pin (num 5) (name +) (type input))
(pin (num 6) (name -) (type input))
(pin (num 7) (name ~) (type output))
(pin (num 8) (name ~) (type output))
(pin (num 9) (name -) (type input))
(pin (num 10) (name +) (type input))
(pin (num 11) (name V-) (type power_in))
(pin (num 12) (name +) (type input))
(pin (num 13) (name -) (type input))
(pin (num 14) (name ~) (type output))))
(libpart (lib linear) (part LM2904)
(aliases
(alias LM358)
(alias AD8620)
(alias LMC6062)
(alias LMC6082)
(alias TL062)
(alias TL072)
(alias TL082)
(alias NE5532)
(alias SA5532)
(alias RC4558)
(alias RC4560)
(alias RC4580)
(alias LMV358)
(alias TS912)
(alias TSV912IDT)
(alias TSV912IST)
(alias TLC272)
(alias TLC277)
(alias MCP602)
(alias OPA2134)
(alias OPA2340)
(alias OPA2376xxD)
(alias OPA2376xxDGK)
(alias MC33078)
(alias MC33178)
(alias LM4562)
(alias OP249)
(alias OP275)
(alias ADA4075-2)
(alias MCP6002-xP)
(alias MCP6002-xSN)
(alias MCP6002-xMS)
(alias LM7332)
(alias OPA2333xxD)
(alias OPA2333xxDGK)
(alias LMC6482)
(alias LT1492)
(alias LTC6081xMS8)
(alias LM6172)
(alias MCP6L92)
(alias NJM2043)
(alias NJM2114)
(alias NJM4556A)
(alias NJM4558)
(alias NJM4559)
(alias NJM4560)
(alias NJM4580)
(alias NJM5532)
(alias ADA4807-2ARM)
(alias OPA2691))
(description "Dual Operational Amplifiers, DIP-8/SOIC-8/TSSOP-8/VSSOP-8")
(docs http://www.ti.com/lit/ds/symlink/lm358.pdf)
(footprints
(fp SOIC*3.9x4.9mm*Pitch1.27mm*)
(fp DIP*W7.62mm*)
(fp TO*99*)
(fp OnSemi*Micro8*)
(fp TSSOP*3x3mm*Pitch0.65mm*)
(fp TSSOP*4.4x3mm*Pitch0.65mm*)
(fp MSOP*3x3mm*Pitch0.65mm*)
(fp SSOP*3.9x4.9mm*Pitch0.635mm*)
(fp LFCSP*2x2mm*Pitch0.5mm*)
(fp *SIP*)
(fp SOIC*5.3x6.2mm*Pitch1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) LM2904))
(pins
(pin (num 1) (name ~) (type output))
(pin (num 2) (name -) (type input))
(pin (num 3) (name +) (type input))
(pin (num 4) (name V-) (type power_in))
(pin (num 5) (name +) (type input))
(pin (num 6) (name -) (type input))
(pin (num 7) (name ~) (type output))
(pin (num 8) (name V+) (type power_in))))
(libpart (lib pot_numbered) (part NPOT)
(fields
(field (name Reference) RV)
(field (name Value) NPOT))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))))
(libpart (lib device) (part R)
(description Resistor)
(footprints
(fp R_*)
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib sw_custom) (part SW_3PDT_on_on)
(fields
(field (name Reference) SW)
(field (name Value) SW_3PDT_on_on))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name B) (type passive))
(pin (num 3) (name C) (type passive))
(pin (num 4) (name A) (type passive))
(pin (num 5) (name B) (type passive))
(pin (num 6) (name C) (type passive))
(pin (num 7) (name A) (type passive))
(pin (num 8) (name B) (type passive))
(pin (num 9) (name C) (type passive))))
(libpart (lib switches) (part SW_SPDT)
(description "Switch, single pole double throw")
(fields
(field (name Reference) SW)
(field (name Value) SW_SPDT))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name B) (type passive))
(pin (num 3) (name C) (type passive))))
(libpart (lib conn) (part TEST_1P)
(description point)
(fields
(field (name Reference) J)
(field (name Value) TEST_1P))
(pins
(pin (num 1) (name 1) (type passive))))
(libpart (lib _4046) (part _4046)
(fields
(field (name Reference) U)
(field (name Value) _4046))
(pins
(pin (num 1) (name PCP) (type output))
(pin (num 2) (name PC1) (type output))
(pin (num 3) (name SigIn) (type input))
(pin (num 4) (name FOUT) (type BiDi))
(pin (num 5) (name Inh) (type input))
(pin (num 6) (name C1) (type input))
(pin (num 7) (name C2) (type input))
(pin (num 8) (name VSS) (type passive))
(pin (num 9) (name VCOin) (type input))
(pin (num 10) (name SFout) (type output))
(pin (num 11) (name R1) (type input))
(pin (num 12) (name R2) (type input))
(pin (num 13) (name PC2) (type 3state))
(pin (num 14) (name RefIn) (type input))
(pin (num 15) (name ZOUT) (type output))
(pin (num 16) (name VDD) (type power_in))))
(libpart (lib barrel_jack) (part _Barrel_Jack)
(fields
(field (name Reference) J)
(field (name Value) _Barrel_Jack))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type power_in))
(pin (num 3) (name ~) (type passive))))
(libpart (lib _schottky) (part _Schottky)
(description "Schottky diode")
(footprints
(fp TO-???*)
(fp *SingleDiode)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) _Schottky))
(pins
(pin (num 1) (name K) (type power_out))
(pin (num 2) (name A) (type power_in))))
(libpart (lib _TC7662b) (part _TC7662B)
(fields
(field (name Reference) U)
(field (name Value) _TC7662B))
(pins
(pin (num 1) (name BOOST) (type power_in))
(pin (num 2) (name CAP+) (type passive))
(pin (num 3) (name GND) (type passive))
(pin (num 4) (name CAP-) (type passive))
(pin (num 5) (name VOUT) (type power_out))
(pin (num 6) (name LV) (type passive))
(pin (num 7) (name OSC) (type passive))
(pin (num 8) (name V+) (type power_in)))))
(libraries
(library (logical device)
(uri H:\Programs\KiCad\share\kicad\library\device.lib))
(library (logical switches)
(uri H:\Programs\KiCad\share\kicad\library\switches.lib))
(library (logical conn)
(uri H:\Programs\KiCad\share\kicad\library\conn.lib))
(library (logical linear)
(uri H:\Programs\KiCad\share\kicad\library\linear.lib))
(library (logical _4046)
(uri H:\Workspace\ElectronicsProjects\EffectsPedals\Synth\GuitarPLLSynthEffect\lib\_4046.lib))
(library (logical barrel_jack)
(uri H:\Workspace\ElectronicsProjects\EffectsPedals\Synth\GuitarPLLSynthEffect\lib\barrel_jack.lib))
(library (logical pot_numbered)
(uri H:\Workspace\ElectronicsProjects\EffectsPedals\Synth\GuitarPLLSynthEffect\lib\pot_numbered.lib))
(library (logical socket_custom)
(uri H:\Workspace\ElectronicsProjects\EffectsPedals\Synth\GuitarPLLSynthEffect\lib\socket_custom.lib))
(library (logical _TC7662b)
(uri H:\Workspace\ElectronicsProjects\EffectsPedals\Synth\GuitarPLLSynthEffect\lib\_TC7662b.lib))
(library (logical _schottky)
(uri H:\Workspace\ElectronicsProjects\EffectsPedals\Synth\GuitarPLLSynthEffect\lib\_schottky.lib))
(library (logical sw_custom)
(uri H:\Workspace\ElectronicsProjects\EffectsPedals\Synth\GuitarPLLSynthEffect\lib\sw_custom.lib)))
(nets
(net (code 1) (name /Sheet5AC1BF71/SIG_OUT)
(node (ref U_OAFXBUF1) (pin 7))
(node (ref U_MAINOA1) (pin 5))
(node (ref R_OA_OUT_F1) (pin 1)))
(net (code 2) (name "Net-(R_MIX_F1-Pad2)")
(node (ref U_MAINOA1) (pin 9))
(node (ref R_MIX_G1) (pin 2))
(node (ref R_MIX_F1) (pin 2)))
(net (code 3) (name "Net-(J_OU1-Pad1)")
(node (ref J_OU1) (pin 1))
(node (ref U_MAINOA1) (pin 8))
(node (ref R_MIX_F1) (pin 1)))
(net (code 4) (name "Net-(JP_MIXEDGND1-Pad2)")
(node (ref JP_MIXEDGND1) (pin 2))
(node (ref J_POWER1) (pin 1)))
(net (code 5) (name /INSW_P2)
(node (ref J_MAIN2AUX_INSW1) (pin 1))
(node (ref U_OAFXBUF1) (pin 3)))
(net (code 6) (name /INSW_P1)
(node (ref U_MAINOA1) (pin 3))
(node (ref C_DIRTY_IN1) (pin 2))
(node (ref J_MAIN2AUX_INSW1) (pin 3)))
(net (code 7) (name /INSW_P3)
(node (ref C_CLEAN_IN1) (pin 2))
(node (ref J_MAIN2AUX_INSW1) (pin 2)))
(net (code 8) (name /-9V)
(node (ref U_NEG1) (pin 5))
(node (ref C_OABY2) (pin 1))
(node (ref C1_NEG1) (pin 2))
(node (ref U_MAINOA1) (pin 11)))
(net (code 9) (name /DGND)
(node (ref C_PWRBY1) (pin 2))
(node (ref U_NEG1) (pin 3))
(node (ref C_PWRBY2) (pin 1))
(node (ref C_PWRBY3) (pin 1))
(node (ref U_NEG2) (pin 3))
(node (ref JP_MIXEDGND1) (pin 1))
(node (ref C1_NEG2) (pin 1))
(node (ref C1_NEG1) (pin 1)))
(net (code 10) (name "Net-(C_CLEAN_IN1-Pad1)")
(node (ref J_CLEAN_IN1) (pin 1))
(node (ref C_CLEAN_IN1) (pin 1)))
(net (code 11) (name "Net-(U_MAINOA1-Pad14)")
(node (ref U_MAINOA1) (pin 14)))
(net (code 12) (name "Net-(U_MAINOA1-Pad13)")
(node (ref U_MAINOA1) (pin 13)))
(net (code 13) (name "Net-(U_MAINOA1-Pad12)")
(node (ref U_MAINOA1) (pin 12)))
(net (code 14) (name "Net-(C2_NEG1-Pad2)")
(node (ref U_NEG1) (pin 4))
(node (ref C2_NEG1) (pin 2)))
(net (code 15) (name "Net-(C2_NEG1-Pad1)")
(node (ref U_NEG1) (pin 2))
(node (ref C2_NEG1) (pin 1)))
(net (code 16) (name /9V)
(node (ref U_PLL1) (pin 16))
(node (ref U_NEG1) (pin 8))
(node (ref U_MAINOA1) (pin 4))
(node (ref U_OAPLLSAW1) (pin 8))
(node (ref U_OAFXBUF1) (pin 8))
(node (ref U_NEG1) (pin 1))
(node (ref SW_BYPASS1) (pin 8))
(node (ref C_PWRBY3) (pin 2))
(node (ref C_OABY3) (pin 1))
(node (ref C_OABY13) (pin 1))
(node (ref D_IN1) (pin 1))
(node (ref C_PWRBY1) (pin 1))
(node (ref C_OABY1) (pin 1))
(node (ref U_NEG2) (pin 8))
(node (ref U_NEG2) (pin 1))
(node (ref C_OABY6) (pin 1))
(node (ref C_PWRBY2) (pin 2)))
(net (code 17) (name "Net-(J_AUX2MAIN_INSW1-Pad2)")
(node (ref SW_INSW1) (pin 3))
(node (ref J_AUX2MAIN_INSW1) (pin 2)))
(net (code 18) (name "Net-(D_IN1-Pad2)")
(node (ref D_IN1) (pin 2))
(node (ref J_POWER1) (pin 2)))
(net (code 19) (name "Net-(J_AUX2MAIN_VOL1-Pad4)")
(node (ref MIX1) (pin 1))
(node (ref J_AUX2MAIN_VOL1) (pin 4)))
(net (code 20) (name "Net-(J_AUX2MAIN_INSW1-Pad1)")
(node (ref SW_INSW1) (pin 2))
(node (ref J_AUX2MAIN_INSW1) (pin 1)))
(net (code 21) (name "Net-(J_AUX2MAIN_INSW1-Pad3)")
(node (ref SW_INSW1) (pin 1))
(node (ref J_AUX2MAIN_INSW1) (pin 3)))
(net (code 22) (name "Net-(J_AUX2MAIN_VOL1-Pad2)")
(node (ref MIX1) (pin 2))
(node (ref J_AUX2MAIN_VOL1) (pin 2)))
(net (code 23) (name "Net-(J_AUX2MAIN_VOL1-Pad3)")
(node (ref MIX1) (pin 3))
(node (ref J_AUX2MAIN_VOL1) (pin 3)))
(net (code 24) (name "Net-(SW_BYPASS1-Pad5)")
(node (ref SW_BYPASS1) (pin 5))
(node (ref U_MAINOA1) (pin 10)))
(net (code 25) (name "Net-(J_MAIN2AUX_VOL1-Pad1)")
(node (ref J_MAIN2AUX_VOL1) (pin 1)))
(net (code 26) (name /FXVOL_P1_2)
(node (ref J_MAIN2AUX_VOL1) (pin 6))
(node (ref U_MAINOA1) (pin 6))
(node (ref R_FXVOL1) (pin 1)))
(net (code 27) (name /MIX_P3)
(node (ref U_MAINOA1) (pin 1))
(node (ref J_MAIN2AUX_VOL1) (pin 3))
(node (ref U_MAINOA1) (pin 2)))
(net (code 28) (name /MIX_P2)
(node (ref SW_BYPASS1) (pin 6))
(node (ref J_MAIN2AUX_VOL1) (pin 2)))
(net (code 29) (name /FXVOL_P3)
(node (ref J_MAIN2AUX_VOL1) (pin 4))
(node (ref J_MAIN2AUX_VOL1) (pin 5))
(node (ref U_MAINOA1) (pin 7)))
(net (code 30) (name "Net-(FXVOL1-Pad3)")
(node (ref J_AUX2MAIN_VOL1) (pin 5))
(node (ref FXVOL1) (pin 3)))
(net (code 31) (name "Net-(SW_BYPASS1-Pad1)")
(node (ref SW_BYPASS1) (pin 1))
(node (ref SW_BYPASS1) (pin 4)))
(net (code 32) (name "Net-(C_DIRTY_IN1-Pad1)")
(node (ref C_DIRTY_IN1) (pin 1))
(node (ref SW_BYPASS1) (pin 3)))
(net (code 33) (name "Net-(J_DIRTY_IN1-Pad1)")
(node (ref SW_BYPASS1) (pin 2))
(node (ref J_DIRTY_IN1) (pin 1)))
(net (code 34) (name /GND)
(node (ref R_SAW1) (pin 2))
(node (ref JP_MIXEDGND1) (pin 3))
(node (ref R_OA_IN1) (pin 1))
(node (ref U_PLL1) (pin 8))
(node (ref J_MAIN2AUX_PLL1) (pin 2))
(node (ref R_SFOUT1) (pin 2))
(node (ref U_PLL1) (pin 5))
(node (ref C_OABY6) (pin 2))
(node (ref C_OABY5) (pin 2))
(node (ref J_CLEAN_IN1) (pin 2))
(node (ref J_MAIN2AUX_FXSW1) (pin 5))
(node (ref C_LPF1) (pin 2))
(node (ref U_OAFXBUF1) (pin 5))
(node (ref J_DIRTY_IN1) (pin 4))
(node (ref J_DIRTY_IN1) (pin 2))
(node (ref J_MAIN2AUX_LED1) (pin 2))
(node (ref U_OAPLLSAW1) (pin 5))
(node (ref C_OABY1) (pin 2))
(node (ref J_OU1) (pin 4))
(node (ref C_OABY2) (pin 2))
(node (ref J_CLEAN_IN1) (pin 4))
(node (ref C_OABY4) (pin 2))
(node (ref R_FXVOL1) (pin 2))
(node (ref C_OABY3) (pin 2))
(node (ref C_OABY13) (pin 2))
(node (ref R_MIX_G1) (pin 1)))
(net (code 35) (name "Net-(D_ON1-Pad1)")
(node (ref R_LED1) (pin 1))
(node (ref D_ON1) (pin 1)))
(net (code 36) (name "Net-(J_AUX2MAIN_LED1-Pad2)")
(node (ref J_AUX2MAIN_LED1) (pin 2))
(node (ref R_LED1) (pin 2)))
(net (code 37) (name "Net-(D_ON1-Pad2)")
(node (ref D_ON1) (pin 2))
(node (ref J_AUX2MAIN_LED1) (pin 1)))
(net (code 38) (name /LED_ANODE)
(node (ref SW_BYPASS1) (pin 9))
(node (ref J_MAIN2AUX_LED1) (pin 1)))
(net (code 39) (name "Net-(FXVOL1-Pad1)")
(node (ref FXVOL1) (pin 2))
(node (ref FXVOL1) (pin 1))
(node (ref J_AUX2MAIN_VOL1) (pin 6)))
(net (code 40) (name "Net-(J_DIRTY_IN1-Pad3)")
(node (ref J_DIRTY_IN1) (pin 3)))
(net (code 41) (name "Net-(J_POWER1-Pad3)")
(node (ref J_POWER1) (pin 3)))
(net (code 42) (name "Net-(J_OU1-Pad3)")
(node (ref J_OU1) (pin 3)))
(net (code 43) (name "Net-(J_OU1-Pad2)")
(node (ref J_OU1) (pin 2)))
(net (code 44) (name "Net-(J_CLEAN_IN1-Pad3)")
(node (ref J_CLEAN_IN1) (pin 3)))
(net (code 45) (name "Net-(U_NEG1-Pad6)")
(node (ref U_NEG1) (pin 6)))
(net (code 46) (name "Net-(U_NEG1-Pad7)")
(node (ref U_NEG1) (pin 7)))
(net (code 47) (name "Net-(J_MAIN2AUX_LED1-Pad3)")
(node (ref J_MAIN2AUX_LED1) (pin 3)))
(net (code 48) (name "Net-(J_AUX2MAIN_LED1-Pad3)")
(node (ref J_AUX2MAIN_LED1) (pin 3)))
(net (code 49) (name "Net-(J_AUX2MAIN_LED1-Pad4)")
(node (ref J_AUX2MAIN_LED1) (pin 4)))
(net (code 50) (name "Net-(J_MAIN2AUX_LED1-Pad4)")
(node (ref J_MAIN2AUX_LED1) (pin 4)))
(net (code 51) (name "Net-(J_AUX2MAIN_VOL1-Pad1)")
(node (ref J_AUX2MAIN_VOL1) (pin 1)))
(net (code 52) (name "Net-(SW_BYPASS1-Pad7)")
(node (ref SW_BYPASS1) (pin 7)))