-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAS3340-VCO.net
982 lines (982 loc) · 35.7 KB
/
AS3340-VCO.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
(export (version D)
(design
(source /home/natehouk/Documents/AS3340-VCO/AS3340-VCO.sch)
(date "Sun 08 Nov 2020 07:46:54 AM CET")
(tool "Eeschema 5.1.7")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title SS-VCO-1)
(company "Seattle Synths")
(rev 1)
(date 2020-11-04)
(source AS3340-VCO.sch)
(comment (number 1) (value "Designed by Nathaniel Houk"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value TL074)
(footprint Package_DIP:DIP-14_W7.62mm)
(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 5F949E7B))
(comp (ref R24)
(value 1K)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F9495F9))
(comp (ref R20)
(value 2K)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F94A52D))
(comp (ref R21)
(value 47K)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F94A7C1))
(comp (ref D3)
(value "Zener 10V")
(footprint Seattle_Synths:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Zener) (description "Zener diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5F94D521))
(comp (ref R26)
(value 1K)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F94DD8D))
(comp (ref R19)
(value 680R)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F94CFFF))
(comp (ref R13)
(value 5K6)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F95241D))
(comp (ref R7)
(value 20K)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F987359))
(comp (ref RV3)
(value 100K)
(footprint Seattle_Synths:Potentiometer_Alpha_RD901F-40-00D_Single_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_Potentiometer) (description Potentiometer))
(sheetpath (names /) (tstamps /))
(tstamp 5F989C71))
(comp (ref R10)
(value 47K)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F9AB3D5))
(comp (ref R11)
(value 47K)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F94DA23))
(comp (ref R9)
(value 10K)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F96E611))
(comp (ref D2)
(value 1N4148)
(footprint Seattle_Synths: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 5F96DE2B))
(comp (ref D1)
(value 1N4148)
(footprint Seattle_Synths: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 5F96CD2F))
(comp (ref R8)
(value 10K)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F96B595))
(comp (ref C2)
(value 1nF)
(footprint Seattle_Synths:C_Disc_D7.5mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F965D86))
(comp (ref C3)
(value 1nF)
(footprint Seattle_Synths:C_Disc_D7.5mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F9663A0))
(comp (ref J4)
(value EXT_PWM_CTRL_INPUT)
(footprint Seattle_Synths:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles)
(datasheet ~)
(libsource (lib Connector) (part AudioJack2_SwitchT) (description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 5F9795E1))
(comp (ref R18)
(value 1K8)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F9FA5D6))
(comp (ref R25)
(value 1K)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F955093))
(comp (ref R16)
(value 470R)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FA92218))
(comp (ref C5)
(value 10nF)
(footprint Seattle_Synths:C_Disc_D7.5mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA92AC3))
(comp (ref R15)
(value 1M)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FA967F9))
(comp (ref C4)
(value 100nF)
(footprint Seattle_Synths:C_Disc_D7.5mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA9EF9A))
(comp (ref RV8)
(value 100K)
(footprint Seattle_Synths:Potentiometer_Alpha_RD901F-40-00D_Single_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_Potentiometer) (description Potentiometer))
(sheetpath (names /) (tstamps /))
(tstamp 5FAA07B8))
(comp (ref J8)
(value FM_INPUT)
(footprint Seattle_Synths:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles)
(datasheet ~)
(libsource (lib Connector) (part AudioJack2_SwitchT) (description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 5FAB7421))
(comp (ref R14)
(value 1M5)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FAC8124))
(comp (ref R1)
(value 270K)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FB3CB2A))
(comp (ref RV4)
(value 100K)
(footprint Seattle_Synths:Potentiometer_Runtron_RM-065_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_Potentiometer_Trim) (description Trim-potentiometer))
(sheetpath (names /) (tstamps /))
(tstamp 5FB3F3B3))
(comp (ref R2)
(value 100K)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FB5909B))
(comp (ref J1)
(value 1V/OCT_INPUT)
(footprint Seattle_Synths:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles)
(datasheet ~)
(libsource (lib Connector) (part AudioJack2_SwitchT) (description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 5FB5CBD3))
(comp (ref J2)
(value 1V/OCT_OUT)
(footprint Seattle_Synths:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles)
(datasheet ~)
(libsource (lib Connector) (part AudioJack2_SwitchT) (description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 5FB6154A))
(comp (ref R3)
(value 100K)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FBB002E))
(comp (ref RV2)
(value 100K)
(footprint Seattle_Synths:Potentiometer_Alpha_RD901F-40-00D_Single_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_Potentiometer) (description Potentiometer))
(sheetpath (names /) (tstamps /))
(tstamp 5FBB5663))
(comp (ref J3)
(value CV2_INPUT)
(footprint Seattle_Synths:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles)
(datasheet ~)
(libsource (lib Connector) (part AudioJack2_SwitchT) (description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 5FBBA81B))
(comp (ref R4)
(value 300K)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FBEF936))
(comp (ref SW1)
(value SW_SPDT)
(footprint Button_Switch_THT:SW_Slide_1P2T_CK_OS102011MS2Q)
(datasheet ~)
(libsource (lib Switch) (part SW_SPDT) (description "Switch, single pole double throw"))
(sheetpath (names /) (tstamps /))
(tstamp 5FBF27F0))
(comp (ref RV5)
(value 100K)
(footprint Seattle_Synths:Potentiometer_Alpha_RD901F-40-00D_Single_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_Potentiometer) (description Potentiometer))
(sheetpath (names /) (tstamps /))
(tstamp 5FBFC48A))
(comp (ref R5)
(value 3M3)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FC59364))
(comp (ref RV1)
(value 100K)
(footprint Seattle_Synths:Potentiometer_Alpha_RD901F-40-00D_Single_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_Potentiometer) (description Potentiometer))
(sheetpath (names /) (tstamps /))
(tstamp 5FC59EFD))
(comp (ref R6)
(value 470R)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FC90FC3))
(comp (ref C1)
(value 10nF)
(footprint Seattle_Synths:C_Disc_D7.5mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5FC9933E))
(comp (ref RV7)
(value 10K)
(footprint Seattle_Synths:Potentiometer_Runtron_RM-065_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_Potentiometer_Trim) (description Trim-potentiometer))
(sheetpath (names /) (tstamps /))
(tstamp 5FD14431))
(comp (ref R17)
(value 1M)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FD36F32))
(comp (ref J9)
(value SQUARE_OUT)
(footprint Seattle_Synths:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles)
(datasheet ~)
(libsource (lib Connector) (part AudioJack2_SwitchT) (description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 5FD51402))
(comp (ref J10)
(value SAWTOOTH_OUT)
(footprint Seattle_Synths:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles)
(datasheet ~)
(libsource (lib Connector) (part AudioJack2_SwitchT) (description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 5FD51D5D))
(comp (ref J11)
(value TRIANGLE_OUT)
(footprint Seattle_Synths:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles)
(datasheet ~)
(libsource (lib Connector) (part AudioJack2_SwitchT) (description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 5FD529BA))
(comp (ref J7)
(value SOFT_SYNC_INPUT)
(footprint Seattle_Synths:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles)
(datasheet ~)
(libsource (lib Connector) (part AudioJack2_SwitchT) (description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 5FE07532))
(comp (ref R23)
(value 100K)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FE3FB26))
(comp (ref R22)
(value 100K)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FE4063B))
(comp (ref C6)
(value "500pF (Styrene)")
(footprint Seattle_Synths:C_Disc_D7.5mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F94AAB4))
(comp (ref C7)
(value 1nF)
(footprint Seattle_Synths:C_Disc_D7.5mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F9A7876))
(comp (ref R12)
(value 24K)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F95171C))
(comp (ref U2)
(value AS3340)
(footprint Seattle_Synths:DIP-16_W7.62mm)
(datasheet http://www.alfarzpp.lv/eng/sc/AS3340.pdf)
(libsource (lib Audio) (part AS3340) (description "Voltage Controlled Oscillator (VCO), DIP-16/SOIC-16"))
(sheetpath (names /) (tstamps /))
(tstamp 5F948E56))
(comp (ref RV6)
(value 10K)
(footprint Seattle_Synths:Potentiometer_Runtron_RM-065_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_Potentiometer_Trim) (description Trim-potentiometer))
(sheetpath (names /) (tstamps /))
(tstamp 5FA42B99))
(comp (ref J6)
(value NEG_HARD_SYNC_INPUT)
(footprint Seattle_Synths:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles)
(datasheet ~)
(libsource (lib Connector) (part AudioJack2_SwitchT) (description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 5F99BC9B))
(comp (ref J5)
(value POS_HARD_SYNC_INPUT)
(footprint Seattle_Synths:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles)
(datasheet ~)
(libsource (lib Connector) (part AudioJack2_SwitchT) (description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 5F998B33))
(comp (ref TP1)
(value +12V)
(footprint SeattleSynths:TestPoint_Pad_4.0x4.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5FC68F61))
(comp (ref TP2)
(value GND)
(footprint SeattleSynths:TestPoint_Pad_4.0x4.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5FC6A18C))
(comp (ref TP3)
(value -12V)
(footprint SeattleSynths:TestPoint_Pad_4.0x4.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5FC6B0EB))
(comp (ref J12)
(value EURO_PWR_2x5)
(footprint Seattle_Synths:PinHeader_2x05_P2.54mm_Vertical)
(libsource (lib Seattle_Synths) (part EURO_PWR_2x5) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FA8FA36))
(comp (ref C8)
(value 10uF)
(footprint Seattle_Synths:CP_Radial_D5.0mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5FADF82D))
(comp (ref C10)
(value 10uF)
(footprint Seattle_Synths:CP_Radial_D5.0mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5FB0085B))
(comp (ref C9)
(value 100nF)
(footprint Seattle_Synths:C_Disc_D7.5mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5FB3DF78))
(comp (ref C11)
(value 100nF)
(footprint Seattle_Synths:C_Disc_D7.5mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5FB3E658))
(comp (ref R27)
(value 330R)
(footprint Seattle_Synths:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FFA0468))
(comp (ref D4)
(value LED)
(footprint Seattle_Synths:LED_D5.0mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFA391F)))
(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 Audio) (part AS3340)
(description "Voltage Controlled Oscillator (VCO), DIP-16/SOIC-16")
(docs http://www.alfarzpp.lv/eng/sc/AS3340.pdf)
(footprints
(fp DIP*W7.62mm*)
(fp SOIC*3.9x9.9mm*P1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) AS3340))
(pins
(pin (num 1) (name SCALE1) (type input))
(pin (num 2) (name SCALE2) (type input))
(pin (num 3) (name VEE) (type power_in))
(pin (num 4) (name VP) (type output))
(pin (num 5) (name VPWM) (type input))
(pin (num 6) (name VHSI) (type input))
(pin (num 7) (name VHFT) (type input))
(pin (num 8) (name VSO) (type output))
(pin (num 9) (name VSSI) (type input))
(pin (num 10) (name VTO) (type output))
(pin (num 11) (name CAP) (type passive))
(pin (num 12) (name GND) (type power_in))
(pin (num 13) (name VLFI) (type input))
(pin (num 14) (name VS) (type passive))
(pin (num 15) (name VFCI) (type input))
(pin (num 16) (name VCC) (type power_in))))
(libpart (lib Connector) (part AudioJack2_SwitchT)
(description "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)")
(docs ~)
(footprints
(fp Jack*))
(fields
(field (name Reference) J)
(field (name Value) AudioJack2_SwitchT))
(pins
(pin (num S) (name ~) (type passive))
(pin (num T) (name ~) (type passive))
(pin (num TN) (name ~) (type passive))))
(libpart (lib Connector) (part TestPoint)
(description "test point")
(docs ~)
(footprints
(fp Pin*)
(fp Test*))
(fields
(field (name Reference) TP)
(field (name Value) TestPoint))
(pins
(pin (num 1) (name 1) (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 D_Zener)
(description "Zener diode")
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_Zener))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part LED)
(description "Light emitting diode")
(docs ~)
(footprints
(fp LED*)
(fp LED_SMD:*)
(fp LED_THT:*))
(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 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_Potentiometer)
(description Potentiometer)
(docs ~)
(footprints
(fp Potentiometer*))
(fields
(field (name Reference) RV)
(field (name Value) R_Potentiometer))
(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_Potentiometer_Trim)
(description Trim-potentiometer)
(docs ~)
(footprints
(fp Potentiometer*))
(fields
(field (name Reference) RV)
(field (name Value) R_Potentiometer_Trim))
(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 Seattle_Synths) (part EURO_PWR_2x5)
(fields
(field (name Reference) J)
(field (name Value) EURO_PWR_2x5))
(pins
(pin (num 1) (name +12V) (type power_in))
(pin (num 2) (name +12V) (type power_in))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name GND) (type power_in))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name GND) (type power_in))
(pin (num 7) (name GND) (type power_in))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name -12V) (type power_in))
(pin (num 10) (name -12V) (type power_in))))
(libpart (lib Switch) (part SW_SPDT)
(description "Switch, single pole double throw")
(docs ~)
(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)))))
(libraries
(library (logical Amplifier_Operational)
(uri /usr/share/kicad/library/Amplifier_Operational.lib))
(library (logical Audio)
(uri /usr/share/kicad/library/Audio.lib))
(library (logical Connector)
(uri /usr/share/kicad/library/Connector.lib))
(library (logical Device)
(uri /usr/share/kicad/library/Device.lib))
(library (logical Diode)
(uri /usr/share/kicad/library/Diode.lib))
(library (logical Seattle_Synths)
(uri /home/natehouk/src/seattle-synths/Seattle_Synths.lib))
(library (logical Switch)
(uri /usr/share/kicad/library/Switch.lib)))
(nets
(net (code 1) (name /TRIANGLE_OUT)
(node (ref R25) (pin 1))
(node (ref J11) (pin T)))
(net (code 2) (name "Net-(R22-Pad2)")
(node (ref U1) (pin 9))
(node (ref R22) (pin 2))
(node (ref R23) (pin 1)))
(net (code 3) (name GND)
(node (ref J9) (pin S))
(node (ref J12) (pin 7))
(node (ref J12) (pin 8))
(node (ref RV7) (pin 3))
(node (ref RV3) (pin 3))
(node (ref J12) (pin 3))
(node (ref C10) (pin 1))
(node (ref SW1) (pin 1))
(node (ref TP2) (pin 1))
(node (ref J12) (pin 6))
(node (ref J12) (pin 4))
(node (ref J12) (pin 5))
(node (ref C8) (pin 2))
(node (ref C9) (pin 2))
(node (ref C11) (pin 1))
(node (ref D4) (pin 1))
(node (ref J5) (pin S))
(node (ref J6) (pin S))
(node (ref C1) (pin 1))
(node (ref J11) (pin S))
(node (ref J2) (pin S))
(node (ref J1) (pin S))
(node (ref R18) (pin 1))
(node (ref U2) (pin 12))
(node (ref J4) (pin S))
(node (ref R9) (pin 1))
(node (ref RV8) (pin 1))
(node (ref C5) (pin 1))
(node (ref R22) (pin 1))
(node (ref J7) (pin S))
(node (ref J10) (pin S))
(node (ref R11) (pin 1))
(node (ref R21) (pin 1))
(node (ref D3) (pin 2))
(node (ref RV2) (pin 1))
(node (ref J3) (pin S))
(node (ref J8) (pin S))
(node (ref C6) (pin 1)))
(net (code 4) (name "Net-(C7-Pad2)")
(node (ref J7) (pin T))
(node (ref C7) (pin 2)))
(net (code 5) (name "Net-(J7-PadTN)")
(node (ref J7) (pin TN)))
(net (code 6) (name /SAWTOOTH_OUT)
(node (ref R24) (pin 1))
(node (ref J10) (pin T)))
(net (code 7) (name /SQUARE_OUT)
(node (ref J9) (pin T))
(node (ref R26) (pin 1)))
(net (code 8) (name "Net-(J11-PadTN)")
(node (ref J11) (pin TN)))
(net (code 9) (name "Net-(J10-PadTN)")
(node (ref J10) (pin TN)))
(net (code 10) (name "Net-(R13-Pad2)")
(node (ref U2) (pin 2))
(node (ref R13) (pin 2)))
(net (code 11) (name "Net-(R18-Pad2)")
(node (ref U2) (pin 14))
(node (ref R18) (pin 2)))
(net (code 12) (name /TRIANGLE)
(node (ref U2) (pin 10))
(node (ref U1) (pin 10)))
(net (code 13) (name "Net-(R12-Pad2)")
(node (ref R12) (pin 2))
(node (ref RV6) (pin 1)))
(net (code 14) (name "Net-(R12-Pad1)")
(node (ref R12) (pin 1))
(node (ref U2) (pin 1)))
(net (code 15) (name /SOFT_SYNC)
(node (ref C7) (pin 1))
(node (ref U2) (pin 9)))
(net (code 16) (name "Net-(C6-Pad2)")
(node (ref C6) (pin 2))
(node (ref U2) (pin 11)))
(net (code 17) (name "Net-(J4-PadT)")
(node (ref U1) (pin 12))
(node (ref J4) (pin T)))
(net (code 18) (name "Net-(RV5-Pad2)")
(node (ref SW1) (pin 3))
(node (ref RV5) (pin 2)))
(net (code 19) (name "Net-(R5-Pad1)")
(node (ref R5) (pin 1))
(node (ref RV1) (pin 2)))
(net (code 20) (name -12V)
(node (ref J12) (pin 9))
(node (ref J12) (pin 10))
(node (ref TP3) (pin 1))
(node (ref RV1) (pin 1))
(node (ref R19) (pin 1))
(node (ref RV5) (pin 1))
(node (ref C9) (pin 1))
(node (ref C8) (pin 1))
(node (ref U1) (pin 11)))
(net (code 21) (name +12V)
(node (ref RV4) (pin 3))
(node (ref RV1) (pin 3))
(node (ref RV5) (pin 3))
(node (ref C10) (pin 2))
(node (ref U2) (pin 16))
(node (ref C11) (pin 2))
(node (ref R27) (pin 2))
(node (ref R14) (pin 1))
(node (ref TP1) (pin 1))
(node (ref J12) (pin 2))
(node (ref R7) (pin 1))
(node (ref J12) (pin 1))
(node (ref U1) (pin 4)))
(net (code 22) (name "Net-(R4-Pad1)")
(node (ref R4) (pin 1))
(node (ref SW1) (pin 2)))
(net (code 23) (name "Net-(J9-PadTN)")
(node (ref J9) (pin TN)))
(net (code 24) (name "Net-(R17-Pad2)")
(node (ref R17) (pin 2))
(node (ref RV7) (pin 2)))
(net (code 25) (name "Net-(RV7-Pad1)")
(node (ref U2) (pin 7))
(node (ref RV7) (pin 1)))
(net (code 26) (name "Net-(R13-Pad1)")
(node (ref RV6) (pin 2))
(node (ref R8) (pin 2))
(node (ref RV6) (pin 3))
(node (ref R19) (pin 2))
(node (ref R13) (pin 1))
(node (ref U2) (pin 3)))
(net (code 27) (name "Net-(C1-Pad2)")
(node (ref R6) (pin 1))
(node (ref C1) (pin 2)))
(net (code 28) (name "Net-(D4-Pad2)")
(node (ref D4) (pin 2))
(node (ref R27) (pin 1)))
(net (code 29) (name "Net-(J1-PadT)")
(node (ref R2) (pin 1))
(node (ref J1) (pin T))
(node (ref J2) (pin T)))
(net (code 30) (name "Net-(J3-PadTN)")
(node (ref J3) (pin TN)))
(net (code 31) (name "Net-(J5-PadTN)")
(node (ref J5) (pin TN)))
(net (code 32) (name "Net-(C2-Pad2)")
(node (ref C2) (pin 2))
(node (ref J5) (pin T)))
(net (code 33) (name "Net-(J6-PadTN)")
(node (ref J6) (pin TN)))
(net (code 34) (name "Net-(C3-Pad2)")
(node (ref J6) (pin T))
(node (ref C3) (pin 2)))
(net (code 35) (name "Net-(J8-PadTN)")
(node (ref J8) (pin TN)))
(net (code 36) (name "Net-(J1-PadTN)")
(node (ref J1) (pin TN)))
(net (code 37) (name "Net-(J2-PadTN)")
(node (ref J2) (pin TN)))
(net (code 38) (name "Net-(R7-Pad2)")
(node (ref RV3) (pin 1))
(node (ref R7) (pin 2)))
(net (code 39) (name "Net-(R10-Pad2)")
(node (ref U1) (pin 14))
(node (ref R10) (pin 2))
(node (ref U1) (pin 13)))
(net (code 40) (name "Net-(J4-PadTN)")
(node (ref RV3) (pin 2))
(node (ref J4) (pin TN)))
(net (code 41) (name "Net-(C2-Pad1)")
(node (ref D1) (pin 2))
(node (ref R8) (pin 1))
(node (ref C2) (pin 1)))
(net (code 42) (name "Net-(C3-Pad1)")
(node (ref R9) (pin 2))
(node (ref D2) (pin 1))
(node (ref C3) (pin 1)))
(net (code 43) (name /PWM)
(node (ref U2) (pin 5))
(node (ref R11) (pin 2))
(node (ref R10) (pin 1)))
(net (code 44) (name "Net-(D3-Pad1)")
(node (ref D3) (pin 1))
(node (ref R20) (pin 1))
(node (ref U1) (pin 5))
(node (ref R21) (pin 2)))
(net (code 45) (name /SQUARE)
(node (ref U2) (pin 4))
(node (ref R20) (pin 2)))
(net (code 46) (name "Net-(R24-Pad2)")
(node (ref U1) (pin 1))
(node (ref R24) (pin 2))
(node (ref U1) (pin 2)))
(net (code 47) (name /SAWTOOTH)
(node (ref U1) (pin 3))
(node (ref U2) (pin 8)))
(net (code 48) (name "Net-(R26-Pad2)")
(node (ref R26) (pin 2))
(node (ref U1) (pin 7))
(node (ref U1) (pin 6)))
(net (code 49) (name "Net-(R1-Pad1)")
(node (ref RV4) (pin 2))
(node (ref RV4) (pin 1))
(node (ref R1) (pin 1)))
(net (code 50) (name /LINEAR_FM)
(node (ref U2) (pin 13))
(node (ref R16) (pin 2))
(node (ref R15) (pin 2))
(node (ref R14) (pin 2)))
(net (code 51) (name "Net-(J8-PadT)")
(node (ref J8) (pin T))
(node (ref RV8) (pin 3)))
(net (code 52) (name /FREQ_CTRL)
(node (ref R6) (pin 2))
(node (ref U2) (pin 15))
(node (ref R1) (pin 2))
(node (ref R4) (pin 2))
(node (ref R3) (pin 2))
(node (ref R5) (pin 2))
(node (ref R2) (pin 2))
(node (ref R17) (pin 1)))
(net (code 53) (name "Net-(J3-PadT)")
(node (ref RV2) (pin 3))
(node (ref J3) (pin T)))
(net (code 54) (name "Net-(R3-Pad1)")
(node (ref R3) (pin 1))
(node (ref RV2) (pin 2)))
(net (code 55) (name "Net-(R23-Pad2)")
(node (ref R23) (pin 2))
(node (ref U1) (pin 8))
(node (ref R25) (pin 2)))
(net (code 56) (name /HARD_SYNC)
(node (ref D2) (pin 2))
(node (ref D1) (pin 1))
(node (ref U2) (pin 6)))
(net (code 57) (name "Net-(C4-Pad1)")
(node (ref C4) (pin 1))
(node (ref RV8) (pin 2)))
(net (code 58) (name "Net-(C4-Pad2)")
(node (ref R15) (pin 1))
(node (ref C4) (pin 2)))
(net (code 59) (name "Net-(C5-Pad2)")
(node (ref R16) (pin 1))
(node (ref C5) (pin 2)))))