-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVCF1.kicad_pcb
18293 lines (18229 loc) · 783 KB
/
VCF1.kicad_pcb
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 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "/TP")
(net 2 "Net-(C1-Pad2)")
(net 3 "/HP")
(net 4 "Net-(C2-Pad2)")
(net 5 "Net-(C14-Pad1)")
(net 6 "Net-(C3-Pad2)")
(net 7 "+12V")
(net 8 "GND")
(net 9 "-12V")
(net 10 "/BP")
(net 11 "Net-(C14-Pad2)")
(net 12 "Net-(C15-Pad1)")
(net 13 "Net-(C16-Pad1)")
(net 14 "Net-(R1-Pad1)")
(net 15 "/TP_OUT")
(net 16 "Net-(R2-Pad2)")
(net 17 "/HP_OUT")
(net 18 "Net-(R4-Pad2)")
(net 19 "Net-(R6-Pad1)")
(net 20 "Net-(R20-Pad2)")
(net 21 "Net-(R14-Pad2)")
(net 22 "/BP_OUT")
(net 23 "Net-(R10-Pad2)")
(net 24 "Net-(R12-Pad2)")
(net 25 "/BIAS")
(net 26 "Net-(R15-Pad2)")
(net 27 "Net-(R19-Pad1)")
(net 28 "Net-(R22-Pad1)")
(net 29 "Net-(R22-Pad2)")
(net 30 "Net-(R23-Pad2)")
(net 31 "Net-(R24-Pad2)")
(net 32 "/Bias")
(net 33 "Net-(R27-Pad2)")
(net 34 "/FREQ_CV_IN")
(net 35 "unconnected-(U3-Pad1)")
(net 36 "unconnected-(U3-Pad8)")
(net 37 "unconnected-(U4-Pad1)")
(net 38 "unconnected-(U4-Pad8)")
(net 39 "Net-(H1-Pad3)")
(net 40 "/AUDIO_IN_ATT")
(net 41 "Net-(RV4-Pad3)")
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x05_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 0388d759-741a-4d67-8343-3d7106412909)
(at 101.468 53.335 -90)
(descr "Through hole straight pin header, 2x05, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x05 2.54mm double row")
(property "Sheetfile" "VCF.kicad_sch")
(property "Sheetname" "")
(path "/835a39f0-b788-453a-a2a9-02202c10cd4a")
(attr through_hole)
(fp_text reference "H1" (at 1.27 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 333acda7-e2e0-4b15-9bf8-343bb02b2264)
)
(fp_text value "PIN_HEADER_2x5" (at 1.27 12.49 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9e23a5d7-fdde-4ef7-a3a3-9cded829ad2f)
)
(fp_text user "${REFERENCE}" (at 1.27 5.08) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 73a30dce-e79d-4524-9c98-237556a6d43c)
)
(fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 03dcf94d-0fdc-4779-aaa0-ef07161719a8))
(fp_line (start 3.87 -1.33) (end 3.87 11.49) (layer "F.SilkS") (width 0.12) (tstamp 06610913-ce2d-4b7a-8070-f253424219d0))
(fp_line (start -1.33 1.27) (end 1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 1a29637a-7356-472a-9783-83b2586bb379))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 3ddbed6f-9884-4087-ad05-c6c41ae294de))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 56edd10a-9f02-4f34-a3af-d848ffcdf63c))
(fp_line (start -1.33 11.49) (end 3.87 11.49) (layer "F.SilkS") (width 0.12) (tstamp a849f3ac-c4fb-4a87-b027-82793df9b0aa))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp baf2750a-4e9f-4cac-8020-d5c37d7ad7fe))
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp e21740d0-e1d4-49db-a0a5-433b79d9b53a))
(fp_line (start -1.8 11.95) (end 4.35 11.95) (layer "F.CrtYd") (width 0.05) (tstamp 1f1b121b-8253-4b27-ae12-1283fea1277c))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp c6a66aec-0b61-4d45-99d9-ce90219ce153))
(fp_line (start 4.35 11.95) (end 4.35 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp e2f8bf1b-5e3e-466e-a5ad-14d40c2092d2))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer "F.CrtYd") (width 0.05) (tstamp fe242a0d-d2da-48b4-8fea-a14991850e74))
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 3902d0a2-f61d-4fc4-8e3e-16858ddbd634))
(fp_line (start -1.27 11.43) (end -1.27 0) (layer "F.Fab") (width 0.1) (tstamp 3a96c3a3-a760-443e-a851-7a613d47d513))
(fp_line (start 3.81 -1.27) (end 3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp 56ce2662-6202-40d6-9fb3-90c294a3caf8))
(fp_line (start -1.27 0) (end 0 -1.27) (layer "F.Fab") (width 0.1) (tstamp 9899c8c5-bdf2-48be-b6d8-c94ef6095fb6))
(fp_line (start 3.81 11.43) (end -1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp c9736957-fc0b-4bba-9f4e-d691c913f76a))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "+12V") (pinfunction "1") (pintype "bidirectional") (tstamp d7923d44-0c49-438e-bc5c-20a3df7038eb))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "+12V") (pinfunction "2") (pintype "bidirectional") (tstamp 96f95e42-b2b9-4ee8-8b38-1485b44d1562))
(pad "3" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 39 "Net-(H1-Pad3)") (pinfunction "3") (pintype "bidirectional") (tstamp f46e76e9-1f55-4a2d-9433-75bb772f790f))
(pad "4" thru_hole oval (at 2.54 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 39 "Net-(H1-Pad3)") (pinfunction "4") (pintype "bidirectional") (tstamp 2b7a75cd-c70a-4989-a7d2-71fa857a1039))
(pad "5" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 39 "Net-(H1-Pad3)") (pinfunction "5") (pintype "bidirectional") (tstamp 6af0133f-d941-4736-b63a-6a232f3706de))
(pad "6" thru_hole oval (at 2.54 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 39 "Net-(H1-Pad3)") (pinfunction "6") (pintype "bidirectional") (tstamp 9b408b2b-5205-4204-8d49-eb1d323c2556))
(pad "7" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 39 "Net-(H1-Pad3)") (pinfunction "7") (pintype "bidirectional") (tstamp 7f736988-0b26-419c-9d19-046f7c2668bf))
(pad "8" thru_hole oval (at 2.54 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 39 "Net-(H1-Pad3)") (pinfunction "8") (pintype "bidirectional") (tstamp 3a55f54e-a25b-43f9-b174-af21feffcf5b))
(pad "9" thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "-12V") (pinfunction "9") (pintype "bidirectional") (tstamp bc228df5-04e7-404b-a400-9675ac5f7718))
(pad "10" thru_hole oval (at 2.54 10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "-12V") (pinfunction "10") (pintype "bidirectional") (tstamp ac8e8224-9531-4a69-98c8-3cdff988f6f0))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x05_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 19a0b196-e1e8-46e5-acc5-084cbd5b0d14)
(at 88.9 21.59 -90)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf")
(tags "C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.0mm Capacitor")
(property "Sheetfile" "VCF.kicad_sch")
(property "Sheetname" "")
(path "/9778c38c-80b2-4288-b511-88abbd91de25")
(attr through_hole)
(fp_text reference "C6" (at 2.5 -2.75 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6c363c46-cb5e-43b4-828e-7a5223282f15)
)
(fp_text value "100nF" (at 2.5 2.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6c9131ea-80c1-4f33-be9c-a30d8d1c9998)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da781c39-d71b-4109-a091-0780cc988bec)
)
(fp_line (start 6.22 -1.62) (end 6.22 1.62) (layer "F.SilkS") (width 0.12) (tstamp 210bbc75-43fe-4629-aff6-cf8452c6da4b))
(fp_line (start -1.22 1.62) (end 6.22 1.62) (layer "F.SilkS") (width 0.12) (tstamp 3564fe16-3488-454a-a6d6-bf5dc9ad56ed))
(fp_line (start -1.22 -1.62) (end -1.22 1.62) (layer "F.SilkS") (width 0.12) (tstamp 3cd9823c-60a1-44b1-8930-87630dd79d09))
(fp_line (start -1.22 -1.62) (end 6.22 -1.62) (layer "F.SilkS") (width 0.12) (tstamp 4d377bc1-5f90-4782-9a84-5ba1016a1675))
(fp_line (start 6.35 -1.75) (end -1.35 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 0b50ed26-bba2-496f-b39c-27229125ae80))
(fp_line (start 6.35 1.75) (end 6.35 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 0d742b21-7cc8-492c-ab96-4674a58f494b))
(fp_line (start -1.35 1.75) (end 6.35 1.75) (layer "F.CrtYd") (width 0.05) (tstamp b1a14487-1c4a-4872-a083-ce1bfa2aa99a))
(fp_line (start -1.35 -1.75) (end -1.35 1.75) (layer "F.CrtYd") (width 0.05) (tstamp bf6f3fcb-f946-4bcb-91f4-89d631b8ce07))
(fp_line (start 6.1 -1.5) (end -1.1 -1.5) (layer "F.Fab") (width 0.1) (tstamp 328296b8-81ae-4fcf-8913-252829b7b632))
(fp_line (start -1.1 1.5) (end 6.1 1.5) (layer "F.Fab") (width 0.1) (tstamp 6fa21532-37ea-4054-99c8-457174871ab2))
(fp_line (start 6.1 1.5) (end 6.1 -1.5) (layer "F.Fab") (width 0.1) (tstamp b88312e4-5cfc-40cd-b7da-f5811cb3724f))
(fp_line (start -1.1 -1.5) (end -1.1 1.5) (layer "F.Fab") (width 0.1) (tstamp f1f6dbd0-c661-46aa-a75a-7b09d8dfb356))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "+12V") (pintype "passive") (tstamp b9fdb5e8-9cf3-4aea-bec8-b3e0a342b4c6))
(pad "2" thru_hole circle (at 5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "GND") (pintype "passive") (tstamp 71e0efbf-91ac-4713-93de-ab4d791203be))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Potentiometer_THT:Potentiometer_Alpha_RD901F-40-00D_Single_Vertical_CircularHoles" (layer "F.Cu")
(tedit 5C6C6C48) (tstamp 1c3bf94c-9a04-45d3-a87d-d3f82a872b0a)
(at 94.02 76.845 90)
(descr "Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113")
(tags "potentiometer vertical 9mm single")
(property "Sheetfile" "VCF.kicad_sch")
(property "Sheetname" "")
(path "/054827b7-1ad8-4ac9-a7e7-0591af8161ab")
(attr through_hole)
(fp_text reference "RV4" (at 6.45 -4.8 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 357f5330-82c5-405d-976d-33ae8895d017)
)
(fp_text value "100k" (at 0 10.11 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1c9047a4-52ee-47c9-8462-bd3500a86175)
)
(fp_text user "${REFERENCE}" (at 7.62 2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ea0c64e6-6196-49d0-b5b0-6e658e6ddca6)
)
(fp_line (start 0.88 1.71) (end 0.88 1.18) (layer "F.SilkS") (width 0.12) (tstamp 29780111-ab55-4ed9-8811-3fa4d4ea9173))
(fp_line (start 9.41 -2.37) (end 12.47 -2.37) (layer "F.SilkS") (width 0.12) (tstamp 2aebe770-38ae-442b-a772-8fe421c321d7))
(fp_line (start 9.41 7.37) (end 12.47 7.37) (layer "F.SilkS") (width 0.12) (tstamp 3d36cae6-6819-4ac3-823a-bb8802806240))
(fp_line (start 0.88 -1.19) (end 0.88 -2.37) (layer "F.SilkS") (width 0.12) (tstamp 5b8c3553-97aa-4993-9017-5deb47b5f1c5))
(fp_line (start 0.88 -2.38) (end 5.6 -2.38) (layer "F.SilkS") (width 0.12) (tstamp 6350c016-13c0-4677-824b-b6a85969e348))
(fp_line (start 0.88 7.37) (end 0.88 5.88) (layer "F.SilkS") (width 0.12) (tstamp a1bfc06f-bea3-41f5-afc1-4d637e2b9376))
(fp_line (start 0.88 7.37) (end 5.6 7.37) (layer "F.SilkS") (width 0.12) (tstamp bafa9113-3944-41af-9108-2280550a3d9f))
(fp_line (start 0.88 4.16) (end 0.88 3.33) (layer "F.SilkS") (width 0.12) (tstamp c776054b-0b03-418f-90d7-443c68372e95))
(fp_line (start 12.47 7.37) (end 12.47 -2.37) (layer "F.SilkS") (width 0.12) (tstamp e3cd0807-d536-4e16-aaaf-3a9e375d7f11))
(fp_line (start -1.15 -4.17) (end -1.15 9.17) (layer "F.CrtYd") (width 0.05) (tstamp 3be5a571-aea0-4680-960f-f3b41df17195))
(fp_line (start 12.6 9.17) (end 12.6 -4.17) (layer "F.CrtYd") (width 0.05) (tstamp 68fa3f7e-6cf7-4f32-accd-5d72e824b78e))
(fp_line (start -1.15 9.17) (end 12.6 9.17) (layer "F.CrtYd") (width 0.05) (tstamp 894ada9f-b044-46d9-bcba-512f781dd64f))
(fp_line (start 12.6 -4.17) (end -1.15 -4.17) (layer "F.CrtYd") (width 0.05) (tstamp 9bba7df7-89a3-4970-953d-50dfd43f9459))
(fp_line (start 1 7.25) (end 12.35 7.25) (layer "F.Fab") (width 0.1) (tstamp 0601c5c6-429f-4d4a-9c0b-5811cb2a3dfe))
(fp_line (start 1 7.25) (end 1 -2.25) (layer "F.Fab") (width 0.1) (tstamp 1b73b6ca-f050-44b1-97ae-700c360b3b38))
(fp_line (start 1 -2.25) (end 12.35 -2.25) (layer "F.Fab") (width 0.1) (tstamp 970f627d-7e68-4e9a-84b8-73aaa7b18a09))
(fp_line (start 12.35 7.25) (end 12.35 -2.25) (layer "F.Fab") (width 0.1) (tstamp e4b52a39-8a82-4d48-b15d-6b13d993d532))
(fp_circle (center 7.5 2.5) (end 7.5 -1) (layer "F.Fab") (width 0.1) (fill none) (tstamp 6619699b-a869-4a5b-ace9-c028d6d80b58))
(pad "" thru_hole circle (at 7.5 7.3 180) (size 3.24 3.24) (drill 1.8) (layers *.Cu *.Mask) (tstamp 503b5001-d9bd-470f-9877-4e304cd9d1c8))
(pad "" thru_hole circle (at 7.5 -2.3 180) (size 3.24 3.24) (drill 1.8) (layers *.Cu *.Mask) (tstamp 522b57bc-0e28-427c-9da8-23d37d33d35c))
(pad "1" thru_hole rect (at 0 0 180) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 10 "/BP") (pinfunction "1") (pintype "passive") (tstamp d07b04ce-e928-40b9-a472-6bd933c4ab15))
(pad "2" thru_hole circle (at 0 2.5 180) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 10 "/BP") (pinfunction "2") (pintype "passive") (tstamp 57f8a5d5-3b55-4c8d-bb0c-98c0c72f1fa8))
(pad "3" thru_hole circle (at 0 5 180) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 41 "Net-(RV4-Pad3)") (pinfunction "3") (pintype "passive") (tstamp 437f3062-ce99-4a32-8981-12cab54137c8))
(model "${KICAD6_3DMODEL_DIR}/Potentiometer_THT.3dshapes/Potentiometer_Alpha_RD901F-40-00D_Single_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 2892b057-c9cf-43fc-8236-d7f1ab77d3d6)
(at 70.358 119.888 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "VCF.kicad_sch")
(property "Sheetname" "")
(path "/851844f6-c5a8-4556-989a-3f0c34f5d6f1")
(attr through_hole)
(fp_text reference "R22" (at 5.08 -2.37 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a9ed94d8-3b16-4d2d-ae1d-e4c0013db6e5)
)
(fp_text value "20k" (at 5.08 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c0e67ebc-0c07-4a99-bb24-353e6823f3cd)
)
(fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 104775c0-c796-4387-ac41-d4e02deee6c8)
)
(fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 5a13a736-688e-4ed5-bd9c-8f0335c4f63e))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 603f34de-aa0c-40b0-b102-edacceae64eb))
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp a2abad75-5107-4b83-ac57-97a6dc265392))
(fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp a51c9386-8a79-4704-8732-3dcb1f936afc))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp bd8cc70b-f1c2-4e9e-825a-937e0d4ddf7d))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp c63fe583-b8c1-4822-aca4-26284203981a))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 02d06424-b5a4-42eb-8e26-1424a2e09367))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 14c0ef96-a5ba-461d-b89e-3f369c0e8ee2))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3ed4ad61-1b0c-484b-86b6-f44e3943e24b))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4624e1e7-dbed-43c6-a9b8-22c3a647ca8f))
(fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 3710d1dc-c9fd-49f2-98ec-49971b4eb1d5))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp ae18c089-a5fa-4147-96e1-9b0132b8eb0d))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp bdbe7b10-c651-4665-b0ce-87d179ce132b))
(fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp c4426313-0e0f-40f3-80d3-88aa7d170a6e))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp d2a32757-664c-46bf-8ea4-dfe595cf1bed))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp e935a162-f68a-4d86-b6a5-64b3b2bffd67))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "Net-(R22-Pad1)") (pintype "passive") (tstamp 602da0f7-ab39-4823-9ffc-e2196e51f1a5))
(pad "2" thru_hole oval (at 10.16 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 29 "Net-(R22-Pad2)") (pintype "passive") (tstamp 086ec4f3-c561-4450-9b0a-7a19381e8a63))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Audio:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles" (layer "F.Cu")
(tedit 61FECFD2) (tstamp 289609f1-232c-48da-a165-c7139a061e99)
(at 95.885 150.56 180)
(descr "TRS 3.5mm, vertical, Thonkiconn, PCB mount, (http://www.qingpu-electronics.com/en/products/WQP-PJ398SM-362.html)")
(tags "WQP-PJ398SM WQP-PJ301M-12 TRS 3.5mm mono vertical jack thonkiconn qingpu")
(property "Sheetfile" "VCF.kicad_sch")
(property "Sheetname" "")
(path "/31e87d7a-73f1-4ebc-ad1e-3155263c0551")
(attr through_hole)
(fp_text reference "J2" (at -4.03 1.08) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c9c9b9c7-58fc-45a5-8b65-730bbd215b89)
)
(fp_text value "TP_OUT" (at 0 5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 66f54be2-7150-4544-9a01-cf71a5687948)
)
(fp_text user "KEEPOUT" (at 0 6.48) (layer "Cmts.User")
(effects (font (size 0.4 0.4) (thickness 0.051)))
(tstamp a44c680f-4981-451a-8ad8-830a47fa6c22)
)
(fp_text user "${REFERENCE}" (at 0 8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c8c1c801-9235-4f81-97d8-9707166f742f)
)
(fp_line (start -0.72 1.98) (end -4.5 1.98) (layer "F.SilkS") (width 0.12) (tstamp 01ab4f00-2608-4267-b1a6-398ced95c29e))
(fp_line (start 4.5 12.48) (end 0.8 12.48) (layer "F.SilkS") (width 0.12) (tstamp 2555fde4-2c42-490e-b8c2-3c2104cb2f11))
(fp_line (start -0.8 12.48) (end -4.5 12.48) (layer "F.SilkS") (width 0.12) (tstamp 29afe572-3bc1-4af2-b43b-4fee6bc5b3ff))
(fp_line (start -1.23 -1.17) (end -1.23 -0.37) (layer "F.SilkS") (width 0.12) (tstamp 42d32deb-533a-4394-a89a-ecad741df767))
(fp_line (start 4.5 1.98) (end 0.72 1.98) (layer "F.SilkS") (width 0.12) (tstamp 5a0728b5-5f56-4c30-b189-549127e500e2))
(fp_line (start 4.5 1.98) (end 4.5 12.48) (layer "F.SilkS") (width 0.12) (tstamp ad1acf17-a00a-444e-a4bc-1cfcf384e3a1))
(fp_line (start -4.5 1.98) (end -4.5 12.48) (layer "F.SilkS") (width 0.12) (tstamp b2f7bd7d-414f-4aa3-8e22-e80e93f3a4d7))
(fp_line (start -1.23 -1.17) (end -0.37 -1.17) (layer "F.SilkS") (width 0.12) (tstamp b4977010-7bcb-40fa-b27a-e64009b4e3bf))
(fp_circle (center 0 6.48) (end 1.8 6.48) (layer "F.SilkS") (width 0.12) (fill none) (tstamp a01aec4b-cd9f-49cb-9e54-b9605465f985))
(fp_line (start 5 12.98) (end -5 12.98) (layer "F.CrtYd") (width 0.05) (tstamp 43e7faf8-c715-4a1f-967a-8dbc569f477b))
(fp_line (start -5 12.98) (end -5 -1.42) (layer "F.CrtYd") (width 0.05) (tstamp 57ad1964-4b96-4be3-9a59-eb88367da9ce))
(fp_line (start 5 -1.42) (end -5 -1.42) (layer "F.CrtYd") (width 0.05) (tstamp 5e03b033-fc63-426c-a3fc-5398456bd9c6))
(fp_line (start 5 12.98) (end 5 -1.42) (layer "F.CrtYd") (width 0.05) (tstamp 8b2e413e-da48-4af7-9db8-5bdd78a775e2))
(fp_line (start 4.5 12.48) (end -4.5 12.48) (layer "F.Fab") (width 0.1) (tstamp 2b6041cb-3c71-40b7-b537-e6838fc53b26))
(fp_line (start -4.5 12.48) (end -4.5 2.08) (layer "F.Fab") (width 0.1) (tstamp 4d40ee9f-c4ef-4c7e-9fe8-668f2654a51d))
(fp_line (start 4.5 12.48) (end 4.5 2.08) (layer "F.Fab") (width 0.1) (tstamp 4dc21565-8668-423d-98fc-170304877597))
(fp_line (start 4.5 2.03) (end -4.5 2.03) (layer "F.Fab") (width 0.1) (tstamp 51558775-55e7-4dc3-836f-6a0acc9d4258))
(fp_line (start 0 0) (end 0 2.03) (layer "F.Fab") (width 0.1) (tstamp 5b499eb8-6059-4f62-8410-743c14d08b07))
(fp_circle (center 0 6.48) (end 1.8 6.48) (layer "F.Fab") (width 0.1) (fill none) (tstamp 68bc3638-8b46-4b52-b331-e9bb5c199511))
(pad "S" thru_hole rect (at 0 0) (size 1.93 1.83) (drill 1.22) (layers *.Cu *.Mask)
(net 8 "GND") (pintype "passive") (tstamp 964decaa-7cda-4b27-8e41-86fa2bd7cec6))
(pad "T" thru_hole circle (at 0 11.4) (size 2.13 2.13) (drill 1.43) (layers *.Cu *.Mask)
(net 15 "/TP_OUT") (pintype "passive") (tstamp 4c0debfd-171a-40d0-b6ff-262b9ca2313d))
(pad "TN" thru_hole circle (at 0 3.1) (size 2.13 2.13) (drill 1.42) (layers *.Cu *.Mask)
(net 8 "GND") (pintype "passive") (tstamp 6ded5dd5-169c-4b1c-ad2a-90f45533cb40))
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp f3ae7691-6525-4eb8-89e1-5c4807203486) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.254)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed ) (copperpour not_allowed) (footprints not_allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 94.379859 144.08)
(xy 94.40007 144.325829)
(xy 94.460159 144.565055)
(xy 94.558514 144.791256)
(xy 94.692492 144.998355)
(xy 94.858496 145.18079)
(xy 95.052068 145.333664)
(xy 95.268008 145.452869)
(xy 95.500518 145.535206)
(xy 95.743354 145.578461)
(xy 95.989993 145.581475)
(xy 96.233813 145.544165)
(xy 96.468266 145.467534)
(xy 96.687054 145.35364)
(xy 96.884303 145.205542)
(xy 97.054714 145.027216)
(xy 97.193712 144.823452)
(xy 97.297564 144.599722)
(xy 97.363481 144.362035)
(xy 97.389692 144.116774)
(xy 97.375493 143.870525)
(xy 97.321266 143.629901)
(xy 97.228468 143.401366)
(xy 97.099589 143.191055)
(xy 96.938092 143.004618)
(xy 96.748313 142.847061)
(xy 96.53535 142.722615)
(xy 96.304921 142.634623)
(xy 96.063215 142.585447)
(xy 95.816722 142.576408)
(xy 95.572064 142.60775)
(xy 95.335809 142.67863)
(xy 95.114303 142.787144)
(xy 94.913495 142.930379)
(xy 94.738777 143.104488)
(xy 94.594842 143.304795)
(xy 94.485555 143.525921)
(xy 94.413851 143.761926)
(xy 94.381656 144.006474)
)
)
)
(model "${KICAD6_3DMODEL_DIR}/Connector_Audio.3dshapes/Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Audio:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles" (layer "F.Cu")
(tedit 61FECFD2) (tstamp 3a74cb5b-dc76-4a05-8b62-6381e48cc089)
(at 71.12 150.56 180)
(descr "TRS 3.5mm, vertical, Thonkiconn, PCB mount, (http://www.qingpu-electronics.com/en/products/WQP-PJ398SM-362.html)")
(tags "WQP-PJ398SM WQP-PJ301M-12 TRS 3.5mm mono vertical jack thonkiconn qingpu")
(property "Sheetfile" "VCF.kicad_sch")
(property "Sheetname" "")
(path "/ffa06797-5988-454e-aaf9-1e7da6702ebc")
(attr through_hole)
(fp_text reference "J4" (at -4.03 1.08) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 209931d9-9014-4872-95f6-fbfcbae8c22c)
)
(fp_text value "HP_OUT" (at 0 5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0789e422-d35a-4546-812a-eb372d2960fc)
)
(fp_text user "KEEPOUT" (at 0 6.48) (layer "Cmts.User")
(effects (font (size 0.4 0.4) (thickness 0.051)))
(tstamp a66f4c17-ba47-4501-809f-ceb96b7efb38)
)
(fp_text user "${REFERENCE}" (at 0 8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 79aa282e-cc79-4938-890e-340903662402)
)
(fp_line (start -0.8 12.48) (end -4.5 12.48) (layer "F.SilkS") (width 0.12) (tstamp 11ea7b6d-fa94-4e12-b0b0-beb7e5b14b94))
(fp_line (start -1.23 -1.17) (end -0.37 -1.17) (layer "F.SilkS") (width 0.12) (tstamp 2a4d097d-58f4-473d-b013-830dd7f57ec9))
(fp_line (start -1.23 -1.17) (end -1.23 -0.37) (layer "F.SilkS") (width 0.12) (tstamp 563b742c-ed2a-4311-bea4-3f0bc5fa8867))
(fp_line (start -4.5 1.98) (end -4.5 12.48) (layer "F.SilkS") (width 0.12) (tstamp 778dba9e-2bab-4dbe-9a82-0431bbfd8776))
(fp_line (start -0.72 1.98) (end -4.5 1.98) (layer "F.SilkS") (width 0.12) (tstamp 81c54871-7121-4244-b8e2-1b2a72ef9563))
(fp_line (start 4.5 12.48) (end 0.8 12.48) (layer "F.SilkS") (width 0.12) (tstamp c00e83c5-2b6e-40a1-9540-b0fcccb22d23))
(fp_line (start 4.5 1.98) (end 4.5 12.48) (layer "F.SilkS") (width 0.12) (tstamp dc6b0d3c-cc52-40bd-a538-eeccf23530af))
(fp_line (start 4.5 1.98) (end 0.72 1.98) (layer "F.SilkS") (width 0.12) (tstamp f6066c13-dbf4-42a1-8544-b2521c19ff4e))
(fp_circle (center 0 6.48) (end 1.8 6.48) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 3f1b9bee-ec6c-43bd-ab64-ab30f2ae897a))
(fp_line (start 5 -1.42) (end -5 -1.42) (layer "F.CrtYd") (width 0.05) (tstamp 83a6b6cb-93bb-4ccd-9272-17e75c39351e))
(fp_line (start 5 12.98) (end 5 -1.42) (layer "F.CrtYd") (width 0.05) (tstamp 8cf6d391-3d4b-4607-9170-447a75575701))
(fp_line (start -5 12.98) (end -5 -1.42) (layer "F.CrtYd") (width 0.05) (tstamp ca60ff77-c670-45bd-8171-a4be0577e977))
(fp_line (start 5 12.98) (end -5 12.98) (layer "F.CrtYd") (width 0.05) (tstamp e87f539d-6058-4958-8874-ece4717f629d))
(fp_line (start 0 0) (end 0 2.03) (layer "F.Fab") (width 0.1) (tstamp 261fc467-fdb0-4401-91b6-22df202322c5))
(fp_line (start 4.5 12.48) (end 4.5 2.08) (layer "F.Fab") (width 0.1) (tstamp 4268fa7b-6697-4fbd-a73d-56ccefeec795))
(fp_line (start -4.5 12.48) (end -4.5 2.08) (layer "F.Fab") (width 0.1) (tstamp 5dc71d21-1a26-4e4a-8608-714bcf76720a))
(fp_line (start 4.5 12.48) (end -4.5 12.48) (layer "F.Fab") (width 0.1) (tstamp 5fa3e636-7b77-4812-9096-2ffca0b125d5))
(fp_line (start 4.5 2.03) (end -4.5 2.03) (layer "F.Fab") (width 0.1) (tstamp b000239e-8410-4b34-a8a9-48da464d7d51))
(fp_circle (center 0 6.48) (end 1.8 6.48) (layer "F.Fab") (width 0.1) (fill none) (tstamp 6fe4a063-d5cc-4838-bde4-2587754aba92))
(pad "S" thru_hole rect (at 0 0) (size 1.93 1.83) (drill 1.22) (layers *.Cu *.Mask)
(net 8 "GND") (pintype "passive") (tstamp e9ae28ab-7bd7-4c11-b7e5-4e33f91b5fb2))
(pad "T" thru_hole circle (at 0 11.4) (size 2.13 2.13) (drill 1.43) (layers *.Cu *.Mask)
(net 17 "/HP_OUT") (pintype "passive") (tstamp e4fed112-077d-4f1f-b660-85a5d6a53870))
(pad "TN" thru_hole circle (at 0 3.1) (size 2.13 2.13) (drill 1.42) (layers *.Cu *.Mask)
(net 8 "GND") (pintype "passive") (tstamp 1b2b37f2-4b35-494e-a579-56db389c30bc))
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp bd609c0c-adb1-4187-bed5-f90a3e37c778) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.254)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed ) (copperpour not_allowed) (footprints not_allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 69.614859 144.08)
(xy 69.63507 144.325829)
(xy 69.695159 144.565055)
(xy 69.793514 144.791256)
(xy 69.927492 144.998355)
(xy 70.093496 145.18079)
(xy 70.287068 145.333664)
(xy 70.503008 145.452869)
(xy 70.735518 145.535206)
(xy 70.978354 145.578461)
(xy 71.224993 145.581475)
(xy 71.468813 145.544165)
(xy 71.703266 145.467534)
(xy 71.922054 145.35364)
(xy 72.119303 145.205542)
(xy 72.289714 145.027216)
(xy 72.428712 144.823452)
(xy 72.532564 144.599722)
(xy 72.598481 144.362035)
(xy 72.624692 144.116774)
(xy 72.610493 143.870525)
(xy 72.556266 143.629901)
(xy 72.463468 143.401366)
(xy 72.334589 143.191055)
(xy 72.173092 143.004618)
(xy 71.983313 142.847061)
(xy 71.77035 142.722615)
(xy 71.539921 142.634623)
(xy 71.298215 142.585447)
(xy 71.051722 142.576408)
(xy 70.807064 142.60775)
(xy 70.570809 142.67863)
(xy 70.349303 142.787144)
(xy 70.148495 142.930379)
(xy 69.973777 143.104488)
(xy 69.829842 143.304795)
(xy 69.720555 143.525921)
(xy 69.648851 143.761926)
(xy 69.616656 144.006474)
)
)
)
(model "${KICAD6_3DMODEL_DIR}/Connector_Audio.3dshapes/Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Potentiometer_THT:Potentiometer_Alpha_RD901F-40-00D_Single_Vertical_CircularHoles" (layer "F.Cu")
(tedit 5C6C6C48) (tstamp 3e1f8f8b-698f-4901-9a82-c0ecaa2bc050)
(at 55.92 76.845 90)
(descr "Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113")
(tags "potentiometer vertical 9mm single")
(property "Sheetfile" "VCF.kicad_sch")
(property "Sheetname" "")
(path "/e237221c-1c8c-4300-a4ae-0974561e1613")
(attr through_hole)
(fp_text reference "RV2" (at 6.45 -4.8 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bf8370c3-1cdb-463d-84d3-7554961c6413)
)
(fp_text value "100k" (at 3.556 10.11 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 54cc4e6c-d7d6-4ce0-a4a4-099c97227a7c)
)
(fp_text user "${REFERENCE}" (at 7.5 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c08888dc-da09-4538-ac28-5c19b90b24aa)
)
(fp_line (start 0.88 -2.38) (end 5.6 -2.38) (layer "F.SilkS") (width 0.12) (tstamp 3672a78a-018a-46fe-baac-0a6ea75f0a47))
(fp_line (start 0.88 7.37) (end 0.88 5.88) (layer "F.SilkS") (width 0.12) (tstamp 45de4864-a52e-4e89-ab38-ffffa02e19ab))
(fp_line (start 12.47 7.37) (end 12.47 -2.37) (layer "F.SilkS") (width 0.12) (tstamp 4e255f25-99c1-4005-b24b-d447615e631a))
(fp_line (start 0.88 1.71) (end 0.88 1.18) (layer "F.SilkS") (width 0.12) (tstamp 5ea0a8d1-229e-4494-a0bc-a9913dd68be3))
(fp_line (start 9.41 -2.37) (end 12.47 -2.37) (layer "F.SilkS") (width 0.12) (tstamp 6159f0ec-f8ec-421d-b9ed-7172ccbb5ba6))
(fp_line (start 0.88 4.16) (end 0.88 3.33) (layer "F.SilkS") (width 0.12) (tstamp 80153a91-0b47-4aa4-8cc2-fded20f59834))
(fp_line (start 0.88 -1.19) (end 0.88 -2.37) (layer "F.SilkS") (width 0.12) (tstamp 973b510a-4468-4fbd-88e5-0e6a1c24eb40))
(fp_line (start 0.88 7.37) (end 5.6 7.37) (layer "F.SilkS") (width 0.12) (tstamp b26cb2b7-947e-4071-93b3-6d14be16379c))
(fp_line (start 9.41 7.37) (end 12.47 7.37) (layer "F.SilkS") (width 0.12) (tstamp cf230ef8-02a2-4ebf-affd-0b676dc4d75e))
(fp_line (start 12.6 9.17) (end 12.6 -4.17) (layer "F.CrtYd") (width 0.05) (tstamp 4ffa095e-22c9-42d3-acbf-c6cae7fb613d))
(fp_line (start -1.15 -4.17) (end -1.15 9.17) (layer "F.CrtYd") (width 0.05) (tstamp 74569353-aa35-4c60-81da-2bd062361be5))
(fp_line (start -1.15 9.17) (end 12.6 9.17) (layer "F.CrtYd") (width 0.05) (tstamp ce3da19e-cb33-4440-a4e4-7671df5a5318))
(fp_line (start 12.6 -4.17) (end -1.15 -4.17) (layer "F.CrtYd") (width 0.05) (tstamp f2ee6d38-0d4b-4d5a-8ba8-d947af90c5e0))
(fp_line (start 1 7.25) (end 12.35 7.25) (layer "F.Fab") (width 0.1) (tstamp 6e49d8d6-8f03-4c5f-b81e-056fef93c48c))
(fp_line (start 1 7.25) (end 1 -2.25) (layer "F.Fab") (width 0.1) (tstamp 85b87f9e-8b84-4807-b647-734005d66e84))
(fp_line (start 12.35 7.25) (end 12.35 -2.25) (layer "F.Fab") (width 0.1) (tstamp 883af52c-b0e9-4d4f-b935-143d49ccafce))
(fp_line (start 1 -2.25) (end 12.35 -2.25) (layer "F.Fab") (width 0.1) (tstamp d391bdb4-7e0b-4261-9594-d3885e0b70a7))
(fp_circle (center 7.5 2.5) (end 7.5 -1) (layer "F.Fab") (width 0.1) (fill none) (tstamp 677cca6e-127e-4b79-a733-ddde96ac15b7))
(pad "" thru_hole circle (at 7.5 7.3 180) (size 3.24 3.24) (drill 1.8) (layers *.Cu *.Mask) (tstamp 2b294d1f-38a6-43c8-af4f-a4be3bf44cc3))
(pad "" thru_hole circle (at 7.5 -2.3 180) (size 3.24 3.24) (drill 1.8) (layers *.Cu *.Mask) (tstamp b50ef953-c01b-429f-86f8-2d953751004a))
(pad "1" thru_hole rect (at 0 0 180) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 7 "+12V") (pinfunction "1") (pintype "passive") (tstamp 64074a6e-0eb1-47d1-9c97-83f8f5354d01))
(pad "2" thru_hole circle (at 0 2.5 180) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 30 "Net-(R23-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 52976f84-873e-4fdd-84f8-f3cc859c6ebf))
(pad "3" thru_hole circle (at 0 5 180) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 9 "-12V") (pinfunction "3") (pintype "passive") (tstamp 605c4d80-fde0-4273-ba03-739fbf7694fa))
(model "${KICAD6_3DMODEL_DIR}/Potentiometer_THT.3dshapes/Potentiometer_Alpha_RD901F-40-00D_Single_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 41c7a986-e294-44ce-bdde-e27eea47196e)
(at 95.504 124.968 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "VCF.kicad_sch")
(property "Sheetname" "")
(path "/8ac3b923-5bc5-45db-9848-8b7084f5096b")
(attr through_hole)
(fp_text reference "R11" (at 5.08 -2.37 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 429a096a-6ef6-4d88-afd5-9fa58f951d29)
)
(fp_text value "10k" (at 5.08 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd9c040a-3f97-4de7-8647-b8765bb67435)
)
(fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a78a9ce2-cb1d-4737-a453-e7a3d23ebce0)
)
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 0577a9ea-5ba8-4da7-a908-21991ad0bc08))
(fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 10fba46c-2639-4899-8c57-fb62db993fa7))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 16642e03-a058-4969-aac9-89f755070cfe))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 416d8767-2aa9-40db-840c-fd05b630c1f4))
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 604bbe61-22eb-4c15-bb5f-d677e72a2988))
(fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp eb830e16-dbcd-42cc-8602-e58b1ef1ab72))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 36770e3b-1d86-4c28-b71f-4bb1e0278f64))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 7304a454-9ff8-48f9-b25a-648e57effd56))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 73e1e359-840c-45ea-8504-62dc84562ca5))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp b616f356-bfb1-4093-a250-e653147cf099))
(fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 0ac8d0e9-df68-4d38-95bb-b9edd3b0b066))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 1931fffe-7ab4-4856-9236-90541c2d248e))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 267110f8-893a-480e-b3ef-f9780d9e8f8a))
(fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 5e178031-785e-472a-aacd-ad0db9407f65))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 749f6592-8d77-4a8a-8e22-e7d09458e72e))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp e19bade6-ed33-4bbe-a9de-9c8c74e3586d))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 "Net-(R10-Pad2)") (pintype "passive") (tstamp 577fac3d-4c1a-4d3d-bed6-46407ee4820a))
(pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "GND") (pintype "passive") (tstamp 014661c6-4c57-458c-8582-e1cf3d311e3a))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Audio:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles" (layer "F.Cu")
(tedit 61FECFD2) (tstamp 51ce3c03-31cb-4ec5-8f40-baf05ba75ff9)
(at 58.42 135.32 180)
(descr "TRS 3.5mm, vertical, Thonkiconn, PCB mount, (http://www.qingpu-electronics.com/en/products/WQP-PJ398SM-362.html)")
(tags "WQP-PJ398SM WQP-PJ301M-12 TRS 3.5mm mono vertical jack thonkiconn qingpu")
(property "Sheetfile" "VCF.kicad_sch")
(property "Sheetname" "")
(path "/a3fd13ac-6a6a-4565-88f3-9e7330ac245c")
(attr through_hole)
(fp_text reference "J5" (at -4.03 1.08) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d5053e25-8e31-4d8a-8bd9-a12ea01f9d3c)
)
(fp_text value "AUDIO_IN" (at 0 5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp af23727e-1752-462d-9a4e-0e991b37fd62)
)
(fp_text user "KEEPOUT" (at 0 6.48) (layer "Cmts.User")
(effects (font (size 0.4 0.4) (thickness 0.051)))
(tstamp 3a7b8b07-06de-4fe0-8248-8dda757981ba)
)
(fp_text user "${REFERENCE}" (at 0 8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d3e8bab2-a96e-4777-9d9c-3f65891cea49)
)
(fp_line (start 4.5 1.98) (end 0.72 1.98) (layer "F.SilkS") (width 0.12) (tstamp 46107e03-7b11-452f-8c51-f0b79c86cd35))
(fp_line (start -0.8 12.48) (end -4.5 12.48) (layer "F.SilkS") (width 0.12) (tstamp 59153f4e-1dc5-46dd-8a20-f2263cd65950))
(fp_line (start -4.5 1.98) (end -4.5 12.48) (layer "F.SilkS") (width 0.12) (tstamp 7b49d15c-e622-486c-b752-eb35dd2cfa79))
(fp_line (start 4.5 1.98) (end 4.5 12.48) (layer "F.SilkS") (width 0.12) (tstamp 8412036a-3ea2-4b74-8181-b678e28b9823))
(fp_line (start -1.23 -1.17) (end -0.37 -1.17) (layer "F.SilkS") (width 0.12) (tstamp b4dd7bf8-1926-4291-bfbf-4281b11ec529))
(fp_line (start -0.72 1.98) (end -4.5 1.98) (layer "F.SilkS") (width 0.12) (tstamp c70610e8-4fa2-44fc-a1a1-c03d3d5cd91a))
(fp_line (start 4.5 12.48) (end 0.8 12.48) (layer "F.SilkS") (width 0.12) (tstamp e4d51649-ad03-4e12-bc0e-b292418bdbc9))
(fp_line (start -1.23 -1.17) (end -1.23 -0.37) (layer "F.SilkS") (width 0.12) (tstamp e69d6e7f-4dbb-4b70-a2ba-a60b86198f53))
(fp_circle (center 0 6.48) (end 1.8 6.48) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 20e5b869-8ad3-453a-95ce-baad053c89ba))
(fp_line (start 5 12.98) (end 5 -1.42) (layer "F.CrtYd") (width 0.05) (tstamp 1a45a8f0-d6ca-4f9d-a9f5-0940c1ed9686))
(fp_line (start 5 12.98) (end -5 12.98) (layer "F.CrtYd") (width 0.05) (tstamp 26446095-4b36-4b92-b664-1cf24d1f18e5))
(fp_line (start 5 -1.42) (end -5 -1.42) (layer "F.CrtYd") (width 0.05) (tstamp 498a38a7-e6a5-4740-81ad-9bf20c96acdf))
(fp_line (start -5 12.98) (end -5 -1.42) (layer "F.CrtYd") (width 0.05) (tstamp 6cda4aa6-292e-4c56-adbd-a8576205eda0))
(fp_line (start 4.5 12.48) (end -4.5 12.48) (layer "F.Fab") (width 0.1) (tstamp 21d05a9e-aaf2-467d-acdb-85329d856cdb))
(fp_line (start 4.5 12.48) (end 4.5 2.08) (layer "F.Fab") (width 0.1) (tstamp 7ba84a25-5067-474c-8665-7fec82085c4d))
(fp_line (start 4.5 2.03) (end -4.5 2.03) (layer "F.Fab") (width 0.1) (tstamp 8208b30d-7b6f-4515-a85c-4ba9f8bfda19))
(fp_line (start 0 0) (end 0 2.03) (layer "F.Fab") (width 0.1) (tstamp ab1fb1a7-8c0c-47b7-b40a-ab1ba059eff6))
(fp_line (start -4.5 12.48) (end -4.5 2.08) (layer "F.Fab") (width 0.1) (tstamp f9888b06-91f5-40c5-a19a-22cbf5469429))
(fp_circle (center 0 6.48) (end 1.8 6.48) (layer "F.Fab") (width 0.1) (fill none) (tstamp 4c5df714-8a59-4ef3-b00c-941dbbde5a55))
(pad "S" thru_hole rect (at 0 0) (size 1.93 1.83) (drill 1.22) (layers *.Cu *.Mask)
(net 8 "GND") (pintype "passive") (tstamp 0a4670fe-f411-47c9-8912-2ac7b841eb8f))
(pad "T" thru_hole circle (at 0 11.4) (size 2.13 2.13) (drill 1.43) (layers *.Cu *.Mask)
(net 40 "/AUDIO_IN_ATT") (pintype "passive") (tstamp af320632-c513-441a-b40e-50fa08329b03))
(pad "TN" thru_hole circle (at 0 3.1) (size 2.13 2.13) (drill 1.42) (layers *.Cu *.Mask)
(net 8 "GND") (pintype "passive") (tstamp 3e9e4ee7-98c0-4519-9607-cdedca5c2e75))
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp 8db1f1e4-51b0-41fd-9628-fdb76c0c1b47) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.254)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed ) (copperpour not_allowed) (footprints not_allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 56.914859 128.84)
(xy 56.93507 129.085829)
(xy 56.995159 129.325055)
(xy 57.093514 129.551256)
(xy 57.227492 129.758355)
(xy 57.393496 129.94079)
(xy 57.587068 130.093664)
(xy 57.803008 130.212869)
(xy 58.035518 130.295206)
(xy 58.278354 130.338461)
(xy 58.524993 130.341475)
(xy 58.768813 130.304165)
(xy 59.003266 130.227534)
(xy 59.222054 130.11364)
(xy 59.419303 129.965542)
(xy 59.589714 129.787216)
(xy 59.728712 129.583452)
(xy 59.832564 129.359722)
(xy 59.898481 129.122035)
(xy 59.924692 128.876774)
(xy 59.910493 128.630525)
(xy 59.856266 128.389901)
(xy 59.763468 128.161366)
(xy 59.634589 127.951055)
(xy 59.473092 127.764618)
(xy 59.283313 127.607061)
(xy 59.07035 127.482615)
(xy 58.839921 127.394623)
(xy 58.598215 127.345447)
(xy 58.351722 127.336408)
(xy 58.107064 127.36775)
(xy 57.870809 127.43863)
(xy 57.649303 127.547144)
(xy 57.448495 127.690379)
(xy 57.273777 127.864488)
(xy 57.129842 128.064795)
(xy 57.020555 128.285921)
(xy 56.948851 128.521926)
(xy 56.916656 128.766474)
)
)
)
(model "${KICAD6_3DMODEL_DIR}/Connector_Audio.3dshapes/Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 5a2a0402-6b8e-4006-951f-462ab3503fae)
(at 87.67 33.655)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf")
(tags "C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.0mm Capacitor")
(property "Sheetfile" "VCF.kicad_sch")
(property "Sheetname" "")
(path "/e1363fec-57a1-4cca-beb1-be204e8ca0d7")
(attr through_hole)
(fp_text reference "C9" (at 2.5 -2.75) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 037fbe34-29f1-49e2-97c0-0194ace455c9)
)
(fp_text value "100nF" (at 2.5 2.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df5e0e9b-948a-4723-81de-fdd7f411efcb)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c2855f7b-12a3-4a45-b848-9054d0d635fa)
)
(fp_line (start -1.22 -1.62) (end -1.22 1.62) (layer "F.SilkS") (width 0.12) (tstamp 6af63cb9-38ad-4957-afb5-d2aa24c0c37f))
(fp_line (start -1.22 -1.62) (end 6.22 -1.62) (layer "F.SilkS") (width 0.12) (tstamp ab46d9e4-1b7c-4140-8d05-1e83728fe6e7))
(fp_line (start 6.22 -1.62) (end 6.22 1.62) (layer "F.SilkS") (width 0.12) (tstamp c20f2618-cebc-4f71-8376-ee58887503f3))
(fp_line (start -1.22 1.62) (end 6.22 1.62) (layer "F.SilkS") (width 0.12) (tstamp cfa9f61e-4d39-4984-bebf-88f1bee3b095))
(fp_line (start -1.35 1.75) (end 6.35 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 0e058096-e85a-4667-81d8-6080b0a9d36f))
(fp_line (start 6.35 -1.75) (end -1.35 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 16bfe7f4-feb4-4a88-b924-10d749c0a07c))
(fp_line (start -1.35 -1.75) (end -1.35 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 94562763-0e53-4e62-b74b-85f9bf3d61fb))
(fp_line (start 6.35 1.75) (end 6.35 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp ccd965c4-4da1-41b5-be01-8b33a0b73d57))
(fp_line (start -1.1 -1.5) (end -1.1 1.5) (layer "F.Fab") (width 0.1) (tstamp 014aeb95-5d10-415c-b7ad-19f28263c267))
(fp_line (start 6.1 1.5) (end 6.1 -1.5) (layer "F.Fab") (width 0.1) (tstamp 5624179e-d01e-467b-8573-e5f6fb66b922))
(fp_line (start 6.1 -1.5) (end -1.1 -1.5) (layer "F.Fab") (width 0.1) (tstamp 63afb8da-76ab-4a92-9b04-478348d9d612))
(fp_line (start -1.1 1.5) (end 6.1 1.5) (layer "F.Fab") (width 0.1) (tstamp 6af465c9-2248-470d-9f56-7730f0ca0f87))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "GND") (pintype "passive") (tstamp 610a7ef5-f69d-40f6-aaa5-5f4bb18252d5))
(pad "2" thru_hole circle (at 5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "-12V") (pintype "passive") (tstamp 9bf60679-962d-4e6e-a2f0-9cdccd0dd380))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 70c677e0-82a5-42c0-b376-519303f0a826)
(at 99.314 135.128 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "VCF.kicad_sch")
(property "Sheetname" "")
(path "/efab3cbd-b9f9-444d-8795-95c59a5e624f")
(attr through_hole)
(fp_text reference "R10" (at 5.08 -2.37 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a6e1a311-bd30-4bac-b229-057a0f56ab02)
)
(fp_text value "15k" (at 5.08 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8f1a14c5-0908-4cee-a0ae-560ce6c2d923)
)
(fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 718bada7-58b5-497c-b465-2cb6e238be63)
)
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 01bd819c-f25d-47df-a965-a7082e3de990))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 1c01f874-90d8-4fa0-bb73-7878e8cc0c22))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 39d34795-2154-469d-9dc7-5c043b52d65b))
(fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 53c8a5e0-b722-4e54-bb3e-e53a50ea0c66))
(fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 8eae87ce-755d-45a4-b9dd-fe30756260a9))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp f611e4a8-9fe5-47c9-a257-88519f7398f8))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 40dbc888-740e-4e0e-acda-956f32c9367f))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 480607d4-bc03-4f8e-a2ef-131db7dca563))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp b24db56a-3482-4aa1-81d8-e939006a3539))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp b5dd7c36-e161-4ada-af54-9d721950f29f))
(fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 036a9ecd-b921-4b5d-b047-d2c1fb5006ae))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 1d001d04-2286-44e6-9ab0-8dcf930090c2))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 57a1f504-6eda-4660-ace1-495ef9488ed8))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 5a4aee5d-9d11-4f8e-9394-89cfc78f8a52))
(fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 819b75c8-db32-4771-afe6-9ffee0d0f64a))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp c1e051ed-44b3-4105-9ecb-dfbfd1b46d61))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "/BP_OUT") (pintype "passive") (tstamp ff0a3c6d-6c70-4676-b9da-9894f5144c71))
(pad "2" thru_hole oval (at 10.16 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 "Net-(R10-Pad2)") (pintype "passive") (tstamp e9368084-97c4-44ea-a1ae-9379c8695134))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 940cc667-8a22-4094-beac-ea5b462552b8)
(at 83.82 40.64 -90)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf")
(tags "C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.0mm Capacitor")
(property "Sheetfile" "VCF.kicad_sch")
(property "Sheetname" "")
(path "/206da8bd-00bb-4f48-ba05-9f2108b4e209")
(attr through_hole)
(fp_text reference "C11" (at 2.5 -2.75 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 75fc6da8-1bca-42e2-baf7-15d09c37924c)
)
(fp_text value "100nF" (at 2.5 2.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 222f1097-9ca3-48ba-ae88-e97536ca9044)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d3bb0ebf-a880-4448-a515-ed0f726b57af)
)
(fp_line (start -1.22 -1.62) (end -1.22 1.62) (layer "F.SilkS") (width 0.12) (tstamp 2696ff73-3d2a-4f49-bf0a-74ccb5bbacb5))
(fp_line (start 6.22 -1.62) (end 6.22 1.62) (layer "F.SilkS") (width 0.12) (tstamp 479acb0f-6a59-4882-8673-228e227962b9))
(fp_line (start -1.22 -1.62) (end 6.22 -1.62) (layer "F.SilkS") (width 0.12) (tstamp 8f8e6c29-69d8-48c9-9298-7761bc34d172))
(fp_line (start -1.22 1.62) (end 6.22 1.62) (layer "F.SilkS") (width 0.12) (tstamp dd29bf0d-4c2a-4504-969a-f689931da4b4))
(fp_line (start 6.35 1.75) (end 6.35 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 1ff71e7e-cb65-444d-9c41-70b6f6a46f05))
(fp_line (start 6.35 -1.75) (end -1.35 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 2cd70e16-3718-43f6-b8de-4b8d0ad15e23))
(fp_line (start -1.35 1.75) (end 6.35 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 3fcbcb29-8b70-4542-beee-0d60c2f29c42))
(fp_line (start -1.35 -1.75) (end -1.35 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 5b8fbec1-b4de-4ff0-89dc-38bb0f2bcbdc))
(fp_line (start 6.1 -1.5) (end -1.1 -1.5) (layer "F.Fab") (width 0.1) (tstamp 7a9de978-9655-4389-aa80-d749d6e17e65))
(fp_line (start -1.1 -1.5) (end -1.1 1.5) (layer "F.Fab") (width 0.1) (tstamp 8b8b41ce-eea8-4f86-99f1-78460c3c467e))
(fp_line (start 6.1 1.5) (end 6.1 -1.5) (layer "F.Fab") (width 0.1) (tstamp 9d0adb7b-6fd8-45f6-ab83-b5262525f0f4))
(fp_line (start -1.1 1.5) (end 6.1 1.5) (layer "F.Fab") (width 0.1) (tstamp b85427ae-2a74-4bb6-8742-44c5695204dd))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "GND") (pintype "passive") (tstamp aa918bde-9f38-4cd6-9cad-f9be5ed33ebe))
(pad "2" thru_hole circle (at 5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "-12V") (pintype "passive") (tstamp 7e44d607-a260-41fe-8033-fdecf4222163))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 9a0b9ca5-20c6-436a-999a-1e495e379b67)
(at 53.34 43.18 90)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf")
(tags "C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.0mm Capacitor")
(property "Sheetfile" "VCF.kicad_sch")
(property "Sheetname" "")
(path "/1a0be690-72c8-4689-bca6-294a4067b244")
(attr through_hole)
(fp_text reference "C13" (at 2.5 -2.75 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a2fdfbb2-ae93-424c-930c-28b8501b4c52)
)
(fp_text value "100nF" (at 2.5 2.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 44e8edf0-fe5e-4e86-ad71-a7078f14c0e4)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8c693a55-0387-49ea-bf50-7a30df49d275)
)
(fp_line (start -1.22 -1.62) (end 6.22 -1.62) (layer "F.SilkS") (width 0.12) (tstamp 1ad11ede-402f-41be-934f-6fafaf38db40))
(fp_line (start -1.22 -1.62) (end -1.22 1.62) (layer "F.SilkS") (width 0.12) (tstamp 4d210bc5-3447-488d-af69-4c894f65b0b8))
(fp_line (start -1.22 1.62) (end 6.22 1.62) (layer "F.SilkS") (width 0.12) (tstamp 68169daf-8377-4985-bc2c-b52e22df52e4))
(fp_line (start 6.22 -1.62) (end 6.22 1.62) (layer "F.SilkS") (width 0.12) (tstamp a8937003-ac1c-47b9-8d61-0840803cd656))
(fp_line (start 6.35 1.75) (end 6.35 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 0aa815f6-b479-442b-959f-7547837fc330))
(fp_line (start -1.35 1.75) (end 6.35 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 6eb32d30-4692-480b-9727-633d88e7c4fa))
(fp_line (start -1.35 -1.75) (end -1.35 1.75) (layer "F.CrtYd") (width 0.05) (tstamp c2ce56b9-dca2-4dd0-a80a-529c7ec37a07))
(fp_line (start 6.35 -1.75) (end -1.35 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp e85a508a-12d7-42b9-808d-fdf1ae12d01b))
(fp_line (start 6.1 -1.5) (end -1.1 -1.5) (layer "F.Fab") (width 0.1) (tstamp 10fcb9dd-a1e2-48e8-8b43-35163af34421))
(fp_line (start -1.1 -1.5) (end -1.1 1.5) (layer "F.Fab") (width 0.1) (tstamp 36dfe984-9799-4cd0-a8d6-2651cacae994))
(fp_line (start 6.1 1.5) (end 6.1 -1.5) (layer "F.Fab") (width 0.1) (tstamp 7cb17ec1-c192-4b3c-8316-2770e9e552bb))
(fp_line (start -1.1 1.5) (end 6.1 1.5) (layer "F.Fab") (width 0.1) (tstamp f7294532-2dea-4d9c-80fd-4e6d6c761fa8))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "GND") (pintype "passive") (tstamp 4b6e7a50-32d0-4864-8dd1-476880897840))
(pad "2" thru_hole circle (at 5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "-12V") (pintype "passive") (tstamp 6cfe03cf-3066-4698-95fe-d4f22b02bc43))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Potentiometer_THT:Potentiometer_Alpha_RD901F-40-00D_Single_Vertical_CircularHoles" (layer "F.Cu")
(tedit 5C6C6C48) (tstamp a9d1b439-7385-4445-9580-49b218cd8b15)
(at 55.92 112.405 90)
(descr "Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113")
(tags "potentiometer vertical 9mm single")
(property "Sheetfile" "VCF.kicad_sch")
(property "Sheetname" "")
(path "/c0dd709a-69c5-4abe-a998-4f56fd52190e")
(attr through_hole)
(fp_text reference "RV1" (at 6.45 -4.8 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef2aa741-a227-43cd-8958-e588fcef4d95)
)
(fp_text value "100k" (at 3.556 10.11 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d1eceda3-0ea7-4375-9720-88cbaba9342f)
)
(fp_text user "${REFERENCE}" (at 7.5 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ee0e1ba7-86d6-4ce8-a9c6-08c25ada879b)
)
(fp_line (start 9.41 -2.37) (end 12.47 -2.37) (layer "F.SilkS") (width 0.12) (tstamp 04d2dc71-f2b3-4df6-aa06-2513a63516f6))
(fp_line (start 0.88 -2.38) (end 5.6 -2.38) (layer "F.SilkS") (width 0.12) (tstamp 18b41658-5ece-4808-988e-0051ad71935a))
(fp_line (start 0.88 -1.19) (end 0.88 -2.37) (layer "F.SilkS") (width 0.12) (tstamp 18eae5f1-5c11-40ae-b37b-3b94d6a93e83))
(fp_line (start 0.88 4.16) (end 0.88 3.33) (layer "F.SilkS") (width 0.12) (tstamp 397ab8e4-d17a-4b9f-b47a-46dc74066b44))
(fp_line (start 12.47 7.37) (end 12.47 -2.37) (layer "F.SilkS") (width 0.12) (tstamp 4b0b6d78-9fc3-4688-a82f-64747fd461f5))
(fp_line (start 0.88 1.71) (end 0.88 1.18) (layer "F.SilkS") (width 0.12) (tstamp 72528199-b753-4d08-8029-67af810e31d2))
(fp_line (start 0.88 7.37) (end 0.88 5.88) (layer "F.SilkS") (width 0.12) (tstamp 8b998727-a745-4c3b-80c6-b0bbfd615c9f))
(fp_line (start 0.88 7.37) (end 5.6 7.37) (layer "F.SilkS") (width 0.12) (tstamp 8e0f0b93-c9fd-4501-ad6b-63b86802fbaa))
(fp_line (start 9.41 7.37) (end 12.47 7.37) (layer "F.SilkS") (width 0.12) (tstamp 9c113543-eb51-4d28-b82c-914d126cf16c))
(fp_line (start -1.15 -4.17) (end -1.15 9.17) (layer "F.CrtYd") (width 0.05) (tstamp 527dc086-a9bb-4903-8efe-b713cb7ed221))
(fp_line (start 12.6 9.17) (end 12.6 -4.17) (layer "F.CrtYd") (width 0.05) (tstamp 6a3c2b7b-0075-4ec8-8572-53ee4487ff9f))
(fp_line (start 12.6 -4.17) (end -1.15 -4.17) (layer "F.CrtYd") (width 0.05) (tstamp b68dde6e-ae88-4289-841e-832f9a23b672))
(fp_line (start -1.15 9.17) (end 12.6 9.17) (layer "F.CrtYd") (width 0.05) (tstamp c3ae1ab9-bdd5-4136-9bf3-f241d7eb32a3))
(fp_line (start 1 7.25) (end 1 -2.25) (layer "F.Fab") (width 0.1) (tstamp 2903433d-1fd5-40f5-ad1c-90e25b9c9a44))
(fp_line (start 12.35 7.25) (end 12.35 -2.25) (layer "F.Fab") (width 0.1) (tstamp 522a10a9-9cea-4c10-bd6d-df12ae88d460))
(fp_line (start 1 7.25) (end 12.35 7.25) (layer "F.Fab") (width 0.1) (tstamp 9b490e66-ed3b-4bf7-84eb-535cd41dfcca))
(fp_line (start 1 -2.25) (end 12.35 -2.25) (layer "F.Fab") (width 0.1) (tstamp b2fc65ae-b9a2-4e7e-a173-6708b3a8a7e3))
(fp_circle (center 7.5 2.5) (end 7.5 -1) (layer "F.Fab") (width 0.1) (fill none) (tstamp c87a7f46-7531-4a55-a758-b9698bbfd488))
(pad "" thru_hole circle (at 7.5 7.3 180) (size 3.24 3.24) (drill 1.8) (layers *.Cu *.Mask) (tstamp 3424e832-226b-4e4d-938c-8e41c254c0d7))
(pad "" thru_hole circle (at 7.5 -2.3 180) (size 3.24 3.24) (drill 1.8) (layers *.Cu *.Mask) (tstamp e30b1ea7-3c1c-4110-abd9-9c65de24ea79))
(pad "1" thru_hole rect (at 0 0 180) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 34 "/FREQ_CV_IN") (pinfunction "1") (pintype "passive") (tstamp 293390ce-5641-4586-a001-2b3eb0cce8f3))
(pad "2" thru_hole circle (at 0 2.5 180) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 29 "Net-(R22-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 8427a678-834d-472e-b91b-7713dfacda80))
(pad "3" thru_hole circle (at 0 5 180) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "3") (pintype "passive") (tstamp 8c2c42ea-91b4-4955-bc6e-a726b396013e))
(model "${KICAD6_3DMODEL_DIR}/Potentiometer_THT.3dshapes/Potentiometer_Alpha_RD901F-40-00D_Single_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp acdcc754-ea4b-4554-9a30-0457d4fc8203)
(at 57.5 54)