-
Notifications
You must be signed in to change notification settings - Fork 0
/
3340_vco.kicad_pcb
20118 lines (20042 loc) · 848 KB
/
3340_vco.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 20221018) (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)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(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 true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers/")
)
)
(net 0 "")
(net 1 "+12V")
(net 2 "GND")
(net 3 "-12V")
(net 4 "Net-(C5-Pad2)")
(net 5 "Net-(C6-Pad2)")
(net 6 "Net-(U1-CAP)")
(net 7 "Net-(SW2-B)")
(net 8 "Net-(C13-Pad1)")
(net 9 "Net-(C13-Pad2)")
(net 10 "Net-(D1-K)")
(net 11 "Net-(R1-Pad1)")
(net 12 "Net-(U1-SCALE1)")
(net 13 "Net-(U1-VEE)")
(net 14 "Net-(U1-SCALE2)")
(net 15 "Net-(U1-VS)")
(net 16 "Net-(R4-Pad1)")
(net 17 "Net-(U1-VFCI)")
(net 18 "SOFT SYNC IN")
(net 19 "Net-(R6-Pad1)")
(net 20 "Net-(SW1-B)")
(net 21 "Net-(R8-Pad1)")
(net 22 "Net-(R10-Pad2)")
(net 23 "Net-(U1-VLFI)")
(net 24 "Net-(U2D--)")
(net 25 "Net-(R15-Pad1)")
(net 26 "POS HARD SYNC IN")
(net 27 "Net-(U2A--)")
(net 28 "NEG HARD SYNC IN")
(net 29 "Net-(R18-Pad1)")
(net 30 "Net-(U2C--)")
(net 31 "Net-(U1-VPWM)")
(net 32 "Net-(U2B-+)")
(net 33 "Net-(U1-VP)")
(net 34 "Net-(U2B--)")
(net 35 "Net-(D3-K)")
(net 36 "Net-(SW1-C)")
(net 37 "Net-(D3-A)")
(net 38 "Net-(D4-K)")
(net 39 "Net-(D4-A)")
(net 40 "Net-(U1-VHFT)")
(net 41 "Net-(U1-VSO)")
(net 42 "Net-(U1-VTO)")
(net 43 "1V{slash}OCT IN")
(net 44 "FM IN")
(net 45 "CV2 IN")
(net 46 "SQ OUT")
(net 47 "unconnected-(J9-PadTN)")
(net 48 "TRI OUT")
(net 49 "unconnected-(J10-PadTN)")
(net 50 "SAW OUT")
(net 51 "unconnected-(J11-PadTN)")
(net 52 "EXT PWM CONTROL IN")
(net 53 "Net-(J12-PadTN)")
(net 54 "Net-(R17-Pad1)")
(net 55 "Net-(U2A-+)")
(net 56 "SYNC IN")
(net 57 "Net-(JP1-C)")
(footprint "Package_DIP:DIP-14_W7.62mm_Socket" (layer "F.Cu")
(tstamp 042de22d-4896-4eb6-9290-bcc70bbb1ed7)
(at 230.9368 43.249)
(descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket")
(property "Sheetfile" "3340_vco.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Quad Low-Noise JFET-Input Operational Amplifiers, DIP-14/SOIC-14")
(property "ki_keywords" "quad opamp")
(path "/f5d25d9b-8fad-4c3e-9594-106b289b1fee")
(attr through_hole)
(fp_text reference "U2" (at 3.81 2.751) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d79b549-837f-4446-a319-29ac758e0bd8)
)
(fp_text value "TL074" (at 4.0632 12.001) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6ebbe5fb-d8c2-455b-a763-3df8eb60090e)
)
(fp_text user "${REFERENCE}" (at 3.81 7.62) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19c7c8cf-f0b3-4e4f-a9d3-09216a0f7871)
)
(fp_line (start -1.33 -1.39) (end -1.33 16.63)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e569c7f9-0ee6-4bf3-b73e-e81d1afad538))
(fp_line (start -1.33 16.63) (end 8.95 16.63)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 667ec09a-eab2-4d19-bece-1c6253613801))
(fp_line (start 1.16 -1.33) (end 1.16 16.57)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3b1e4ace-fdf6-446b-bd8a-3974a595574a))
(fp_line (start 1.16 16.57) (end 6.46 16.57)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 410c2838-aac0-43ba-b81c-35f6ed044607))
(fp_line (start 2.81 -1.33) (end 1.16 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 583a6b4a-c3bc-4635-b2c5-22ed28a56dda))
(fp_line (start 6.46 -1.33) (end 4.81 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 834f0efa-29dc-4f50-8110-a70db01ffc4e))
(fp_line (start 6.46 16.57) (end 6.46 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d519593b-c481-491b-8028-598337ac4ee3))
(fp_line (start 8.95 -1.39) (end -1.33 -1.39)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ac2af3f-2be6-4e89-8b01-f4433431537d))
(fp_line (start 8.95 16.63) (end 8.95 -1.39)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dcbb169e-2dbf-4c6b-9903-54f8c880c26f))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 42931bda-287a-4f89-859f-fa2ec57e93c0))
(fp_line (start -1.55 -1.6) (end -1.55 16.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1a36e2e2-4d92-4bf9-9b0a-2feeec5518d6))
(fp_line (start -1.55 16.85) (end 9.15 16.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7fe4a4d2-be12-4039-846a-61425885b467))
(fp_line (start 9.15 -1.6) (end -1.55 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c7c2eccb-f8ee-4f00-a7a8-ac48c3c589e6))
(fp_line (start 9.15 16.85) (end 9.15 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp babc14b4-c70d-40e6-beec-9ad0e568f7c3))
(fp_line (start -1.27 -1.33) (end -1.27 16.57)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 35e85a21-943a-422b-b916-0bacf8889bb0))
(fp_line (start -1.27 16.57) (end 8.89 16.57)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 951401cc-3810-41ff-8d0e-9b5118885d43))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3350fa5e-d282-4fe0-aa1b-cea45a604e1e))
(fp_line (start 0.635 16.51) (end 0.635 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e735dedc-5222-4c73-8a7f-998d4a48b4a5))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 22a91991-0994-4e53-9869-dc2d827fd693))
(fp_line (start 6.985 -1.27) (end 6.985 16.51)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2ed4dd15-948e-4e90-834f-02423a2ebe40))
(fp_line (start 6.985 16.51) (end 0.635 16.51)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e4919eda-b407-4989-91ef-f27d88ec1068))
(fp_line (start 8.89 -1.33) (end -1.27 -1.33)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5462784e-44f1-49e8-af3c-8b0e148bfd7d))
(fp_line (start 8.89 16.57) (end 8.89 -1.33)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5e4297a9-1ec5-4ca6-a697-3afcaa82d5f9))
(pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 54 "Net-(R17-Pad1)") (pintype "output") (tstamp ecf73f84-38ef-4bd1-816a-02edbabf4c9c))
(pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 27 "Net-(U2A--)") (pinfunction "-") (pintype "input") (tstamp 8ae7d706-4ecc-4e08-bcc3-e02edfb43831))
(pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 55 "Net-(U2A-+)") (pinfunction "+") (pintype "input") (tstamp a081e8db-5369-40da-bd13-9369b2d4f55e))
(pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "+12V") (pinfunction "V+") (pintype "power_in") (tstamp 7255ecb8-e783-4d66-9f71-26a811ced72b))
(pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 32 "Net-(U2B-+)") (pinfunction "+") (pintype "input") (tstamp ec39f997-79e6-45d4-acc7-82e038fd007a))
(pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 34 "Net-(U2B--)") (pinfunction "-") (pintype "input") (tstamp 0eef6aa0-861c-43a4-81bb-cfdd10542d60))
(pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 34 "Net-(U2B--)") (pintype "output") (tstamp e8b9414d-4433-4380-bab8-fc7a1fc90aaa))
(pad "8" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 30 "Net-(U2C--)") (pintype "output") (tstamp 1849d067-5c0c-419a-8496-2f4bb1ef1310))
(pad "9" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 30 "Net-(U2C--)") (pinfunction "-") (pintype "input") (tstamp 8bc0048a-8da4-4e79-b3c3-9be375611c45))
(pad "10" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 52 "EXT PWM CONTROL IN") (pinfunction "+") (pintype "input") (tstamp 482dd47e-f166-4423-b5c2-67dca0bf70b9))
(pad "11" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 3 "-12V") (pinfunction "V-") (pintype "power_in") (tstamp 465b9594-0770-46fb-b44f-4d626827bbb6))
(pad "12" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 42 "Net-(U1-VTO)") (pinfunction "+") (pintype "input") (tstamp 092e1028-c96a-4b7e-988b-dc4924b3c361))
(pad "13" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 24 "Net-(U2D--)") (pinfunction "-") (pintype "input") (tstamp e21dc2ad-ce2f-487a-a3de-9d94d4a55c53))
(pad "14" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 25 "Net-(R15-Pad1)") (pintype "output") (tstamp ab39fcf9-6fe8-42fd-9557-c8cbb1fc7ae3))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-14_W7.62mm_Socket.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_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 08bdd0b5-00d8-4cf9-b586-6c11efff4602)
(at 235.966 61.7982)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "3340_vco.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/48e3043f-d1b0-43cf-a2ee-307266876650")
(attr through_hole)
(fp_text reference "R26" (at 1.284 2.2018) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e65b379a-eead-4608-af12-285dc25a082a)
)
(fp_text value "10k" (at 1.27 3.4518) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 965b2220-820a-4def-9012-3731b2a83d9e)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b4efa0f8-b1d8-4858-a50c-af2f5d41df3a)
)
(fp_line (start 1.37 0) (end 1.44 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9c8083cf-2cd6-4c5c-b852-de26f135b7ef))
(fp_circle (center 0 0) (end 1.37 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp eac7dc4b-d339-45f0-80e6-d08bfbf9cd22))
(fp_line (start -1.5 -1.5) (end -1.5 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7b3e3e97-ffeb-4cce-8a4d-dbff65902b54))
(fp_line (start -1.5 1.5) (end 3.59 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 06fd7341-1389-467f-a22b-ee1a131c4cf6))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d143e315-e7f3-4c45-95d5-b6448a5b2f9d))
(fp_line (start 3.59 1.5) (end 3.59 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp baabdff2-19b5-4d2a-be9d-de42d7089562))
(fp_line (start 0 0) (end 2.54 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 800524ad-9001-45b8-9360-4cd9c79dd3ae))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 5d5ed43b-6b7c-4b52-9895-abe5aa4a5fff))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pintype "passive") (tstamp 50d25957-b684-4b20-8a7a-43bc11bd16e9))
(pad "2" thru_hole oval (at 2.54 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 28 "NEG HARD SYNC IN") (pintype "passive") (tstamp 952e3a0c-662a-4758-84e1-b6a8e0a1991b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_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_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 094dcf6f-4921-444f-aeb9-29e769b46369)
(at 218.6686 79.2226)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "3340_vco.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/4b8a075a-e990-4e19-9d4c-4654e3132a50")
(attr through_hole)
(fp_text reference "R29" (at 2.3314 1.5274) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6078d084-330a-4acb-8bd8-858a8e3ed0cd)
)
(fp_text value "10" (at 1.27 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 48307292-629c-4585-90a2-674cc4edf94c)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 790be8e5-3346-41fa-a755-97ec1eef6f8b)
)
(fp_line (start 1.37 0) (end 1.44 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9acd4ad0-04b9-40e1-9e45-7d05f765fd2e))
(fp_circle (center 0 0) (end 1.37 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 36e4b516-1ee0-443f-9e0f-98507e8d3444))
(fp_line (start -1.5 -1.5) (end -1.5 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5a68d16b-48da-46f4-aafc-54771d1f3b5e))
(fp_line (start -1.5 1.5) (end 3.59 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9870809e-bd95-417b-b9b9-9707b5aecd48))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d0575725-bed5-478b-925b-481b40aca8fd))
(fp_line (start 3.59 1.5) (end 3.59 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7e1627af-1839-4b57-8b97-2a2cb7d07e48))
(fp_line (start 0 0) (end 2.54 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8fcc8fb3-dae7-4b4c-865c-a455851541f2))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp e95478c0-4829-4b19-b809-a3ad231a8843))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 35 "Net-(D3-K)") (pintype "passive") (tstamp 05edd7e6-f53d-4d7d-a669-2c184f13e313))
(pad "2" thru_hole oval (at 2.54 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "+12V") (pintype "passive") (tstamp d1b903ba-5de2-4578-a791-f0561b8d82d1))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_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_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 0bc50959-e79c-4108-bd44-4cd02a7ee2ab)
(at 224.4598 42.0116 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "3340_vco.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/289d20ce-fdbd-472d-9614-e45e4cee21dc")
(attr through_hole)
(fp_text reference "R10" (at 3.9884 -0.0402 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 52acdeeb-12eb-49d9-8813-12145e78b635)
)
(fp_text value "1M" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df84e74e-ce8a-45d7-8b89-b7f74dd68017)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6538ea9c-9e3d-4fac-b2a6-113af8ae441f)
)
(fp_line (start 1.37 0) (end 1.44 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1a26c1bb-9f8b-43ab-bfcf-73521c557b29))
(fp_circle (center 0 0) (end 1.37 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 861bd3f4-9d4f-4258-8b19-5d64f1d6fc5f))
(fp_line (start -1.5 -1.5) (end -1.5 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 222aec86-d54d-4308-9d5b-f52b44e307fe))
(fp_line (start -1.5 1.5) (end 3.59 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a81f55d-4526-4f92-8539-26a775b6c4b4))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ced8682d-b459-4728-b467-85123fc4e083))
(fp_line (start 3.59 1.5) (end 3.59 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 32340ab6-5298-45bf-abca-8f559ab8405b))
(fp_line (start 0 0) (end 2.54 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 21ad612a-3c07-4e9f-9180-0f01bf3d446b))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 2d16b2be-7054-47b9-b498-2e4c38443c14))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 17 "Net-(U1-VFCI)") (pintype "passive") (tstamp 79e0385c-664d-4c75-839b-7333f68fea3c))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 22 "Net-(R10-Pad2)") (pintype "passive") (tstamp a2ccb80e-60c3-49f6-90b4-e70d789a2e4d))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_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_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 1457d9ec-3e26-48d5-a577-ed6846525dc8)
(at 227.6602 45.037801 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "3340_vco.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/21c1d3d4-9935-4d1e-a797-f2db95f9ca48")
(attr through_hole)
(fp_text reference "R8" (at 2.037801 1.3398 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 911a9cc8-9e63-4c84-877d-d57bce5b9037)
)
(fp_text value "3M3" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cbc38d59-118c-4068-8646-3eb1f948c818)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 604825ce-c97e-4e9f-80d7-54b40161ff1d)
)
(fp_line (start 1.37 0) (end 1.44 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 541a7894-9bc8-4cac-9349-5b4a18089de2))
(fp_circle (center 0 0) (end 1.37 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 7c1a6922-bdb1-4ce0-a577-31bfb780d4d4))
(fp_line (start -1.5 -1.5) (end -1.5 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1c707e2d-a96f-40d9-880a-ccbd0f6e71d0))
(fp_line (start -1.5 1.5) (end 3.59 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 32d9169c-c43f-4624-830f-e64d55e312df))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a48a151e-8c77-4236-9928-52d18ee0177e))
(fp_line (start 3.59 1.5) (end 3.59 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 587fdaf4-1cd8-473e-afc6-51a00105cd5f))
(fp_line (start 0 0) (end 2.54 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1f4bc0d9-321c-4075-b5c9-e6f41a0f01d9))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp b2e46ac5-9f7a-4f5c-b615-bb1de2ba24db))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 21 "Net-(R8-Pad1)") (pintype "passive") (tstamp 1848c1c3-957e-482a-b0a7-0fdfd71dc50c))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 17 "Net-(U1-VFCI)") (pintype "passive") (tstamp 84f47de6-02ac-4838-87da-31e5b3ced998))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_THT:D_DO-41_SOD81_P7.62mm_Horizontal" (layer "F.Cu")
(tstamp 178e99aa-b498-40fd-95fb-59103ce24328)
(at 215.3158 82.7278)
(descr "Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf")
(tags "Diode DO-41_SOD81 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm")
(property "Sheetfile" "3340_vco.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "40V 1A Schottky Barrier Rectifier Diode, DO-41")
(property "ki_keywords" "diode Schottky")
(path "/971274d2-ac4e-47c6-a8ec-ffa4452a6c0f")
(attr through_hole)
(fp_text reference "D3" (at 3.81 -2.47) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d750f61-fe85-4b25-ae3a-5a31c6646bb1)
)
(fp_text value "1N5819" (at 3.81 2.47) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7aacfdef-6d16-4285-9056-a91833d3a92c)
)
(fp_text user "${REFERENCE}" (at 4.2 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 856197b6-e2b6-4e2d-871d-e51e5fa3e7f3)
)
(fp_text user "K" (at 0 -2.1) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9b9b9061-a92a-4867-b6ac-9c875f72a22e)
)
(fp_text user "K" (at 0 -2.1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 82e8a562-ff54-443f-8474-5c51c8cc429d)
)
(fp_line (start 1.09 -1.47) (end 6.53 -1.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a8e7288-7d70-4e93-a2e5-2cf61a27a4a6))
(fp_line (start 1.09 -1.34) (end 1.09 -1.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7a75e814-fe0d-4a37-9cd3-a62bf47e8d24))
(fp_line (start 1.09 1.34) (end 1.09 1.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9996b212-91fe-44ca-827e-1d5ce76d7b34))
(fp_line (start 1.09 1.47) (end 6.53 1.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 65845dc9-d89b-4827-81c7-8fe0661048bc))
(fp_line (start 1.87 -1.47) (end 1.87 1.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7334d325-ca3a-4a93-91f1-096f2dc31acf))
(fp_line (start 1.99 -1.47) (end 1.99 1.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2e535e16-b2b6-4ccc-89b1-aab9616421d4))
(fp_line (start 2.11 -1.47) (end 2.11 1.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d63a6f99-fcb6-4dd9-b83c-8c99d6d037be))
(fp_line (start 6.53 -1.47) (end 6.53 -1.34)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c20ecf5e-7705-4d33-96ed-8ad567c96263))
(fp_line (start 6.53 1.47) (end 6.53 1.34)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 567ddf3a-2260-4897-8ada-48920ad99af0))
(fp_line (start -1.35 -1.6) (end -1.35 1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f8cc6b6e-1711-4f5c-aaca-52d499b753b0))
(fp_line (start -1.35 1.6) (end 8.97 1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bfdbca27-6071-4cd4-8d44-7fb37a8993da))
(fp_line (start 8.97 -1.6) (end -1.35 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5e6a1533-c37e-4872-b001-bd0dcbd5beae))
(fp_line (start 8.97 1.6) (end 8.97 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 68486fc6-6f93-4e8c-a301-652b9d2ff497))
(fp_line (start 0 0) (end 1.21 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cdfcb645-5fb8-4f3c-a006-aa9054634e7c))
(fp_line (start 1.21 -1.35) (end 1.21 1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 30378c10-2c93-49ed-9ca2-e9524f594989))
(fp_line (start 1.21 1.35) (end 6.41 1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 73be75bb-7b5b-4f0d-9ae9-24e0b27b53d3))
(fp_line (start 1.89 -1.35) (end 1.89 1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6c226ab4-361c-451e-a930-d24b46c0e2a4))
(fp_line (start 1.99 -1.35) (end 1.99 1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 09bc0b2e-df71-400e-a423-940538adfbc7))
(fp_line (start 2.09 -1.35) (end 2.09 1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 20359127-0cb4-4a82-97c3-6836dfe65038))
(fp_line (start 6.41 -1.35) (end 1.21 -1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 30054a07-3d51-4aa3-8efe-d905bf2ef502))
(fp_line (start 6.41 1.35) (end 6.41 -1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 56de3b2b-4da9-49e8-9a02-7e844c1056bd))
(fp_line (start 7.62 0) (end 6.41 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 75f0727f-413e-4f2c-a7b6-a60f359e66e2))
(pad "1" thru_hole rect (at 0 0) (size 2.2 2.2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 35 "Net-(D3-K)") (pinfunction "K") (pintype "passive") (tstamp 55f2ae0b-a6d1-4780-9536-a9872698ea4b))
(pad "2" thru_hole oval (at 7.62 0) (size 2.2 2.2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 37 "Net-(D3-A)") (pinfunction "A") (pintype "passive") (tstamp a1764a39-66dd-4ee1-88a2-cce5695d342a))
(model "${KICAD6_3DMODEL_DIR}/Diode_THT.3dshapes/D_DO-41_SOD81_P7.62mm_Horizontal.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_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 18bc71e3-022d-41e4-95ac-d6b84a1a865e)
(at 221.1324 61.6494 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "3340_vco.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/2bb301ce-3a08-4676-bb3d-6bc860f8b8c1")
(attr through_hole)
(fp_text reference "R27" (at -1.8506 0.1176 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 80fc81fe-c3cc-48d6-8695-1c4a410557b7)
)
(fp_text value "100k" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa17f258-8934-4e85-a60f-964085b392b3)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c1fd45c3-d5ba-45e9-a324-f378a5591c2e)
)
(fp_line (start 1.37 0) (end 1.44 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0ad87fa2-8123-495e-871b-8f0a98aefb1e))
(fp_circle (center 0 0) (end 1.37 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 7c8d9cd3-951f-47a9-8b25-443073fe4763))
(fp_line (start -1.5 -1.5) (end -1.5 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ca4e77cf-5bf1-4a09-bc99-5714890124b8))
(fp_line (start -1.5 1.5) (end 3.59 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e5dd8dc8-0b8c-4de0-8170-5f4698cde2c8))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1f75dedd-437d-4250-b720-ef27c87191ab))
(fp_line (start 3.59 1.5) (end 3.59 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 99060a24-5857-4fa4-8eae-dd1635b1f7ea))
(fp_line (start 0 0) (end 2.54 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d4b3dac8-da0d-430d-866c-52c56c5c4da7))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 36a85154-f4e5-4855-ab56-8043d91793c5))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 41 "Net-(U1-VSO)") (pintype "passive") (tstamp bf1fed0e-7b5c-4dd8-a7e9-54dc309152f1))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 55 "Net-(U2A-+)") (pintype "passive") (tstamp 9143cd25-e7e7-4e24-ad7a-f6ae952b6dcb))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_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_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 2187b054-bd70-412b-9512-3ef40b8c371c)
(at 221.2848 55.372 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "3340_vco.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/013a7288-5f09-420b-814e-80d9d5008dcd")
(attr through_hole)
(fp_text reference "R11" (at -1.878 -0.0348 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 23455079-eb8c-4304-83df-f45b18e30f2e)
)
(fp_text value "1M2" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 71118156-12fe-4dec-878c-b132bfcd137a)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 59b5f97c-b1fd-45a0-af0e-197762592474)
)
(fp_line (start 1.37 0) (end 1.44 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c7b09d32-4614-42d3-a71f-aa59e3024fe3))
(fp_circle (center 0 0) (end 1.37 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp d69ca431-bda2-4812-8bd6-62f7e3c35d90))
(fp_line (start -1.5 -1.5) (end -1.5 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5e94ad53-aaeb-4404-b081-f4a802b56f0a))
(fp_line (start -1.5 1.5) (end 3.59 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b3632954-1cee-4e84-ba0d-a48a743d67eb))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 03312db8-a283-400a-884c-12f96900cbac))
(fp_line (start 3.59 1.5) (end 3.59 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b5459057-2514-43f2-8ffd-a15a54a39873))
(fp_line (start 0 0) (end 2.54 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 107da455-2d8f-4e75-af4c-b4ff52b064ef))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 07a6bd5b-586d-484f-8e24-48642f2437ce))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "+12V") (pintype "passive") (tstamp 2de47ef6-15fe-4587-87f1-6f2f9f25860d))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 23 "Net-(U1-VLFI)") (pintype "passive") (tstamp f215b9a6-2c39-4781-be5b-5467553567cb))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D6.0mm_W2.5mm_P5.00mm" (layer "F.Cu")
(tstamp 2bf474bc-9c82-4aee-aa4d-82ac48df7204)
(at 224.3074 62.9266 90)
(descr "C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf")
(tags "C Disc series Radial pin pitch 5.00mm diameter 6mm width 2.5mm Capacitor")
(property "Sheetfile" "3340_vco.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/bf832ad3-edc0-44d4-8af1-fa564a46ba72")
(attr through_hole)
(fp_text reference "C5" (at 2.5 -0.0574 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d28d188e-662c-439c-b4d9-6b55364b6d30)
)
(fp_text value "10nF" (at 2.5 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 33201404-0d03-45ae-8ec6-a22e0c1f2bbf)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 977aa34c-82fe-4669-8a19-1a1d2dbd1f6b)
)
(fp_line (start -0.62 -1.37) (end -0.62 -0.925)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4742d0e7-b7ea-4f42-8845-e461b62e9bcd))
(fp_line (start -0.62 -1.37) (end 5.62 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd761d89-2cad-4872-b3e5-688f27a99c57))
(fp_line (start -0.62 0.925) (end -0.62 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 182eee61-578a-464c-bb32-62927736342b))
(fp_line (start -0.62 1.37) (end 5.62 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c9fa977d-a811-4365-bbec-a0025d84755b))
(fp_line (start 5.62 -1.37) (end 5.62 -0.925)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3132fea2-91f3-46cf-bd71-a7fff000a5a7))
(fp_line (start 5.62 0.925) (end 5.62 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5093f4c4-6fb7-49b9-b220-1e878063326f))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c34153d8-f8de-490a-9ff6-b7502d9132f3))
(fp_line (start -1.05 1.5) (end 6.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dc4d50cd-df00-41bd-a829-aa691910d970))
(fp_line (start 6.05 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp deb05b7b-5af7-46c7-a07b-6d6797cb2e13))
(fp_line (start 6.05 1.5) (end 6.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b6210cbe-d6b7-4795-ad20-0716624fc60b))
(fp_line (start -0.5 -1.25) (end -0.5 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3cb32dec-2375-4a4b-8ccd-88db6004191b))
(fp_line (start -0.5 1.25) (end 5.5 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 65b41fc9-0554-44d8-b5a2-fcbe60de60a2))
(fp_line (start 5.5 -1.25) (end -0.5 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 96a2560a-91ef-488a-8869-5b621a04f5e6))
(fp_line (start 5.5 1.25) (end 5.5 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c196cacb-88a9-4016-89ef-a8c11ab4ac1f))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pintype "passive") (tstamp b5e3a7b2-bb1b-497e-ab10-e27c5b4897fc))
(pad "2" thru_hole circle (at 5 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 4 "Net-(C5-Pad2)") (pintype "passive") (tstamp 61134fdd-41b4-44a5-ad06-1a3e2d5a0952))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D6.0mm_W2.5mm_P5.00mm.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_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 30e6e495-b294-4d04-8fef-a13eb04073ef)
(at 204.872799 53.771799)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "3340_vco.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/1d573e0d-da69-4c43-a5c7-d600a52d8a8e")
(attr through_hole)
(fp_text reference "R2" (at -0.372799 1.978201) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 51cc2c83-5a5f-4221-8eb8-db175e265ca4)
)
(fp_text value "5k6" (at 1.27 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ec251c2a-18af-4669-b66b-6d2afb1753e8)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ac9bb031-e90f-4abb-846b-8e196ffbcb3e)
)
(fp_line (start 1.37 0) (end 1.44 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b18d5eea-8746-44ef-af24-d995b4ca84e1))
(fp_circle (center 0 0) (end 1.37 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp c7aa199b-c570-4a50-9dd9-1608452e5685))
(fp_line (start -1.5 -1.5) (end -1.5 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bfc99749-4043-4b61-a88e-f30aa58b6702))
(fp_line (start -1.5 1.5) (end 3.59 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a96bc222-ebc0-49ee-bc0e-ff0968b288bd))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d0bcc66-093a-46fd-9be5-35f7090bced1))
(fp_line (start 3.59 1.5) (end 3.59 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 44eb910e-df49-44b6-98d6-f9112b2a8dc9))
(fp_line (start 0 0) (end 2.54 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d30a989-00bb-4efd-9159-238b0e073863))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 1d2bb70f-ba7d-42fd-8895-41d91fb22d15))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 13 "Net-(U1-VEE)") (pintype "passive") (tstamp bc324ac4-1d97-49c3-8918-77033121c870))
(pad "2" thru_hole oval (at 2.54 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 14 "Net-(U1-SCALE2)") (pintype "passive") (tstamp e11e3a1b-bb45-4bb5-b0ec-949b0b70c7b7))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-16_W7.62mm_Socket" (layer "F.Cu")
(tstamp 3293cc78-ae58-47db-bbe8-0fc40d568be1)
(at 210.312 42.1894)
(descr "16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket")
(property "Sheetfile" "3340_vco.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Voltage Controlled Oscillator (VCO), DIP-16/SOIC-16")
(property "ki_keywords" "VCO CEM340 ALFA")
(path "/bc54daa9-c727-47d0-a751-61ba029a3ea4")
(attr through_hole)
(fp_text reference "U1" (at 3.81 0.8106) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp af606e3e-0454-46b3-9ee4-94fca0c7d399)
)
(fp_text value "AS3340" (at 3.938 2.8106) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 544b1f97-9798-4c65-8832-14a4b9006863)
)
(fp_text user "${REFERENCE}" (at 3.81 8.89) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2369239d-8572-491b-9f92-695f8b6e0d12)
)
(fp_line (start -1.33 -1.39) (end -1.33 19.17)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4d905806-c238-4755-811b-438878efaf43))
(fp_line (start -1.33 19.17) (end 8.95 19.17)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d0e811ac-cc13-4276-8e28-d7b7421666f8))
(fp_line (start 1.16 -1.33) (end 1.16 19.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 89d6f403-cfd3-4a97-8548-1e23cd746ce5))
(fp_line (start 1.16 19.11) (end 6.46 19.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e45e1d6f-8a7a-4134-bc22-2535b87feb6e))
(fp_line (start 2.81 -1.33) (end 1.16 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ccfe11ff-e360-4693-8c89-2d3bc682e81a))
(fp_line (start 6.46 -1.33) (end 4.81 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e7d9491d-7af9-4316-a1c6-82b16bca188a))
(fp_line (start 6.46 19.11) (end 6.46 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 44d1c45b-6a09-425b-a300-307d14ec7563))
(fp_line (start 8.95 -1.39) (end -1.33 -1.39)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 00b9dd4c-72f4-469c-87c1-c508beaafb8c))
(fp_line (start 8.95 19.17) (end 8.95 -1.39)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff0342cb-3325-4187-99be-4c9fc80b21ee))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4fd8447a-c30e-4a63-95f8-eae480275b42))
(fp_line (start -1.55 -1.6) (end -1.55 19.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 64a03987-a38b-4b97-802f-49689e82b603))
(fp_line (start -1.55 19.4) (end 9.15 19.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 85e8a7dc-b6e2-4598-82b0-be7db2d0932e))
(fp_line (start 9.15 -1.6) (end -1.55 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9d8d9cb1-12be-49a4-8fc7-31b591629fb6))
(fp_line (start 9.15 19.4) (end 9.15 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 82a0436b-71d1-4b95-93c5-fef2716b1490))
(fp_line (start -1.27 -1.33) (end -1.27 19.11)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d074ffbc-eabf-4092-a0f1-48e6b5b74175))
(fp_line (start -1.27 19.11) (end 8.89 19.11)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5d7a7690-8aa7-4115-8839-9897cc14b50e))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0662fd75-7be8-40c1-ba89-ff4794e361a8))
(fp_line (start 0.635 19.05) (end 0.635 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3b5c0f87-2626-4ac7-9c47-7e8d780c9790))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4311cea8-b13e-4d3e-87c8-91e3a9ab60b5))
(fp_line (start 6.985 -1.27) (end 6.985 19.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b31f58df-11b3-436b-b3ce-5eba719d87df))
(fp_line (start 6.985 19.05) (end 0.635 19.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 51ab004b-8a73-42b1-9548-4bb9473ecfa8))
(fp_line (start 8.89 -1.33) (end -1.27 -1.33)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aded3297-2a54-4486-91ba-dd352aa63a97))
(fp_line (start 8.89 19.11) (end 8.89 -1.33)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28798a90-420b-40c9-a57c-ec68c71361f6))
(pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 12 "Net-(U1-SCALE1)") (pinfunction "SCALE1") (pintype "input") (tstamp ced69cb5-7fb5-4620-98b0-36e07a632bf1))
(pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 14 "Net-(U1-SCALE2)") (pinfunction "SCALE2") (pintype "input") (tstamp 31baa29e-c547-44a2-a4f4-0741ae9399f8))
(pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 13 "Net-(U1-VEE)") (pinfunction "VEE") (pintype "power_in") (tstamp fe54cc53-2edc-4c0b-9b5c-abbfe024637e))
(pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 33 "Net-(U1-VP)") (pinfunction "VP") (pintype "output") (tstamp 41aec495-9a5c-4ba9-abb7-b64806e25fec))
(pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 31 "Net-(U1-VPWM)") (pinfunction "VPWM") (pintype "input") (tstamp 4075ed00-0a83-4f8d-b4e5-29487ec98165))
(pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 10 "Net-(D1-K)") (pinfunction "VHSI") (pintype "input") (tstamp b852d620-bfaf-4b1e-9ae9-0cfdb9a0b709))
(pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 40 "Net-(U1-VHFT)") (pinfunction "VHFT") (pintype "input") (tstamp 0e05e176-41cc-4f2b-911b-6ed85c025e8e))
(pad "8" thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 41 "Net-(U1-VSO)") (pinfunction "VSO") (pintype "output") (tstamp 2ccdb872-14ed-464d-a9cb-0ad5fe688cb4))
(pad "9" thru_hole oval (at 7.62 17.78) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 18 "SOFT SYNC IN") (pinfunction "VSSI") (pintype "input") (tstamp b3b93193-d321-4f31-a61e-3bb8fc9a1695))
(pad "10" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 42 "Net-(U1-VTO)") (pinfunction "VTO") (pintype "output") (tstamp 87b0bfd3-133a-4140-b2aa-4574b5365010))
(pad "11" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 6 "Net-(U1-CAP)") (pinfunction "CAP") (pintype "passive") (tstamp 3549839e-1f98-4dae-a1dd-2cf0b98688e0))
(pad "12" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 5cbcb28d-eef0-4261-93c0-a43e9c05d6b0))
(pad "13" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 23 "Net-(U1-VLFI)") (pinfunction "VLFI") (pintype "input") (tstamp ae085a0f-d33d-4a38-96be-eb16eb788a22))
(pad "14" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 15 "Net-(U1-VS)") (pinfunction "VS") (pintype "passive") (tstamp 3fbf836e-f57f-49da-a367-c7a3592002d2))
(pad "15" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 17 "Net-(U1-VFCI)") (pinfunction "VFCI") (pintype "input") (tstamp 2c2a9f39-f4c8-4574-a688-2c298d59adb3))
(pad "16" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "+12V") (pinfunction "VCC") (pintype "power_in") (tstamp 237497ca-2c18-4831-84d7-64b36dbd7469))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-16_W7.62mm_Socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D6.0mm_W2.5mm_P5.00mm" (layer "F.Cu")
(tstamp 3e01ef88-d4a7-4749-aac6-22044131cfbf)
(at 233.3644 79.0956)
(descr "C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf")
(tags "C Disc series Radial pin pitch 5.00mm diameter 6mm width 2.5mm Capacitor")
(property "Sheetfile" "3340_vco.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/cb870dcb-455b-4a9d-b563-d10b8e40d685")
(attr through_hole)
(fp_text reference "C11" (at 2.5 -0.0956) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 980135c9-a7be-4d79-b30b-320f41f77ea0)
)
(fp_text value "0.1uF" (at 2.5 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d76468d-9f15-4a61-aea4-716ef2f4d37b)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a3419777-508e-4a3e-8c37-2a0adf75e8d7)
)
(fp_line (start -0.62 -1.37) (end -0.62 -0.925)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5f7f9611-3895-4afd-a8e2-deaea91629e3))
(fp_line (start -0.62 -1.37) (end 5.62 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb46d4d1-1ac4-435c-9ca6-d09649fcbd33))
(fp_line (start -0.62 0.925) (end -0.62 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67144fba-f0db-400a-a849-427f8efcb0c0))
(fp_line (start -0.62 1.37) (end 5.62 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3e927a69-a60c-4220-874e-4b2583e9be5b))
(fp_line (start 5.62 -1.37) (end 5.62 -0.925)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d1131ad8-cdb4-4d37-b431-c0b366d7cd4a))
(fp_line (start 5.62 0.925) (end 5.62 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f5a7fddb-0c52-4381-b953-720f329b402f))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 54ce11d3-9362-4fe6-8a7d-7080c6a5fc47))
(fp_line (start -1.05 1.5) (end 6.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 80442e56-3176-4101-82e9-542d853ae64b))
(fp_line (start 6.05 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5304c12c-190c-4c5f-a6fe-c8b9ae244232))
(fp_line (start 6.05 1.5) (end 6.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 90de8ca7-f42a-4e44-afac-6369a3ea9a82))
(fp_line (start -0.5 -1.25) (end -0.5 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c251404c-c0d3-48c0-b897-54e941ca65d2))
(fp_line (start -0.5 1.25) (end 5.5 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1d59e77f-b1fe-4698-8287-28f72e814c3a))
(fp_line (start 5.5 -1.25) (end -0.5 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d0bcaa6-8a4d-41c1-ac07-cf57797260bd))
(fp_line (start 5.5 1.25) (end 5.5 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 83a7fa18-1b05-471c-b18d-40d1d6077914))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "+12V") (pintype "passive") (tstamp 9d0986fe-25b4-4565-a7c7-d28d1c42db5c))
(pad "2" thru_hole circle (at 5 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pintype "passive") (tstamp eb9b08e1-3e63-4b1f-bc51-413b3bc4a2f4))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D6.0mm_W2.5mm_P5.00mm.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_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 5d8c86a0-19ed-4693-8b36-5fa4e1859245)
(at 238.25 82.454999 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "3340_vco.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/460700ef-6486-4f02-b6d1-8cf3a2e356b4")
(attr through_hole)
(fp_text reference "R23" (at 2.545001 1.25 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp af2ec920-febb-4880-aaea-e9a55209101d)
)
(fp_text value "680" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9ce9e682-a37b-48fc-af42-46daf816fadb)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e1476e06-5d4a-48bb-89bb-66d678697e8b)
)
(fp_line (start 1.37 0) (end 1.44 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 81d0e071-0c95-4258-b4bb-aee59fd86c98))
(fp_circle (center 0 0) (end 1.37 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp a9b96253-cf7a-4d47-8204-241834da9a38))
(fp_line (start -1.5 -1.5) (end -1.5 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 952c6efe-de72-4043-8de3-954aa8dcebae))
(fp_line (start -1.5 1.5) (end 3.59 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 28cc321b-d12b-4bf7-95eb-14703f7aac46))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ad043351-30bd-485f-b550-8c45615d0eb1))
(fp_line (start 3.59 1.5) (end 3.59 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5e8df5e2-5540-4f83-bf91-bef481f4a73f))
(fp_line (start 0 0) (end 2.54 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4685130e-11e1-4cb8-91df-88a1cc8d1186))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp d8686a79-dd0b-46de-aa1e-a99119e824d6))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 3 "-12V") (pintype "passive") (tstamp 9a997cab-2155-4b81-919a-4a27b6978ee6))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 13 "Net-(U1-VEE)") (pintype "passive") (tstamp b926f4d5-ea0c-411c-a20e-a282f85ae8df))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_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_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 7a1f5f32-a24d-4d0a-9582-3e89de95e3f8)
(at 227.6348 58.8772 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "3340_vco.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/f637503a-822c-4ad3-85a5-75c615a1b406")
(attr through_hole)
(fp_text reference "R25" (at 4.1228 -0.1152 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cf8e224b-0fb0-4c7e-ad7d-98db56b88aae)
)
(fp_text value "1k" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 54fe6d59-b844-4f70-9c25-d924cdfd5168)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0a758015-db0b-4722-a1cf-8a008644fe73)
)
(fp_line (start 1.37 0) (end 1.44 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a5dfe661-e8d7-4723-b5a0-4db90c11b95e))
(fp_circle (center 0 0) (end 1.37 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 7e5165dd-7b2b-43b6-ac01-2d6c59ef74f3))
(fp_line (start -1.5 -1.5) (end -1.5 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 371103db-12f4-4229-8366-a00898052eeb))