-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathattenuverter_mixer.net
1120 lines (1120 loc) · 40.5 KB
/
attenuverter_mixer.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 /home/liam/code/synth/attenuverter_mixer/attenuverter_mixer.sch)
(date "Sat 28 Sep 2019 17:27:10 BST")
(tool "Eeschema 5.1.4")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source attenuverter_mixer.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref J1)
(value Input)
(footprint kicad_libraries:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles)
(datasheet ~)
(libsource (lib attenuverter_mixer) (part AudioJack1_SwitchT) (description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D7F5F96))
(comp (ref R11)
(value 220k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D9670DC))
(comp (ref R12)
(value 220k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D967ADD))
(comp (ref R13)
(value 220k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D968113))
(comp (ref R14)
(value 220k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D968461))
(comp (ref U5)
(value TL074)
(footprint Package_SO:SOIC-14_3.9x8.7mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/tl071.pdf)
(libsource (lib Amplifier_Operational) (part TL074) (description "Quad Low-Noise JFET-Input Operational Amplifiers, DIP-14/SOIC-14"))
(sheetpath (names /) (tstamps /))
(tstamp 5D97FD2B))
(comp (ref R22)
(value 220k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D9AC6AB))
(comp (ref R5)
(value 330R)
(footprint Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D9C6501))
(comp (ref J9)
(value "Sum out")
(footprint kicad_libraries:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles)
(datasheet ~)
(libsource (lib attenuverter_mixer) (part AudioJack1_SwitchT) (description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9CD1B6))
(comp (ref R19)
(value 100k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D9F0183))
(comp (ref R25)
(value 100k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DA12B58))
(comp (ref C15)
(value 18pF)
(footprint Capacitor_THT:C_Disc_D3.0mm_W2.0mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5DA20330))
(comp (ref U1)
(value TL072)
(footprint Package_SO:SOIC-8_3.9x4.9mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/tl071.pdf)
(libsource (lib Amplifier_Operational) (part TL072) (description "Dual Low-Noise JFET-Input Operational Amplifiers, DIP-8/SOIC-8"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD8C3B7))
(comp (ref U2)
(value TL072)
(footprint Package_SO:SOIC-8_3.9x4.9mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/tl071.pdf)
(libsource (lib Amplifier_Operational) (part TL072) (description "Dual Low-Noise JFET-Input Operational Amplifiers, DIP-8/SOIC-8"))
(sheetpath (names /) (tstamps /))
(tstamp 5DDFA4C8))
(comp (ref J0)
(value "Eurorack power")
(footprint Connector_PinSocket_2.54mm:PinSocket_2x05_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x05_Odd_Even) (description "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF894B6))
(comp (ref C1)
(value 10uF)
(footprint Capacitor_THT:CP_Radial_D5.0mm_P2.00mm)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E01EB55))
(comp (ref C2)
(value 10uF)
(footprint Capacitor_THT:CP_Radial_D5.0mm_P2.00mm)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E01EFEE))
(comp (ref C3)
(value 100nF)
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E01FB3C))
(comp (ref C4)
(value 100nF)
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0203D6))
(comp (ref U6)
(value LM4040CIZ-5.0)
(footprint Package_TO_SOT_THT:TO-92_Inline)
(datasheet http://www.ti.com/lit/ds/symlink/lm4040-n.pdf)
(libsource (lib Reference_Voltage) (part LM4040DBZ-5) (description "5.000V Precision Micropower Shunt Voltage Reference, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5D806F7C))
(comp (ref R47)
(value R)
(footprint Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D89B833))
(comp (ref D16)
(value 1N5817)
(footprint Diode_THT:D_DO-41_SOD81_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Schottky) (description "Schottky diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DA18FFC))
(comp (ref D17)
(value 1N5817)
(footprint Diode_THT:D_DO-41_SOD81_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Schottky) (description "Schottky diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DA1944E))
(comp (ref D8)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD6FA45))
(comp (ref D9)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD7137F))
(comp (ref D10)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD7358E))
(comp (ref D11)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD747FE))
(comp (ref R45)
(value 220k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DD76308))
(comp (ref D14)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE68CD6))
(comp (ref D15)
(value 1N4148)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5DEB7989))
(comp (ref R48)
(value 330R)
(footprint Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DEBA0ED))
(comp (ref R46)
(value 220k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DEF3193))
(comp (ref J10)
(value "Or out")
(footprint kicad_libraries:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles)
(datasheet ~)
(libsource (lib attenuverter_mixer) (part AudioJack1_SwitchT) (description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF14303))
(comp (ref J2)
(value Out)
(footprint kicad_libraries:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles)
(datasheet ~)
(libsource (lib attenuverter_mixer) (part AudioJack1_SwitchT) (description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D8238F8))
(comp (ref U3)
(value TL072)
(footprint Package_SO:SOIC-8_3.9x4.9mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/tl071.pdf)
(libsource (lib Amplifier_Operational) (part TL072) (description "Dual Low-Noise JFET-Input Operational Amplifiers, DIP-8/SOIC-8"))
(sheetpath (names /) (tstamps /))
(tstamp 5DB3E7FA))
(comp (ref U4)
(value TL072)
(footprint Package_SO:SOIC-8_3.9x4.9mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/tl071.pdf)
(libsource (lib Amplifier_Operational) (part TL072) (description "Dual Low-Noise JFET-Input Operational Amplifiers, DIP-8/SOIC-8"))
(sheetpath (names /) (tstamps /))
(tstamp 5DBAA1D9))
(comp (ref C8)
(value 100nF)
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD5B877))
(comp (ref C9)
(value 100nF)
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD5B881))
(comp (ref C11)
(value 100nF)
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD94CDE))
(comp (ref C12)
(value 100nF)
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD94CE8))
(comp (ref C13)
(value 100nF)
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE1733E))
(comp (ref C16)
(value 100nF)
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE17348))
(comp (ref R1)
(value 100k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DA82AAC))
(comp (ref RV1)
(value 10k)
(footprint Potentiometer_THT:Potentiometer_Alpha_RD901F-40-00D_Single_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_POT) (description Potentiometer))
(sheetpath (names /) (tstamps /))
(tstamp 5DA85282))
(comp (ref R6)
(value 100k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DB12D37))
(comp (ref R10)
(value 100k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DB2EFE7))
(comp (ref R24)
(value 330R)
(footprint Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DBDEB65))
(comp (ref R18)
(value 100k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5DBECDD2))
(comp (ref C5)
(value 18pF)
(footprint Capacitor_THT:C_Disc_D3.0mm_W2.0mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5DC08586))
(comp (ref J3)
(value Input)
(footprint kicad_libraries:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles)
(datasheet ~)
(libsource (lib attenuverter_mixer) (part AudioJack1_SwitchT) (description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E62B490))
(comp (ref J6)
(value Out)
(footprint kicad_libraries:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles)
(datasheet ~)
(libsource (lib attenuverter_mixer) (part AudioJack1_SwitchT) (description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E62B4B3))
(comp (ref R2)
(value 100k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E62B4C0))
(comp (ref RV2)
(value 10k)
(footprint Potentiometer_THT:Potentiometer_Alpha_RD901F-40-00D_Single_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_POT) (description Potentiometer))
(sheetpath (names /) (tstamps /))
(tstamp 5E62B4CA))
(comp (ref R7)
(value 100k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E62B4ED))
(comp (ref R15)
(value 100k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E62B4FE))
(comp (ref R26)
(value 330R)
(footprint Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E62B521))
(comp (ref R20)
(value 100k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E62B52C))
(comp (ref C6)
(value 18pF)
(footprint Capacitor_THT:C_Disc_D3.0mm_W2.0mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E62B538))
(comp (ref J4)
(value Input)
(footprint kicad_libraries:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles)
(datasheet ~)
(libsource (lib attenuverter_mixer) (part AudioJack1_SwitchT) (description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E673264))
(comp (ref J7)
(value Out)
(footprint kicad_libraries:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles)
(datasheet ~)
(libsource (lib attenuverter_mixer) (part AudioJack1_SwitchT) (description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E673287))
(comp (ref R3)
(value 100k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E673294))
(comp (ref RV3)
(value 10k)
(footprint Potentiometer_THT:Potentiometer_Alpha_RD901F-40-00D_Single_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_POT) (description Potentiometer))
(sheetpath (names /) (tstamps /))
(tstamp 5E67329E))
(comp (ref R8)
(value 100k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E6732C1))
(comp (ref R16)
(value 100k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E6732D2))
(comp (ref R27)
(value 330R)
(footprint Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E6732F5))
(comp (ref R21)
(value 100k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E673300))
(comp (ref C7)
(value 18pF)
(footprint Capacitor_THT:C_Disc_D3.0mm_W2.0mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E67330C))
(comp (ref J5)
(value Input)
(footprint kicad_libraries:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles)
(datasheet ~)
(libsource (lib attenuverter_mixer) (part AudioJack1_SwitchT) (description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6DC622))
(comp (ref J8)
(value Out)
(footprint kicad_libraries:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles)
(datasheet ~)
(libsource (lib attenuverter_mixer) (part AudioJack1_SwitchT) (description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6DC645))
(comp (ref R4)
(value 100k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E6DC652))
(comp (ref RV4)
(value 10k)
(footprint Potentiometer_THT:Potentiometer_Alpha_RD901F-40-00D_Single_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_POT) (description Potentiometer))
(sheetpath (names /) (tstamps /))
(tstamp 5E6DC65C))
(comp (ref R9)
(value 100k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E6DC67F))
(comp (ref R17)
(value 100k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E6DC690))
(comp (ref R28)
(value 330R)
(footprint Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E6DC6B3))
(comp (ref R23)
(value 100k)
(footprint Resistor_SMD:R_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E6DC6BE))
(comp (ref C10)
(value 18pF)
(footprint Capacitor_THT:C_Disc_D3.0mm_W2.0mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6DC6CA))
(comp (ref C14)
(value 100nF)
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EAB8EE5))
(comp (ref C17)
(value 100nF)
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5EAB8EEF)))
(libparts
(libpart (lib Amplifier_Operational) (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 MC33174)
(alias MC33179)
(alias OPA1604)
(alias OPA1679)
(alias OPA4134)
(alias OPA4340UA)
(alias OPA4376)
(alias MCP6L94)
(alias TSV914)
(alias ADA4807-4)
(alias TSV994))
(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*P1.27mm*)
(fp DIP*W7.62mm*)
(fp TSSOP*4.4x5mm*P0.65mm*)
(fp SSOP*5.3x6.2mm*P0.65mm*)
(fp MSOP*3x3mm*P0.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 Amplifier_Operational) (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 OPA1678)
(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)
(alias LT6234)
(alias OPA2356xxD)
(alias OPA2356xxDGK)
(alias OPA1612AxD)
(alias MC33172)
(alias OPA1602)
(alias TLV2372)
(alias LT6237)
(alias OPA2277))
(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*P1.27mm*)
(fp DIP*W7.62mm*)
(fp TO*99*)
(fp OnSemi*Micro8*)
(fp TSSOP*3x3mm*P0.65mm*)
(fp TSSOP*4.4x3mm*P0.65mm*)
(fp MSOP*3x3mm*P0.65mm*)
(fp SSOP*3.9x4.9mm*P0.635mm*)
(fp LFCSP*2x2mm*P0.5mm*)
(fp *SIP*)
(fp SOIC*5.3x6.2mm*P1.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 Connector_Generic) (part Conn_02x05_Odd_Even)
(description "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x05_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))))
(libpart (lib Device) (part C)
(description "Unpolarized capacitor")
(docs ~)
(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 "Polarized capacitor")
(docs ~)
(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 Device) (part D_Schottky)
(description "Schottky diode")
(docs ~)
(footprints
(fp TO-???*)
(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 R)
(description Resistor)
(docs ~)
(footprints
(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 Device) (part R_POT)
(description Potentiometer)
(docs ~)
(footprints
(fp Potentiometer*))
(fields
(field (name Reference) RV)
(field (name Value) R_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 Diode) (part 1N4148)
(aliases
(alias 1N4448)
(alias 1N4149)
(alias 1N4151)
(alias 1N914)
(alias BA243)
(alias BA244)
(alias BA282)
(alias BA283)
(alias BAV17)
(alias BAV18)
(alias BAV19)
(alias BAV20)
(alias BAV21)
(alias BAW75)
(alias BAW76)
(alias BAY93))
(description "100V 0.15A standard switching diode, DO-35")
(docs https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(footprints
(fp D*DO?35*))
(fields
(field (name Reference) D)
(field (name Value) 1N4148)
(field (name Footprint) Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Reference_Voltage) (part LM4040DBZ-2.0)
(aliases
(alias LM4040DBZ-2.5)
(alias LM4040DBZ-3)
(alias LM4040DBZ-4.1)
(alias LM4040DBZ-5)
(alias LM4040DBZ-8.2)
(alias LM4040DBZ-10))
(description "2.048V Precision Micropower Shunt Voltage Reference, SOT-23")
(docs http://www.ti.com/lit/ds/symlink/lm4040-n.pdf)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) U)
(field (name Value) LM4040DBZ-2.0)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib attenuverter_mixer) (part AudioJack1_SwitchT)
(description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)")
(docs ~)
(footprints
(fp Jack*))
(fields
(field (name Reference) J)
(field (name Value) AudioJack1_SwitchT))
(pins
(pin (num S) (name ~) (type input))
(pin (num T) (name ~) (type passive))
(pin (num TN) (name ~) (type passive)))))
(libraries
(library (logical Amplifier_Operational)
(uri /usr/share/kicad/library/Amplifier_Operational.lib))
(library (logical Connector_Generic)
(uri /usr/share/kicad/library/Connector_Generic.lib))
(library (logical Device)
(uri /usr/share/kicad/library/Device.lib))
(library (logical Diode)
(uri /usr/share/kicad/library/Diode.lib))
(library (logical Reference_Voltage)
(uri /usr/share/kicad/library/Reference_Voltage.lib))
(library (logical attenuverter_mixer)
(uri /home/liam/code/synth/attenuverter_mixer/attenuverter_mixer.lib)))
(nets
(net (code 1) (name "Net-(R15-Pad2)")
(node (ref R7) (pin 1))
(node (ref U2) (pin 1))
(node (ref R15) (pin 2)))
(net (code 2) (name GND)
(node (ref U4) (pin 3))
(node (ref C8) (pin 2))
(node (ref U5) (pin 3))
(node (ref C14) (pin 2))
(node (ref C17) (pin 1))
(node (ref U1) (pin 3))
(node (ref U4) (pin 5))
(node (ref J0) (pin 3))
(node (ref J0) (pin 4))
(node (ref U5) (pin 5))
(node (ref C9) (pin 1))
(node (ref C11) (pin 2))
(node (ref U3) (pin 3))
(node (ref J0) (pin 8))
(node (ref J0) (pin 7))
(node (ref C1) (pin 2))
(node (ref D14) (pin 2))
(node (ref C2) (pin 1))
(node (ref U6) (pin 2))
(node (ref C12) (pin 1))
(node (ref C13) (pin 2))
(node (ref C16) (pin 1))
(node (ref U3) (pin 5))
(node (ref C4) (pin 1))
(node (ref C3) (pin 2))
(node (ref U2) (pin 5))
(node (ref U2) (pin 3))
(node (ref U1) (pin 5)))
(net (code 3) (name "Net-(R7-Pad2)")
(node (ref RV2) (pin 3))
(node (ref U2) (pin 2))
(node (ref R7) (pin 2)))
(net (code 4) (name "Net-(R2-Pad1)")
(node (ref R2) (pin 1))
(node (ref RV2) (pin 2)))
(net (code 5) (name /out_3)
(node (ref J7) (pin TN))
(node (ref R13) (pin 2))
(node (ref D10) (pin 2)))
(net (code 6) (name "Net-(J4-PadT)")
(node (ref J4) (pin T))
(node (ref R3) (pin 2)))
(net (code 7) (name GNDPWR)
(node (ref J9) (pin S))
(node (ref J0) (pin 5))
(node (ref J6) (pin S))
(node (ref J7) (pin S))
(node (ref J10) (pin S))
(node (ref J2) (pin S))
(node (ref J3) (pin S))
(node (ref J1) (pin S))
(node (ref J5) (pin S))
(node (ref J0) (pin 6))
(node (ref J8) (pin S))
(node (ref J4) (pin S)))
(net (code 8) (name "Net-(J7-PadT)")
(node (ref J7) (pin T))
(node (ref R21) (pin 1))
(node (ref R27) (pin 1)))
(net (code 9) (name "Net-(J6-PadT)")
(node (ref R26) (pin 1))
(node (ref R20) (pin 1))
(node (ref J6) (pin T)))
(net (code 10) (name "Net-(C6-Pad1)")
(node (ref U2) (pin 7))
(node (ref C6) (pin 1))
(node (ref R26) (pin 2)))
(net (code 11) (name "Net-(C6-Pad2)")
(node (ref R15) (pin 1))
(node (ref RV2) (pin 1))
(node (ref U2) (pin 6))
(node (ref R20) (pin 2))
(node (ref C6) (pin 2)))
(net (code 12) (name "Net-(R10-Pad2)")
(node (ref R10) (pin 2))
(node (ref U1) (pin 1))
(node (ref R6) (pin 1)))
(net (code 13) (name "Net-(J2-PadT)")
(node (ref R24) (pin 1))
(node (ref R18) (pin 1))
(node (ref J2) (pin T)))
(net (code 14) (name "Net-(C5-Pad2)")
(node (ref U1) (pin 6))
(node (ref C5) (pin 2))
(node (ref R18) (pin 2))
(node (ref RV1) (pin 1))
(node (ref R10) (pin 1)))
(net (code 15) (name "Net-(R1-Pad1)")
(node (ref R1) (pin 1))
(node (ref RV1) (pin 2)))
(net (code 16) (name "Net-(R6-Pad2)")
(node (ref RV1) (pin 3))
(node (ref U1) (pin 2))
(node (ref R6) (pin 2)))
(net (code 17) (name /Vref)
(node (ref J5) (pin TN))
(node (ref J3) (pin TN))
(node (ref J4) (pin TN))
(node (ref J1) (pin TN))
(node (ref U5) (pin 14))
(node (ref U5) (pin 13)))
(net (code 18) (name "Net-(J3-PadT)")
(node (ref R2) (pin 2))
(node (ref J3) (pin T)))
(net (code 19) (name /out_2)
(node (ref D9) (pin 2))
(node (ref R12) (pin 2))
(node (ref J6) (pin TN)))
(net (code 20) (name "Net-(C5-Pad1)")
(node (ref R24) (pin 2))
(node (ref U1) (pin 7))
(node (ref C5) (pin 1)))
(net (code 21) (name "Net-(R17-Pad2)")
(node (ref R9) (pin 1))
(node (ref U4) (pin 1))
(node (ref R17) (pin 2)))
(net (code 22) (name "Net-(J8-PadT)")
(node (ref R28) (pin 1))
(node (ref R23) (pin 1))
(node (ref J8) (pin T)))
(net (code 23) (name "Net-(R4-Pad1)")
(node (ref RV4) (pin 2))
(node (ref R4) (pin 1)))
(net (code 24) (name "Net-(R9-Pad2)")
(node (ref R9) (pin 2))
(node (ref U4) (pin 2))
(node (ref RV4) (pin 3)))
(net (code 25) (name +12V)
(node (ref U3) (pin 8))
(node (ref C14) (pin 1))
(node (ref C8) (pin 1))
(node (ref U5) (pin 4))
(node (ref U4) (pin 8))
(node (ref U2) (pin 8))
(node (ref U1) (pin 8))
(node (ref C13) (pin 1))
(node (ref C1) (pin 1))
(node (ref D17) (pin 1))
(node (ref C3) (pin 1))
(node (ref C11) (pin 1))