-
Notifications
You must be signed in to change notification settings - Fork 2
/
Kicad-Midi2CV2.kicad_pcb-bak
8148 lines (8017 loc) · 568 KB
/
Kicad-Midi2CV2.kicad_pcb-bak
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
(kicad_pcb (version 20171130) (host pcbnew "(5.0.2)-1")
(general
(thickness 1.6)
(drawings 65)
(tracks 1446)
(zones 0)
(modules 121)
(nets 78)
)
(page A4)
(title_block
(title Midi2CV)
(date 2019-01-21)
(rev "Rev B")
(company "Johansen Engineering")
)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user hide)
(33 F.Adhes user hide)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user hide)
(40 Dwgs.User user hide)
(41 Cmts.User user hide)
(42 Eco1.User user hide)
(43 Eco2.User user hide)
(44 Edge.Cuts user)
(45 Margin user hide)
(46 B.CrtYd user hide)
(47 F.CrtYd user hide)
(48 B.Fab user)
(49 F.Fab user hide)
)
(setup
(last_trace_width 0.25)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2)
(segment_width 0.5)
(edge_width 1)
(via_size 0.8)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0.2)
(solder_mask_min_width 0.25)
(aux_axis_origin 0 0)
(visible_elements 7FFFFFFF)
(pcbplotparams
(layerselection 0x010fc_ffffffff)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(excludeedgelayer false)
(linewidth 0.150000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber"))
)
(net 0 "")
(net 1 /TX)
(net 2 Btn)
(net 3 GND)
(net 4 A1)
(net 5 LED1)
(net 6 A2)
(net 7 LED2)
(net 8 A3)
(net 9 LED3)
(net 10 LED4)
(net 11 Gate1)
(net 12 Gate2)
(net 13 Gate3)
(net 14 +5V)
(net 15 Gate4)
(net 16 VCC)
(net 17 CV1Gain)
(net 18 CV2Gain)
(net 19 /MIDI-IN)
(net 20 CV1)
(net 21 CV2)
(net 22 A6)
(net 23 A7)
(net 24 /Gate)
(net 25 /CV)
(net 26 "Net-(A101-Pad1)")
(net 27 "Net-(A101-Pad17)")
(net 28 "Net-(A101-Pad2)")
(net 29 SDA)
(net 30 SCL)
(net 31 LED-MIDI)
(net 32 LED-CV1)
(net 33 LED-CV2)
(net 34 LED_LFO)
(net 35 +12V)
(net 36 -12V)
(net 37 "Net-(D103-Pad1)")
(net 38 "Net-(D103-Pad2)")
(net 39 "Net-(D104-Pad2)")
(net 40 "Net-(D105-Pad2)")
(net 41 "Net-(D106-Pad2)")
(net 42 "Net-(D107-Pad2)")
(net 43 "Net-(D108-Pad2)")
(net 44 "Net-(D109-Pad2)")
(net 45 "Net-(D110-Pad2)")
(net 46 "Net-(D111-Pad2)")
(net 47 /MIDI-OUT-5)
(net 48 "Net-(J103-Pad2)")
(net 49 /MIDI-OUT-4)
(net 50 "Net-(J105-PadT)")
(net 51 "Net-(J107-Pad4)")
(net 52 "Net-(J107-Pad2)")
(net 53 "Net-(J108-PadT)")
(net 54 "Net-(J110-PadT)")
(net 55 Gate3Gain)
(net 56 Gate4Gain)
(net 57 /Q2Coll)
(net 58 /Q1Base)
(net 59 /Q1Emitter)
(net 60 /Q1Coll)
(net 61 "Net-(R104-Pad1)")
(net 62 "Net-(R105-Pad1)")
(net 63 "Net-(R114-Pad1)")
(net 64 "Net-(F102-Pad2)")
(net 65 "Net-(F101-Pad1)")
(net 66 "Net-(R113-Pad1)")
(net 67 "Net-(C117-Pad2)")
(net 68 "Net-(C118-Pad1)")
(net 69 "Net-(C119-Pad2)")
(net 70 "Net-(C120-Pad1)")
(net 71 "Net-(R108-Pad2)")
(net 72 "Net-(R118-Pad2)")
(net 73 "Net-(R123-Pad1)")
(net 74 "Net-(R135-Pad1)")
(net 75 "Net-(R146-Pad2)")
(net 76 "Net-(R147-Pad2)")
(net 77 "Net-(R148-Pad2)")
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net /CV)
(add_net /Gate)
(add_net /MIDI-IN)
(add_net /MIDI-OUT-4)
(add_net /MIDI-OUT-5)
(add_net /Q1Base)
(add_net /Q1Coll)
(add_net /Q1Emitter)
(add_net /Q2Coll)
(add_net /TX)
(add_net A1)
(add_net A2)
(add_net A3)
(add_net A6)
(add_net A7)
(add_net Btn)
(add_net CV1)
(add_net CV1Gain)
(add_net CV2)
(add_net CV2Gain)
(add_net Gate1)
(add_net Gate2)
(add_net Gate3)
(add_net Gate3Gain)
(add_net Gate4)
(add_net Gate4Gain)
(add_net LED-CV1)
(add_net LED-CV2)
(add_net LED-MIDI)
(add_net LED1)
(add_net LED2)
(add_net LED3)
(add_net LED4)
(add_net LED_LFO)
(add_net "Net-(A101-Pad1)")
(add_net "Net-(A101-Pad17)")
(add_net "Net-(A101-Pad2)")
(add_net "Net-(C117-Pad2)")
(add_net "Net-(C118-Pad1)")
(add_net "Net-(C119-Pad2)")
(add_net "Net-(C120-Pad1)")
(add_net "Net-(D103-Pad1)")
(add_net "Net-(D103-Pad2)")
(add_net "Net-(D104-Pad2)")
(add_net "Net-(D105-Pad2)")
(add_net "Net-(D106-Pad2)")
(add_net "Net-(D107-Pad2)")
(add_net "Net-(D108-Pad2)")
(add_net "Net-(D109-Pad2)")
(add_net "Net-(D110-Pad2)")
(add_net "Net-(D111-Pad2)")
(add_net "Net-(F101-Pad1)")
(add_net "Net-(F102-Pad2)")
(add_net "Net-(J103-Pad2)")
(add_net "Net-(J105-PadT)")
(add_net "Net-(J107-Pad2)")
(add_net "Net-(J107-Pad4)")
(add_net "Net-(J108-PadT)")
(add_net "Net-(J110-PadT)")
(add_net "Net-(R104-Pad1)")
(add_net "Net-(R105-Pad1)")
(add_net "Net-(R108-Pad2)")
(add_net "Net-(R113-Pad1)")
(add_net "Net-(R114-Pad1)")
(add_net "Net-(R118-Pad2)")
(add_net "Net-(R123-Pad1)")
(add_net "Net-(R135-Pad1)")
(add_net "Net-(R146-Pad2)")
(add_net "Net-(R147-Pad2)")
(add_net "Net-(R148-Pad2)")
(add_net SCL)
(add_net SDA)
)
(net_class Power ""
(clearance 0.2)
(trace_width 0.4)
(via_dia 1)
(via_drill 0.5)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net +12V)
(add_net +5V)
(add_net -12V)
(add_net GND)
(add_net VCC)
)
(module Module:Arduino_Nano (layer F.Cu) (tedit 58ACAF70) (tstamp 5C3DBC5F)
(at 158.5 115 180)
(descr "Arduino Nano, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf")
(tags "Arduino Nano")
(path /5C1C06D8)
(fp_text reference A101 (at 7.538 -3.11 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Arduino_Nano_v3.x (at 8.89 12.7 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 6.35 19.05 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.27 -1.27) (end -1.4 -1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.4 1.27) (end -1.4 39.5) (layer F.SilkS) (width 0.12))
(fp_line (start -1.4 -3.94) (end -1.4 -1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 13.97 -1.27) (end 16.64 -1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 13.97 -1.27) (end 13.97 36.83) (layer F.SilkS) (width 0.12))
(fp_line (start 13.97 36.83) (end 16.64 36.83) (layer F.SilkS) (width 0.12))
(fp_line (start 1.27 1.27) (end -1.4 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.27 1.27) (end 1.27 36.83) (layer F.SilkS) (width 0.12))
(fp_line (start 1.27 36.83) (end -1.4 36.83) (layer F.SilkS) (width 0.12))
(fp_line (start 3.81 31.75) (end 11.43 31.75) (layer F.Fab) (width 0.1))
(fp_line (start 11.43 31.75) (end 11.43 41.91) (layer F.Fab) (width 0.1))
(fp_line (start 11.43 41.91) (end 3.81 41.91) (layer F.Fab) (width 0.1))
(fp_line (start 3.81 41.91) (end 3.81 31.75) (layer F.Fab) (width 0.1))
(fp_line (start -1.4 39.5) (end 16.64 39.5) (layer F.SilkS) (width 0.12))
(fp_line (start 16.64 39.5) (end 16.64 -3.94) (layer F.SilkS) (width 0.12))
(fp_line (start 16.64 -3.94) (end -1.4 -3.94) (layer F.SilkS) (width 0.12))
(fp_line (start 16.51 39.37) (end -1.27 39.37) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 39.37) (end -1.27 -2.54) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 -2.54) (end 0 -3.81) (layer F.Fab) (width 0.1))
(fp_line (start 0 -3.81) (end 16.51 -3.81) (layer F.Fab) (width 0.1))
(fp_line (start 16.51 -3.81) (end 16.51 39.37) (layer F.Fab) (width 0.1))
(fp_line (start -1.53 -4.06) (end 16.75 -4.06) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.53 -4.06) (end -1.53 42.16) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.75 42.16) (end 16.75 -4.06) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.75 42.16) (end -1.53 42.16) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "Net-(A101-Pad1)"))
(pad 17 thru_hole oval (at 15.24 33.02 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "Net-(A101-Pad17)"))
(pad 2 thru_hole oval (at 0 2.54 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "Net-(A101-Pad2)"))
(pad 18 thru_hole oval (at 15.24 30.48 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 3 thru_hole oval (at 0 5.08 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 19 thru_hole oval (at 15.24 27.94 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 Btn))
(pad 4 thru_hole oval (at 0 7.62 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 GND))
(pad 20 thru_hole oval (at 15.24 25.4 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 A1))
(pad 5 thru_hole oval (at 0 10.16 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 LED1))
(pad 21 thru_hole oval (at 15.24 22.86 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 A2))
(pad 6 thru_hole oval (at 0 12.7 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 LED2))
(pad 22 thru_hole oval (at 15.24 20.32 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 A3))
(pad 7 thru_hole oval (at 0 15.24 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 LED3))
(pad 23 thru_hole oval (at 15.24 17.78 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 29 SDA))
(pad 8 thru_hole oval (at 0 17.78 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 LED4))
(pad 24 thru_hole oval (at 15.24 15.24 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 30 SCL))
(pad 9 thru_hole oval (at 0 20.32 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 Gate1))
(pad 25 thru_hole oval (at 15.24 12.7 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 A6))
(pad 10 thru_hole oval (at 0 22.86 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 31 LED-MIDI))
(pad 26 thru_hole oval (at 15.24 10.16 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 A7))
(pad 11 thru_hole oval (at 0 25.4 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 32 LED-CV1))
(pad 27 thru_hole oval (at 15.24 7.62 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 +5V))
(pad 12 thru_hole oval (at 0 27.94 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 Gate2))
(pad 28 thru_hole oval (at 15.24 5.08 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 13 thru_hole oval (at 0 30.48 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 Gate3))
(pad 29 thru_hole oval (at 15.24 2.54 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 GND))
(pad 14 thru_hole oval (at 0 33.02 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 Gate4))
(pad 30 thru_hole oval (at 15.24 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 VCC))
(pad 15 thru_hole oval (at 0 35.56 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 33 LED-CV2))
(pad 16 thru_hole oval (at 15.24 35.56 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 34 LED_LFO))
(model ${KISYS3DMOD}/Module.3dshapes/Arduino_Nano_WithMountingHoles.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model C:/Users/anders/Documents/KiCad/Lib/aj_packages3d/walter/conn_misc/arduino_nano_header.wrl
(offset (xyz 7.5 -17.5 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Package_TO_SOT_SMD:SOT-23_Handsoldering (layer B.Cu) (tedit 5C463D53) (tstamp 5C3DAA33)
(at 173 105)
(descr "SOT-23, Handsoldering")
(tags SOT-23)
(path /5C800CB0)
(attr smd)
(fp_text reference Q101 (at -4.5 0) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value MMBT2222A (at -4.5 -2) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0 -90) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
)
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer B.SilkS) (width 0.12))
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer B.SilkS) (width 0.12))
(fp_line (start -2.7 1.75) (end 2.7 1.75) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.7 1.75) (end 2.7 -1.75) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.7 -1.75) (end -2.7 -1.75) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.7 -1.75) (end -2.7 1.75) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.76 1.58) (end -2.4 1.58) (layer B.SilkS) (width 0.12))
(fp_line (start -0.7 0.95) (end -0.7 -1.5) (layer B.Fab) (width 0.1))
(fp_line (start -0.15 1.52) (end 0.7 1.52) (layer B.Fab) (width 0.1))
(fp_line (start -0.7 0.95) (end -0.15 1.52) (layer B.Fab) (width 0.1))
(fp_line (start 0.7 1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1))
(fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1))
(fp_line (start 0.76 -1.58) (end -0.7 -1.58) (layer B.SilkS) (width 0.12))
(pad 1 smd rect (at -1.5 0.95) (size 1.9 0.8) (layers B.Cu B.Paste B.Mask)
(net 58 /Q1Base))
(pad 2 smd rect (at -1.5 -0.95) (size 1.9 0.8) (layers B.Cu B.Paste B.Mask)
(net 59 /Q1Emitter))
(pad 3 smd rect (at 1.5 0) (size 1.9 0.8) (layers B.Cu B.Paste B.Mask)
(net 60 /Q1Coll))
(model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module AJ-Dropbox-Kicad:PJ301SM (layer F.Cu) (tedit 5C2E83E1) (tstamp 5C5788AF)
(at 108 86.235 270)
(path /5C2C7E1B)
(fp_text reference J114 (at 0 -6.9 270) (layer F.SilkS)
(effects (font (size 0.75 1) (thickness 0.125)))
)
(fp_text value CV2 (at 0.03 -3.09 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.8 0) (end -1.8 0) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -1.8) (end 0 1.8) (layer F.SilkS) (width 0.15))
(fp_line (start -4.5 4.5) (end 4.5 4.5) (layer F.SilkS) (width 0.15))
(fp_line (start 4.5 4.5) (end 4.5 -6) (layer F.SilkS) (width 0.15))
(fp_line (start 4.5 -6) (end -4.5 -6) (layer F.SilkS) (width 0.15))
(fp_line (start -4.5 -6) (end -4.5 4.5) (layer F.SilkS) (width 0.15))
(fp_circle (center 0 0) (end 3 0.2) (layer F.SilkS) (width 0.15))
(fp_circle (center 0 0) (end 1.8 0) (layer F.SilkS) (width 0.15))
(pad TN thru_hole oval (at 0 3.38 270) (size 2.8 1.6) (drill oval 2 0.6) (layers *.Cu *.Mask))
(pad S thru_hole oval (at 0 6.48 270) (size 2.4 1.6) (drill oval 1.4 0.6) (layers *.Cu *.Mask)
(net 3 GND))
(pad T thru_hole oval (at 0 -4.92 270) (size 2.8 1.5) (drill oval 2.1 0.5) (layers *.Cu *.Mask)
(net 18 CV2Gain))
(model ${KIPRJMOD}/Local.pretty/PJ398SM.step
(offset (xyz 0 0 9))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
(model C:/Users/anders/Documents/KiCad/Lib/aj_packages3d/walter/conn_av/jack_3.5_vert_plug.wrl
(offset (xyz 0 1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module AJ-Dropbox-Kicad:PJ301SM (layer F.Cu) (tedit 5C2E83E1) (tstamp 5C578893)
(at 108 77.2 270)
(path /5C52825C)
(fp_text reference J109 (at 0 -6.9 270) (layer F.SilkS)
(effects (font (size 0.75 1) (thickness 0.125)))
)
(fp_text value Gate2 (at 0.03 -3.09 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 1.8 0) (layer F.SilkS) (width 0.15))
(fp_circle (center 0 0) (end 3 0.2) (layer F.SilkS) (width 0.15))
(fp_line (start -4.5 -6) (end -4.5 4.5) (layer F.SilkS) (width 0.15))
(fp_line (start 4.5 -6) (end -4.5 -6) (layer F.SilkS) (width 0.15))
(fp_line (start 4.5 4.5) (end 4.5 -6) (layer F.SilkS) (width 0.15))
(fp_line (start -4.5 4.5) (end 4.5 4.5) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -1.8) (end 0 1.8) (layer F.SilkS) (width 0.15))
(fp_line (start 1.8 0) (end -1.8 0) (layer F.SilkS) (width 0.15))
(pad T thru_hole oval (at 0 -4.92 270) (size 2.8 1.5) (drill oval 2.1 0.5) (layers *.Cu *.Mask)
(net 12 Gate2))
(pad S thru_hole oval (at 0 6.48 270) (size 2.4 1.6) (drill oval 1.4 0.6) (layers *.Cu *.Mask)
(net 3 GND))
(pad TN thru_hole oval (at 0 3.38 270) (size 2.8 1.6) (drill oval 2 0.6) (layers *.Cu *.Mask))
(model ${KIPRJMOD}/Local.pretty/PJ398SM.step
(offset (xyz 0 0 9))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
(model C:/Users/anders/Documents/KiCad/Lib/aj_packages3d/walter/conn_av/jack_3.5_vert_plug.wrl
(offset (xyz 0 1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module AJ-Dropbox-Kicad:AJ_SO-8_5.3x6.2mm_P1.27mm (layer B.Cu) (tedit 5C58C50E) (tstamp 5C574011)
(at 169 134 90)
(descr "8-Lead Plastic Small Outline, 5.3x6.2mm Body (http://www.ti.com.cn/cn/lit/ds/symlink/tl7705a.pdf)")
(tags "SOIC 1.27")
(path /5D4ABFB1)
(attr smd)
(fp_text reference U102 (at 1.25 0.25 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value TL072 (at -0.75 0.25) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user * (at -3.81 3.048 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -4.572 -2.54) (end -4.572 2.54) (layer B.SilkS) (width 0.15))
(fp_line (start -2.794 -2.54) (end -4.572 -2.54) (layer B.SilkS) (width 0.15))
(fp_line (start 4.572 -2.54) (end 2.794 -2.54) (layer B.SilkS) (width 0.15))
(fp_line (start 4.572 2.54) (end 4.572 -2.54) (layer B.SilkS) (width 0.15))
(fp_line (start 2.794 2.54) (end 4.572 2.54) (layer B.SilkS) (width 0.15))
(fp_line (start -2.75 2.55) (end -4.5 2.55) (layer B.SilkS) (width 0.15))
(fp_line (start -2.75 -3.205) (end 2.75 -3.205) (layer B.SilkS) (width 0.15))
(fp_line (start -2.75 3.205) (end 2.75 3.205) (layer B.SilkS) (width 0.15))
(fp_line (start -2.75 -3.205) (end -2.75 -2.455) (layer B.SilkS) (width 0.15))
(fp_line (start 2.75 -3.205) (end 2.75 -2.455) (layer B.SilkS) (width 0.15))
(fp_line (start 2.75 3.205) (end 2.75 2.455) (layer B.SilkS) (width 0.15))
(fp_line (start -2.75 3.205) (end -2.75 2.55) (layer B.SilkS) (width 0.15))
(fp_line (start -4.83 -3.35) (end 4.83 -3.35) (layer B.CrtYd) (width 0.05))
(fp_line (start -4.83 3.35) (end 4.83 3.35) (layer B.CrtYd) (width 0.05))
(fp_line (start 4.83 3.35) (end 4.83 -3.35) (layer B.CrtYd) (width 0.05))
(fp_line (start -4.83 3.35) (end -4.83 -3.35) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.65 2.1) (end -1.65 3.1) (layer B.SilkS) (width 0.15))
(fp_line (start -2.65 -3.1) (end -2.65 2.1) (layer B.Fab) (width 0.15))
(fp_line (start 2.65 -3.1) (end -2.65 -3.1) (layer B.Fab) (width 0.15))
(fp_line (start 2.65 3.1) (end 2.65 -3.1) (layer B.Fab) (width 0.15))
(fp_line (start -1.65 3.1) (end 2.65 3.1) (layer B.Fab) (width 0.15))
(fp_text user %R (at 0 0 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 8 smd rect (at 3.3 1.905 90) (size 2 0.55) (layers B.Cu B.Paste B.Mask)
(net 35 +12V))
(pad 7 smd rect (at 3.3 0.635 90) (size 2 0.55) (layers B.Cu B.Paste B.Mask)
(net 77 "Net-(R148-Pad2)"))
(pad 6 smd rect (at 3.3 -0.635 90) (size 2 0.55) (layers B.Cu B.Paste B.Mask)
(net 74 "Net-(R135-Pad1)"))
(pad 5 smd rect (at 3.3 -1.905 90) (size 2 0.55) (layers B.Cu B.Paste B.Mask)
(net 70 "Net-(C120-Pad1)"))
(pad 4 smd rect (at -3.3 -1.905 90) (size 2 0.55) (layers B.Cu B.Paste B.Mask)
(net 36 -12V))
(pad 3 smd rect (at -3.3 -0.635 90) (size 2 0.55) (layers B.Cu B.Paste B.Mask)
(net 68 "Net-(C118-Pad1)"))
(pad 2 smd rect (at -3.3 0.635 90) (size 2 0.55) (layers B.Cu B.Paste B.Mask)
(net 73 "Net-(R123-Pad1)"))
(pad 1 smd rect (at -3.3 1.905 90) (size 2 0.55) (layers B.Cu B.Paste B.Mask)
(net 76 "Net-(R147-Pad2)"))
(model ${KISYS3DMOD}/Package_SO.3dshapes/SO-8_5.3x6.2mm_P1.27mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model C:/Users/anders/Documents/KiCad/Lib/aj_packages3d/kicad-packages3D/Package_SO.3dshapes/SO-8_5.3x6.2mm_P1.27mm.step
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module AJ-Dropbox-Kicad:AJ_SO-8_5.3x6.2mm_P1.27mm (layer B.Cu) (tedit 5C58C7B7) (tstamp 5C2AAD3B)
(at 107 100 270)
(descr "8-Lead Plastic Small Outline, 5.3x6.2mm Body (http://www.ti.com.cn/cn/lit/ds/symlink/tl7705a.pdf)")
(tags "SOIC 1.27")
(path /5C723CF4)
(attr smd)
(fp_text reference U101 (at 0 4.13 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value TL072 (at -0.25 5.5 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user * (at -3.81 3.048 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -4.572 -2.54) (end -4.572 2.54) (layer B.SilkS) (width 0.15))
(fp_line (start -2.794 -2.54) (end -4.572 -2.54) (layer B.SilkS) (width 0.15))
(fp_line (start 4.572 -2.54) (end 2.794 -2.54) (layer B.SilkS) (width 0.15))
(fp_line (start 4.572 2.54) (end 4.572 -2.54) (layer B.SilkS) (width 0.15))
(fp_line (start 2.794 2.54) (end 4.572 2.54) (layer B.SilkS) (width 0.15))
(fp_line (start -2.75 2.55) (end -4.5 2.55) (layer B.SilkS) (width 0.15))
(fp_line (start -2.75 -3.205) (end 2.75 -3.205) (layer B.SilkS) (width 0.15))
(fp_line (start -2.75 3.205) (end 2.75 3.205) (layer B.SilkS) (width 0.15))
(fp_line (start -2.75 -3.205) (end -2.75 -2.455) (layer B.SilkS) (width 0.15))
(fp_line (start 2.75 -3.205) (end 2.75 -2.455) (layer B.SilkS) (width 0.15))
(fp_line (start 2.75 3.205) (end 2.75 2.455) (layer B.SilkS) (width 0.15))
(fp_line (start -2.75 3.205) (end -2.75 2.55) (layer B.SilkS) (width 0.15))
(fp_line (start -4.83 -3.35) (end 4.83 -3.35) (layer B.CrtYd) (width 0.05))
(fp_line (start -4.83 3.35) (end 4.83 3.35) (layer B.CrtYd) (width 0.05))
(fp_line (start 4.83 3.35) (end 4.83 -3.35) (layer B.CrtYd) (width 0.05))
(fp_line (start -4.83 3.35) (end -4.83 -3.35) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.65 2.1) (end -1.65 3.1) (layer B.SilkS) (width 0.15))
(fp_line (start -2.65 -3.1) (end -2.65 2.1) (layer B.Fab) (width 0.15))
(fp_line (start 2.65 -3.1) (end -2.65 -3.1) (layer B.Fab) (width 0.15))
(fp_line (start 2.65 3.1) (end 2.65 -3.1) (layer B.Fab) (width 0.15))
(fp_line (start -1.65 3.1) (end 2.65 3.1) (layer B.Fab) (width 0.15))
(fp_text user %R (at 0 0 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 8 smd rect (at 3.3 1.905 270) (size 2 0.55) (layers B.Cu B.Paste B.Mask)
(net 35 +12V))
(pad 7 smd rect (at 3.3 0.635 270) (size 2 0.55) (layers B.Cu B.Paste B.Mask)
(net 71 "Net-(R108-Pad2)"))
(pad 6 smd rect (at 3.3 -0.635 270) (size 2 0.55) (layers B.Cu B.Paste B.Mask)
(net 61 "Net-(R104-Pad1)"))
(pad 5 smd rect (at 3.3 -1.905 270) (size 2 0.55) (layers B.Cu B.Paste B.Mask)
(net 20 CV1))
(pad 4 smd rect (at -3.3 -1.905 270) (size 2 0.55) (layers B.Cu B.Paste B.Mask)
(net 36 -12V))
(pad 3 smd rect (at -3.3 -0.635 270) (size 2 0.55) (layers B.Cu B.Paste B.Mask)
(net 21 CV2))
(pad 2 smd rect (at -3.3 0.635 270) (size 2 0.55) (layers B.Cu B.Paste B.Mask)
(net 66 "Net-(R113-Pad1)"))
(pad 1 smd rect (at -3.3 1.905 270) (size 2 0.55) (layers B.Cu B.Paste B.Mask)
(net 72 "Net-(R118-Pad2)"))
(model ${KISYS3DMOD}/Package_SO.3dshapes/SO-8_5.3x6.2mm_P1.27mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model C:/Users/anders/Documents/KiCad/Lib/aj_packages3d/kicad-packages3D/Package_SO.3dshapes/SO-8_5.3x6.2mm_P1.27mm.step
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_Audio:AudioJack3StereoNarrow-PJ-321 (layer F.Cu) (tedit 5C463816) (tstamp 5C2A4AA8)
(at 194.5 124 180)
(path /5CDF0395)
(fp_text reference J110 (at 0.034 0 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "CV3 in" (at 11.5 -0.5 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user GND (at 1.27 2.54 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user L (at -2.54 2.54 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user L (at -2.54 -2.54 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user R (at 1.27 -2.54 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -5.45 4.2) (end -5.45 -4.2) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.45 4.2) (end -5.45 4.2) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.45 -4.2) (end 5.45 4.2) (layer F.CrtYd) (width 0.05))
(fp_line (start -5.45 -4.2) (end 5.45 -4.2) (layer F.CrtYd) (width 0.05))
(fp_line (start -5.334 1.27) (end -5.334 3.556) (layer F.SilkS) (width 0.15))
(fp_line (start -6.35 1.27) (end -5.334 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -6.35 -1.524) (end -6.35 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -5.334 -1.524) (end -6.35 -1.524) (layer F.SilkS) (width 0.15))
(fp_line (start -5.334 -3.556) (end -5.334 -1.524) (layer F.SilkS) (width 0.15))
(fp_line (start 5.31 -3.556) (end -5.31 -3.556001) (layer F.SilkS) (width 0.15))
(fp_line (start 5.334 3.556) (end 5.334 -3.556) (layer F.SilkS) (width 0.15))
(fp_line (start -5.31 3.556) (end 5.31 3.556001) (layer F.SilkS) (width 0.15))
(pad S thru_hole circle (at 3.81 2.286 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 3 GND))
(pad R thru_hole circle (at 3.81 -2.286 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask))
(pad T thru_hole circle (at -3.81 2.54 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 54 "Net-(J110-PadT)"))
(pad T thru_hole circle (at -3.81 -2.54 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 54 "Net-(J110-PadT)"))
(model ${GIT_3D}/Connector_BarrelJack.3dshapes/CUI_SJ-43504-SMT-TR.step
(offset (xyz -6.5 0 2))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 -90))
)
)
(module Connector_Audio:AudioJack3StereoNarrow-PJ-321 (layer F.Cu) (tedit 5C46386C) (tstamp 5C2919FD)
(at 194.334476 145 180)
(path /5C528262)
(fp_text reference J111 (at -0.915 -0.07 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Gate3 (at 11.334476 0 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user GND (at 1.27 2.54 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user L (at -2.54 2.54 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user L (at -2.54 -2.54 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user R (at 1.27 -2.54 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -5.45 4.2) (end -5.45 -4.2) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.45 4.2) (end -5.45 4.2) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.45 -4.2) (end 5.45 4.2) (layer F.CrtYd) (width 0.05))
(fp_line (start -5.45 -4.2) (end 5.45 -4.2) (layer F.CrtYd) (width 0.05))
(fp_line (start -5.334 1.27) (end -5.334 3.556) (layer F.SilkS) (width 0.15))
(fp_line (start -6.35 1.27) (end -5.334 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -6.35 -1.524) (end -6.35 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -5.334 -1.524) (end -6.35 -1.524) (layer F.SilkS) (width 0.15))
(fp_line (start -5.334 -3.556) (end -5.334 -1.524) (layer F.SilkS) (width 0.15))
(fp_line (start 5.31 -3.556) (end -5.31 -3.556001) (layer F.SilkS) (width 0.15))
(fp_line (start 5.334 3.556) (end 5.334 -3.556) (layer F.SilkS) (width 0.15))
(fp_line (start -5.31 3.556) (end 5.31 3.556001) (layer F.SilkS) (width 0.15))
(pad S thru_hole circle (at 3.81 2.286 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 3 GND))
(pad R thru_hole circle (at 3.81 -2.286 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask))
(pad T thru_hole circle (at -3.81 2.54 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 55 Gate3Gain))
(pad T thru_hole circle (at -3.81 -2.54 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 55 Gate3Gain))
(model ${GIT_3D}/Connector_BarrelJack.3dshapes/CUI_SJ-43504-SMT-TR.step
(offset (xyz -6.5 0 2))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 -90))
)
)
(module Connector_Audio:AudioJack3StereoNarrow-PJ-321 (layer F.Cu) (tedit 5C463879) (tstamp 5C2919B8)
(at 194.334476 137.5 180)
(path /5C528268)
(fp_text reference J113 (at -1.515 0.24 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Gate4 (at 11.334476 0 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user GND (at 1.27 2.54 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user L (at -2.54 2.54 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user L (at -2.54 -2.54 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user R (at 1.27 -2.54 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -5.45 4.2) (end -5.45 -4.2) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.45 4.2) (end -5.45 4.2) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.45 -4.2) (end 5.45 4.2) (layer F.CrtYd) (width 0.05))
(fp_line (start -5.45 -4.2) (end 5.45 -4.2) (layer F.CrtYd) (width 0.05))
(fp_line (start -5.334 1.27) (end -5.334 3.556) (layer F.SilkS) (width 0.15))
(fp_line (start -6.35 1.27) (end -5.334 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -6.35 -1.524) (end -6.35 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -5.334 -1.524) (end -6.35 -1.524) (layer F.SilkS) (width 0.15))
(fp_line (start -5.334 -3.556) (end -5.334 -1.524) (layer F.SilkS) (width 0.15))
(fp_line (start 5.31 -3.556) (end -5.31 -3.556001) (layer F.SilkS) (width 0.15))
(fp_line (start 5.334 3.556) (end 5.334 -3.556) (layer F.SilkS) (width 0.15))
(fp_line (start -5.31 3.556) (end 5.31 3.556001) (layer F.SilkS) (width 0.15))
(pad S thru_hole circle (at 3.81 2.286 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 3 GND))
(pad R thru_hole circle (at 3.81 -2.286 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask))
(pad T thru_hole circle (at -3.81 2.54 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 56 Gate4Gain))
(pad T thru_hole circle (at -3.81 -2.54 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 56 Gate4Gain))
(model ${GIT_3D}/Connector_BarrelJack.3dshapes/CUI_SJ-43504-SMT-TR.step
(offset (xyz -6.5 0 2))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 -90))
)
)
(module Connector_Audio:AudioJack3StereoNarrow-PJ-321 (layer F.Cu) (tedit 5C463887) (tstamp 5C29192E)
(at 194 54.5 180)
(path /5C59B839)
(fp_text reference J108 (at -1.115 0.15 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "CV6 in" (at 6 0.75 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user GND (at 1.27 2.54 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user L (at -2.54 2.54 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user L (at -2.54 -2.54 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user R (at 1.27 -2.54 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -5.45 4.2) (end -5.45 -4.2) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.45 4.2) (end -5.45 4.2) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.45 -4.2) (end 5.45 4.2) (layer F.CrtYd) (width 0.05))
(fp_line (start -5.45 -4.2) (end 5.45 -4.2) (layer F.CrtYd) (width 0.05))
(fp_line (start -5.334 1.27) (end -5.334 3.556) (layer F.SilkS) (width 0.15))
(fp_line (start -6.35 1.27) (end -5.334 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -6.35 -1.524) (end -6.35 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -5.334 -1.524) (end -6.35 -1.524) (layer F.SilkS) (width 0.15))
(fp_line (start -5.334 -3.556) (end -5.334 -1.524) (layer F.SilkS) (width 0.15))
(fp_line (start 5.31 -3.556) (end -5.31 -3.556001) (layer F.SilkS) (width 0.15))
(fp_line (start 5.334 3.556) (end 5.334 -3.556) (layer F.SilkS) (width 0.15))
(fp_line (start -5.31 3.556) (end 5.31 3.556001) (layer F.SilkS) (width 0.15))
(pad S thru_hole circle (at 3.81 2.286 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 3 GND))
(pad R thru_hole circle (at 3.81 -2.286 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask))
(pad T thru_hole circle (at -3.81 2.54 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 53 "Net-(J108-PadT)"))
(pad T thru_hole circle (at -3.81 -2.54 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 53 "Net-(J108-PadT)"))
(model ${GIT_3D}/Connector_BarrelJack.3dshapes/CUI_SJ-43504-SMT-TR.step
(offset (xyz -6.5 0 2))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 -90))
)
)
(module Connector_Audio:AudioJack3StereoNarrow-PJ-321 (layer F.Cu) (tedit 5C46382E) (tstamp 5C2A4A90)
(at 194 76 180)
(path /5CB9F10E)
(fp_text reference J105 (at 0.128708 -0.057576 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "CV7 in" (at 6 -1.5 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user GND (at 1.27 2.54 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user L (at -2.54 2.54 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user L (at -2.54 -2.54 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user R (at 1.27 -2.54 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -5.45 4.2) (end -5.45 -4.2) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.45 4.2) (end -5.45 4.2) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.45 -4.2) (end 5.45 4.2) (layer F.CrtYd) (width 0.05))
(fp_line (start -5.45 -4.2) (end 5.45 -4.2) (layer F.CrtYd) (width 0.05))
(fp_line (start -5.334 1.27) (end -5.334 3.556) (layer F.SilkS) (width 0.15))
(fp_line (start -6.35 1.27) (end -5.334 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -6.35 -1.524) (end -6.35 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -5.334 -1.524) (end -6.35 -1.524) (layer F.SilkS) (width 0.15))
(fp_line (start -5.334 -3.556) (end -5.334 -1.524) (layer F.SilkS) (width 0.15))
(fp_line (start 5.31 -3.556) (end -5.31 -3.556001) (layer F.SilkS) (width 0.15))
(fp_line (start 5.334 3.556) (end 5.334 -3.556) (layer F.SilkS) (width 0.15))
(fp_line (start -5.31 3.556) (end 5.31 3.556001) (layer F.SilkS) (width 0.15))
(pad S thru_hole circle (at 3.81 2.286 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 3 GND))
(pad R thru_hole circle (at 3.81 -2.286 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask))
(pad T thru_hole circle (at -3.81 2.54 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 50 "Net-(J105-PadT)"))
(pad T thru_hole circle (at -3.81 -2.54 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 50 "Net-(J105-PadT)"))
(model ${GIT_3D}/Connector_BarrelJack.3dshapes/CUI_SJ-43504-SMT-TR.step
(offset (xyz -6.5 0 2))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 -90))
)
)
(module Capacitor_THT:CP_Radial_D5.0mm_P2.50mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 5C3DA6A5)
(at 144.5 135.5 90)
(descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
(path /5C22F286)
(fp_text reference C101 (at 1.25 -3.75 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100uF (at 1.25 3.75 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 1.25 0) (end 3.75 0) (layer F.Fab) (width 0.1))
(fp_circle (center 1.25 0) (end 3.87 0) (layer F.SilkS) (width 0.12))
(fp_circle (center 1.25 0) (end 4 0) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer F.Fab) (width 0.1))
(fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer F.Fab) (width 0.1))
(fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer F.SilkS) (width 0.12))
(fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer F.SilkS) (width 0.12))
(fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer F.SilkS) (width 0.12))
(fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer F.SilkS) (width 0.12))
(fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer F.SilkS) (width 0.12))
(fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.49 1.04) (end 1.49 2.569) (layer F.SilkS) (width 0.12))
(fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.53 1.04) (end 1.53 2.565) (layer F.SilkS) (width 0.12))
(fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.57 1.04) (end 1.57 2.561) (layer F.SilkS) (width 0.12))
(fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.61 1.04) (end 1.61 2.556) (layer F.SilkS) (width 0.12))
(fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.65 1.04) (end 1.65 2.55) (layer F.SilkS) (width 0.12))
(fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.69 1.04) (end 1.69 2.543) (layer F.SilkS) (width 0.12))
(fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.73 1.04) (end 1.73 2.536) (layer F.SilkS) (width 0.12))
(fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.77 1.04) (end 1.77 2.528) (layer F.SilkS) (width 0.12))
(fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.81 1.04) (end 1.81 2.52) (layer F.SilkS) (width 0.12))
(fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.85 1.04) (end 1.85 2.511) (layer F.SilkS) (width 0.12))
(fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.89 1.04) (end 1.89 2.501) (layer F.SilkS) (width 0.12))
(fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.93 1.04) (end 1.93 2.491) (layer F.SilkS) (width 0.12))
(fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 1.971 1.04) (end 1.971 2.48) (layer F.SilkS) (width 0.12))
(fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.011 1.04) (end 2.011 2.468) (layer F.SilkS) (width 0.12))
(fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.051 1.04) (end 2.051 2.455) (layer F.SilkS) (width 0.12))
(fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.091 1.04) (end 2.091 2.442) (layer F.SilkS) (width 0.12))
(fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.131 1.04) (end 2.131 2.428) (layer F.SilkS) (width 0.12))
(fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.171 1.04) (end 2.171 2.414) (layer F.SilkS) (width 0.12))
(fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.211 1.04) (end 2.211 2.398) (layer F.SilkS) (width 0.12))
(fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.251 1.04) (end 2.251 2.382) (layer F.SilkS) (width 0.12))
(fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.291 1.04) (end 2.291 2.365) (layer F.SilkS) (width 0.12))
(fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.331 1.04) (end 2.331 2.348) (layer F.SilkS) (width 0.12))
(fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.371 1.04) (end 2.371 2.329) (layer F.SilkS) (width 0.12))
(fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.411 1.04) (end 2.411 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.451 1.04) (end 2.451 2.29) (layer F.SilkS) (width 0.12))
(fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.491 1.04) (end 2.491 2.268) (layer F.SilkS) (width 0.12))
(fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.531 1.04) (end 2.531 2.247) (layer F.SilkS) (width 0.12))
(fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.571 1.04) (end 2.571 2.224) (layer F.SilkS) (width 0.12))
(fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.611 1.04) (end 2.611 2.2) (layer F.SilkS) (width 0.12))
(fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.651 1.04) (end 2.651 2.175) (layer F.SilkS) (width 0.12))
(fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.691 1.04) (end 2.691 2.149) (layer F.SilkS) (width 0.12))
(fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.731 1.04) (end 2.731 2.122) (layer F.SilkS) (width 0.12))
(fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.771 1.04) (end 2.771 2.095) (layer F.SilkS) (width 0.12))
(fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.811 1.04) (end 2.811 2.065) (layer F.SilkS) (width 0.12))
(fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.851 1.04) (end 2.851 2.035) (layer F.SilkS) (width 0.12))
(fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.891 1.04) (end 2.891 2.004) (layer F.SilkS) (width 0.12))
(fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.931 1.04) (end 2.931 1.971) (layer F.SilkS) (width 0.12))
(fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 2.971 1.04) (end 2.971 1.937) (layer F.SilkS) (width 0.12))
(fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.011 1.04) (end 3.011 1.901) (layer F.SilkS) (width 0.12))
(fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.051 1.04) (end 3.051 1.864) (layer F.SilkS) (width 0.12))
(fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.091 1.04) (end 3.091 1.826) (layer F.SilkS) (width 0.12))
(fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.131 1.04) (end 3.131 1.785) (layer F.SilkS) (width 0.12))
(fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.171 1.04) (end 3.171 1.743) (layer F.SilkS) (width 0.12))
(fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.211 1.04) (end 3.211 1.699) (layer F.SilkS) (width 0.12))
(fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.251 1.04) (end 3.251 1.653) (layer F.SilkS) (width 0.12))
(fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.291 1.04) (end 3.291 1.605) (layer F.SilkS) (width 0.12))
(fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.331 1.04) (end 3.331 1.554) (layer F.SilkS) (width 0.12))
(fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.371 1.04) (end 3.371 1.5) (layer F.SilkS) (width 0.12))
(fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.411 1.04) (end 3.411 1.443) (layer F.SilkS) (width 0.12))
(fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.451 1.04) (end 3.451 1.383) (layer F.SilkS) (width 0.12))
(fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.491 1.04) (end 3.491 1.319) (layer F.SilkS) (width 0.12))
(fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer F.SilkS) (width 0.12))
(fp_line (start 3.531 1.04) (end 3.531 1.251) (layer F.SilkS) (width 0.12))
(fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer F.SilkS) (width 0.12))
(fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer F.SilkS) (width 0.12))
(fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer F.SilkS) (width 0.12))
(fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer F.SilkS) (width 0.12))
(fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer F.SilkS) (width 0.12))
(fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer F.SilkS) (width 0.12))
(fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer F.SilkS) (width 0.12))
(fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer F.SilkS) (width 0.12))
(fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer F.SilkS) (width 0.12))
(fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 1.25 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)