-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathKicad-Midi2CV2.net
1754 lines (1754 loc) · 64.1 KB
/
Kicad-Midi2CV2.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 C:\Users\anders\Documents\KiCad\Projects\KicadJE-MidiToCV-MK2\Kicad-Midi2CV2.sch)
(date "28/02/2019 19:22:02")
(tool "Eeschema (5.0.2)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "MIDI to CV")
(company Promesoft)
(rev "Rev B")
(date 2019-01-29)
(source Kicad-Midi2CV2.sch)
(comment (number 1) (value "Johansen Engineering"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref A101)
(value Arduino_Nano_v3.x)
(footprint Module:Arduino_Nano)
(datasheet http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf)
(libsource (lib MCU_Module) (part Arduino_Nano_v3.x) (description "Arduino Nano v3.x"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1C06D8))
(comp (ref U103)
(value EL814)
(footprint Package_DIP:DIP-4_W7.62mm_LongPads)
(datasheet http://www.everlight.com/file/ProductFile/EL814.pdf)
(libsource (lib Isolator) (part EL814) (description "AC/DC NPN Optocoupler, DIP4/SMD4"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1C075E))
(comp (ref Q102)
(value MMBT2222A)
(footprint Package_TO_SOT_SMD:SOT-23_Handsoldering)
(datasheet Unavailable)
(fields
(field (name Field4) None)
(field (name Field5) ON)
(field (name Field7) MMBT2222A)
(field (name Field8) "TO-236-3 Taitron"))
(libsource (lib MMBT2222A) (part MMBT2222A) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C1C0AF7))
(comp (ref J107)
(value "MIDI IN")
(footprint w_conn_av:din-5)
(datasheet http://www.mouser.com/ds/2/18/40_c091_abd_e-75918.pdf)
(libsource (lib Connector) (part DIN-5) (description "5-pin DIN connector"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1C0BCC))
(comp (ref IC102)
(value MCP4725module)
(footprint Connector_PinSocket_2.54mm:PinSocket_1x06_P2.54mm_Vertical)
(libsource (lib Kicad-Midi2CV2-rescue) (part MCP4725module-aj_adc_dac) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C1C16C6))
(comp (ref IC101)
(value MCP4725module)
(footprint Connector_PinSocket_2.54mm:PinSocket_1x06_P2.54mm_Vertical)
(libsource (lib Kicad-Midi2CV2-rescue) (part MCP4725module-aj_adc_dac) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C1C326B))
(comp (ref D104)
(value LED1)
(footprint LED_THT:LED_D3.0mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1CEEC6))
(comp (ref D105)
(value LED2)
(footprint LED_THT:LED_D3.0mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1CEF6A))
(comp (ref D106)
(value LED3)
(footprint LED_THT:LED_D3.0mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1CF002))
(comp (ref D107)
(value LED4)
(footprint LED_THT:LED_D3.0mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C1CF008))
(comp (ref R132)
(value 680R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C1CFAFB))
(comp (ref R133)
(value 680R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C1CFC0E))
(comp (ref R134)
(value 680R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C1CFC52))
(comp (ref R137)
(value 680R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C1CFCA2))
(comp (ref R121)
(value 220R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C1CFCF0))
(comp (ref R119)
(value 1k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C1DFF32))
(comp (ref R126)
(value 1k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C1E3615))
(comp (ref R106)
(value 8k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C1E9F2A))
(comp (ref R107)
(value 8k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C1E9FAC))
(comp (ref J104)
(value "Power Conn")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x06) (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C21A17B))
(comp (ref C102)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C22F1AA))
(comp (ref C101)
(value 100uF)
(footprint Capacitor_THT:CP_Radial_D5.0mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C22F286))
(comp (ref J102)
(value "Vin 7-12v")
(footprint Connector_BarrelJack:BarrelJack_CUI_PJ-063AH_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Barrel_Jack) (description "DC Barrel Jack"))
(sheetpath (names /) (tstamps /))
(tstamp 5C22F3A0))
(comp (ref C123)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C289E13))
(comp (ref C122)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C289F13))
(comp (ref C104)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C2930C9))
(comp (ref C116)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C29D34F))
(comp (ref R103)
(value 10M)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C2B290D))
(comp (ref J112)
(value CV1)
(footprint AJ-Dropbox-Kicad:PJ301SM)
(datasheet ~)
(fields
(field (name Function) "CV1 Out"))
(libsource (lib Connector) (part AudioJack2) (description "Audio Jack, 2 Poles (Mono / TS)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C2C7CBB))
(comp (ref J114)
(value CV2)
(footprint AJ-Dropbox-Kicad:PJ301SM)
(datasheet ~)
(fields
(field (name Function) "CV2 out"))
(libsource (lib Connector) (part AudioJack2) (description "Audio Jack, 2 Poles (Mono / TS)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C2C7E1B))
(comp (ref D108)
(value LED_MIDI)
(footprint LED_THT:LED_D3.0mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C30AA34))
(comp (ref R140)
(value 680R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C30AA3A))
(comp (ref R146)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C3D162F))
(comp (ref C121)
(value 47n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C3D16CF))
(comp (ref D110)
(value LED_CV1)
(footprint LED_THT:LED_D3.0mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C41F470))
(comp (ref R142)
(value 680R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C41F476))
(comp (ref J106)
(value Gate1)
(footprint AJ-Dropbox-Kicad:PJ301SM)
(datasheet ~)
(libsource (lib Connector) (part AudioJack2) (description "Audio Jack, 2 Poles (Mono / TS)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C528256))
(comp (ref J109)
(value Gate2)
(footprint AJ-Dropbox-Kicad:PJ301SM)
(datasheet ~)
(libsource (lib Connector) (part AudioJack2) (description "Audio Jack, 2 Poles (Mono / TS)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C52825C))
(comp (ref J111)
(value Gate3)
(footprint Connector_Audio:AudioJack3StereoNarrow-PJ-321)
(datasheet ~)
(libsource (lib Connector) (part AudioJack2) (description "Audio Jack, 2 Poles (Mono / TS)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C528262))
(comp (ref J113)
(value Gate4)
(footprint Connector_Audio:AudioJack3StereoNarrow-PJ-321)
(datasheet ~)
(libsource (lib Connector) (part AudioJack2) (description "Audio Jack, 2 Poles (Mono / TS)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C528268))
(comp (ref J108)
(value "CV6 in")
(footprint Connector_Audio:AudioJack3StereoNarrow-PJ-321)
(datasheet ~)
(fields
(field (name Function) "VC input"))
(libsource (lib Connector) (part AudioJack2) (description "Audio Jack, 2 Poles (Mono / TS)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C59B839))
(comp (ref J103)
(value "MIDI OUT")
(footprint w_conn_av:din-5)
(datasheet http://www.mouser.com/ds/2/18/40_c091_abd_e-75918.pdf)
(libsource (lib Connector) (part DIN-5) (description "5-pin DIN connector"))
(sheetpath (names /) (tstamps /))
(tstamp 5C70CA21))
(comp (ref R110)
(value 220R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C70CA27))
(comp (ref U101)
(value TL072)
(footprint AJ-Dropbox-Kicad:AJ_SO-8_5.3x6.2mm_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 5C723CF4))
(comp (ref R104)
(value 11k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C724D75))
(comp (ref R113)
(value 22k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C72506D))
(comp (ref R114)
(value 22k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C78B0A1))
(comp (ref R105)
(value 11k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C78B13F))
(comp (ref RV102)
(value 10k)
(footprint Potentiometer_THT:Potentiometer_Alps_RK09K_Single_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_POT) (description Potentiometer))
(sheetpath (names /) (tstamps /))
(tstamp 5C7A3722))
(comp (ref RV101)
(value 10k)
(footprint Potentiometer_THT:Potentiometer_Alps_RK09K_Single_Vertical)
(datasheet ~)
(libsource (lib Device) (part R_POT) (description Potentiometer))
(sheetpath (names /) (tstamps /))
(tstamp 5C7A37D8))
(comp (ref Q101)
(value MMBT2222A)
(footprint Package_TO_SOT_SMD:SOT-23_Handsoldering)
(datasheet Unavailable)
(fields
(field (name Field4) None)
(field (name Field5) ON)
(field (name Field7) MMBT2222A)
(field (name Field8) "TO-236-3 Taitron"))
(libsource (lib MMBT2222A) (part MMBT2222A) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C800CB0))
(comp (ref R125)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C272108))
(comp (ref R127)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C27224E))
(comp (ref C106)
(value "100uF 16v")
(footprint Capacitor_THT:CP_Radial_D5.0mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C408D76))
(comp (ref C110)
(value "100uF 16v")
(footprint Capacitor_THT:CP_Radial_D5.0mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C408F16))
(comp (ref C107)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4377A2))
(comp (ref C111)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C43785E))
(comp (ref J101)
(value "Doepfer connector")
(footprint Connector_PinSocket_2.54mm:PinSocket_2x08_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x08_Odd_Even) (description "Generic connector, double row, 02x08, 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 5C477E46))
(comp (ref J117)
(value I2C_Conn)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x09_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x09_Male) (description "Generic connector, single row, 01x09, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C68ECB9))
(comp (ref J118)
(value I2C_Conn)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x09_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x09_Male) (description "Generic connector, single row, 01x09, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C68EF07))
(comp (ref J116)
(value ControlConn)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x11_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x11_Male) (description "Generic connector, single row, 01x11, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C94CFF9))
(comp (ref J105)
(value "CV7 in")
(footprint Connector_Audio:AudioJack3StereoNarrow-PJ-321)
(datasheet ~)
(fields
(field (name Function) "VC input"))
(libsource (lib Connector) (part AudioJack2) (description "Audio Jack, 2 Poles (Mono / TS)"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB9F10E))
(comp (ref R120)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5CB9F115))
(comp (ref R122)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5CB9F11B))
(comp (ref J110)
(value "CV3 in")
(footprint Connector_Audio:AudioJack3StereoNarrow-PJ-321)
(datasheet ~)
(fields
(field (name Function) "VC input"))
(libsource (lib Connector) (part AudioJack2) (description "Audio Jack, 2 Poles (Mono / TS)"))
(sheetpath (names /) (tstamps /))
(tstamp 5CDF0395))
(comp (ref R130)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5CDF039C))
(comp (ref R131)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5CDF03A2))
(comp (ref R102)
(value 1k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D1E905C))
(comp (ref JP103)
(value Rx)
(footprint Connector_PinSocket_2.54mm:PinSocket_1x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part Jumper) (description "Jumper, normally closed"))
(sheetpath (names /) (tstamps /))
(tstamp 5C49E79B))
(comp (ref JP102)
(value Tx)
(footprint Connector_PinSocket_2.54mm:PinSocket_1x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part Jumper) (description "Jumper, normally closed"))
(sheetpath (names /) (tstamps /))
(tstamp 5C49E893))
(comp (ref R109)
(value OPEN)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C5491E2))
(comp (ref R116)
(value 2k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C58924C))
(comp (ref R117)
(value 680R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C5CBC55))
(comp (ref D103)
(value 1N4148W)
(footprint Diode_SMD:D_SOD-123)
(datasheet https://www.vishay.com/docs/85748/1n4148w.pdf)
(libsource (lib Diode) (part 1N4148W) (description "75V 0.15A Fast Switching Diode, SOD-123"))
(sheetpath (names /) (tstamps /))
(tstamp 5C5EDE95))
(comp (ref R112)
(value OPEN)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C78F4B7))
(comp (ref R115)
(value 0R)
(footprint Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C7FDED9))
(comp (ref JP101)
(value "GND MIDI OUT")
(footprint Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm)
(datasheet ~)
(libsource (lib Device) (part Jumper) (description "Jumper, normally closed"))
(sheetpath (names /) (tstamps /))
(tstamp 5C99EC9D))
(comp (ref D111)
(value LED_CV2)
(footprint LED_THT:LED_D3.0mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C758015))
(comp (ref R143)
(value 680R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C75801B))
(comp (ref J115)
(value ControlConn)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x11_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x11_Male) (description "Generic connector, single row, 01x11, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5CC280A8))
(comp (ref JP104)
(value "GND MIDI IN")
(footprint Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm)
(datasheet ~)
(libsource (lib Device) (part Jumper) (description "Jumper, normally closed"))
(sheetpath (names /) (tstamps /))
(tstamp 5CFE4B65))
(comp (ref C112)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5D143DE5))
(comp (ref C108)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5D143EBD))
(comp (ref C105)
(value 100uF)
(footprint Capacitor_THT:CP_Radial_D5.0mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5D143FF6))
(comp (ref C103)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5D1D00BC))
(comp (ref F102)
(value Polyfuse)
(footprint Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part Polyfuse) (description "Resettable fuse, polymeric positive temperature coefficient"))
(sheetpath (names /) (tstamps /))
(tstamp 5D47D22D))
(comp (ref D101)
(value 1N1007)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5D4AB56B))
(comp (ref D102)
(value 1N1007)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5D4AB6C4))
(comp (ref U102)
(value TL072)
(footprint AJ-Dropbox-Kicad:AJ_SO-8_5.3x6.2mm_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 5D4ABFB1))
(comp (ref C109)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5D4AC35B))
(comp (ref C113)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5D4AC43F))
(comp (ref R101)
(value 1k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D4DDB86))
(comp (ref R135)
(value 44k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D53FF70))
(comp (ref R136)
(value 44k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D53FF7E))
(comp (ref D109)
(value LED_LFO)
(footprint LED_THT:LED_D3.0mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C593F89))
(comp (ref R141)
(value 680R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C593F8F))
(comp (ref R111)
(value 0R)
(footprint Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C668F91))
(comp (ref F101)
(value Polyfuse)
(footprint Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part Polyfuse) (description "Resettable fuse, polymeric positive temperature coefficient"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8D3169))
(comp (ref SW101)
(value Rotary_Encoder_Switch)
(footprint Rotary_Encoder:RotaryEncoder_Alps_EC11E-Switch_Vertical_H20mm)
(datasheet ~)
(libsource (lib Device) (part Rotary_Encoder_Switch) (description "Rotary encoder, dual channel, incremental quadrate outputs, with switch"))
(sheetpath (names /) (tstamps /))
(tstamp 5CA20FA8))
(comp (ref R145)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5CABBDC1))
(comp (ref R144)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5CABBFAF))
(comp (ref C120)
(value 44n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB8FC64))
(comp (ref R138)
(value 44k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5CC31880))
(comp (ref R139)
(value 44k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5CCD4826))
(comp (ref C119)
(value 44n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5CCD4930))
(comp (ref R123)
(value 33k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5CE1CD28))
(comp (ref R124)
(value 33k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5CE1CD36))
(comp (ref C118)
(value 33n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE1CD48))
(comp (ref R128)
(value 33k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5CE1CD58))
(comp (ref R129)
(value 33k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5CE1CD61))
(comp (ref C117)
(value 33n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE1CD69))
(comp (ref R108)
(value 110R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D1A877E))
(comp (ref R118)
(value 220R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D253540))
(comp (ref C115)
(value 22n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5D28C9A3))
(comp (ref C114)
(value 11n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2FEBCF))
(comp (ref H101)
(value 2,5mm)
(footprint MountingHole:MountingHole_2.5mm_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5D3AEF13))
(comp (ref H102)
(value 2,5mm)
(footprint MountingHole:MountingHole_2.5mm_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5D3AF3EC))
(comp (ref H104)
(value 2,2mm)
(footprint MountingHole:MountingHole_2.2mm_M2_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5D3AF4F8))
(comp (ref H103)
(value 2,2mm)
(footprint MountingHole:MountingHole_2.5mm_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5D3AF63A))
(comp (ref R147)
(value 133R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D6DD7CC))
(comp (ref R148)
(value 144R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D718073)))
(libparts
(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 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 LT6233)
(alias OPA2356xxD)
(alias OPA2356xxDGK)
(alias OPA1612AxD)
(alias MC33172)
(alias OPA1602)
(alias TLV2372))
(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) (part AudioJack2)
(description "Audio Jack, 2 Poles (Mono / TS)")
(docs ~)
(footprints
(fp Jack*))
(fields
(field (name Reference) J)
(field (name Value) AudioJack2))
(pins
(pin (num S) (name ~) (type passive))
(pin (num T) (name ~) (type passive))))
(libpart (lib Connector) (part Barrel_Jack)
(aliases
(alias Jack-DC))
(description "DC Barrel Jack")
(docs ~)
(footprints
(fp BarrelJack*))
(fields
(field (name Reference) J)
(field (name Value) Barrel_Jack))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Connector) (part Conn_01x09_Male)
(description "Generic connector, single row, 01x09, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x09_Male))