-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vector.kicad_pcb
9384 lines (9339 loc) · 381 KB
/
Vector.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")
(title_block
(title "Vector")
(date "2019-11-03")
(rev "r01")
(company "Nuclear Lighthouse Studios")
(comment 1 "CC BY-NC-SA")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(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)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen") (color "Black"))
(layer "F.Mask" (type "Top Solder Mask") (color "White") (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") (color "White") (thickness 0.01))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "Black"))
(copper_finish "ENIG")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(grid_origin 115.57 73.66)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(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 0)
(scaleselection 1)
(outputdirectory "gerbers/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+9V")
(net 3 "Input")
(net 4 "Output")
(net 5 "+9VA")
(net 6 "Net-(C1-Pad1)")
(net 7 "Net-(C2-Pad2)")
(net 8 "Net-(C2-Pad1)")
(net 9 "Net-(C3-Pad1)")
(net 10 "Net-(C4-Pad1)")
(net 11 "Net-(C5-Pad1)")
(net 12 "Net-(C6-Pad2)")
(net 13 "Net-(C6-Pad1)")
(net 14 "Net-(C7-Pad2)")
(net 15 "unconnected-(J1-Pad2)")
(net 16 "Net-(Q3-Pad3)")
(net 17 "Net-(C5-Pad2)")
(net 18 "Net-(C4-Pad2)")
(net 19 "Net-(C8-Pad2)")
(net 20 "Net-(C8-Pad1)")
(net 21 "Net-(R11-Pad2)")
(net 22 "Net-(R10-Pad1)")
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-00005bfc548b)
(at 121.92 103.505 -90)
(descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x06 2.54mm single row")
(property "Sheetfile" "Vector.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d2bd68e")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e8ed12bb-d6ff-46f3-8ddd-d567a8bbf864)
)
(fp_text value "Conn_01x06_Female" (at 0 15.03 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3fc35430-404c-463a-a84a-44ca6c727fb8)
)
(fp_text user "${REFERENCE}" (at 0 6.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e6bf25c3-985e-4d07-b0d2-55cf367bc59d)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 6bd9a56a-29c3-4582-9f29-8b3b70785131))
(fp_line (start 1.33 1.27) (end 1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp 76192421-1c7b-40ea-bc2b-33fd8f03d51f))
(fp_line (start -1.33 14.03) (end 1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp 92dc0145-72e1-48ce-8860-5a70d504dd76))
(fp_line (start -1.33 1.27) (end -1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp bb0aefd1-6b63-46c0-86d4-dda4bad00784))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp e9df2478-899d-43e3-9bce-c59e02c62a2b))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp ff641c5d-86d0-4678-b4a6-467d77cc3073))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 82cea33d-29c7-46ad-a138-db4135165475))
(fp_line (start -1.8 -1.8) (end -1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp 93aa788f-2da0-4cad-8da1-664114bd91a2))
(fp_line (start 1.8 14.5) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp d44b0dde-ef06-4aa6-8b55-5959581bba53))
(fp_line (start -1.8 14.5) (end 1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp e3044261-b890-4aa9-b836-555602ad6723))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 0fec1388-47d0-44c0-bd41-8e7f73149a33))
(fp_line (start 1.27 13.97) (end -1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp 13df6cd2-fb46-4489-8b85-0b0ecf87659c))
(fp_line (start 1.27 -1.27) (end 1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp 157a4dec-3bf8-4717-97ab-7c0c5e6ddec7))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 42829dd5-65ef-4b3a-9ad3-07fceca8a157))
(fp_line (start -1.27 13.97) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 6e15645b-a1bb-47cf-97fa-fbb00d080c1f))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "+9VA") (pinfunction "Pin_1") (pintype "passive") (tstamp 96009d18-ac04-40e6-8a75-faf88150c4b9))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "unconnected-(J1-Pad2)") (pinfunction "Pin_2") (pintype "passive+no_connect") (tstamp 39288bfc-805d-423d-9ab1-422273cdbad3))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "Output") (pinfunction "Pin_3") (pintype "passive") (tstamp 9d035dd9-c74f-405a-8a59-8406ea835937))
(pad "4" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "Input") (pinfunction "Pin_4") (pintype "passive") (tstamp 8c24b22d-0a06-4bef-b4c6-297a6e6316cf))
(pad "5" thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "+9V") (pinfunction "Pin_5") (pintype "passive") (tstamp 7703700c-f8b7-41b0-b458-30508a4519ee))
(pad "6" thru_hole oval (at 0 12.7 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_6") (pintype "passive") (tstamp 306d09b2-cea3-4533-a5bd-02a438147b4d))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005d0a8189)
(at 139.7 56.515)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f41674e4-f328-4e1b-a129-3ae2585b252e)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9cf0047b-3b95-483d-b8fe-2341517dd2ed)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 21474326-dc4f-4c2d-a7ff-53bab4ea816a)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 7edfcced-1940-4df9-ab1f-5eaa3063c529))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp b6c16c45-79d3-45b6-b0d6-38cbe1904686))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 17537877-0a8c-416b-8564-b9b3537d0511))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005d0a81b9)
(at 91.44 56.515)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a3b405f-b7c1-414f-a6d9-2e1f4bfc9632)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03e6420b-c4e5-4e19-abbc-7b14d7949322)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 09c612e9-1670-4b4f-8515-f847564ff497)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 5163944d-e1c1-4cc2-bd23-d6910ede32fa))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp a716a9ce-2a0c-4397-b073-8419ebafd865))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 34475906-ef73-4350-b1a1-c3f7ca65f65f))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005d0a81eb)
(at 140.335 103.505)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp baa64582-69eb-4cd9-a30a-df27ec3b8ed7)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 55acfd2a-b2a3-4ef8-ad6b-a73d624cf662)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8e34209a-4990-48d6-b79a-77cbec697072)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp aff4ea6d-f5bb-40a3-bbb4-afa34a4f832d))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 8dc36de0-3aae-4f3e-b1f5-4b6590c1de43))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 887a88f9-b102-4584-a530-1c09233d1412))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005d0a81f9)
(at 90.805 103.505)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5bc46fa6-54ea-45ad-adbd-e1f68a31bab3)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dc5abc85-fdb9-4021-a287-6ed941061d18)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0e13af49-521d-40bf-8793-56e5c2a1826b)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 214b479a-68d2-4793-a1da-59e4810ba039))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 3c688777-8353-4f09-9396-3ed44075c2c1))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 0b570f52-ee35-45b2-ab06-49836a1311a8))
)
(footprint "Package_TO_SOT_THT:TO-92_Wide" (layer "F.Cu")
(tedit 5A2795B7) (tstamp 00000000-0000-0000-0000-00005d2b89bf)
(at 132.08 91.44 180)
(descr "TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(property "Sheetfile" "Vector.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bdcf706")
(attr through_hole)
(fp_text reference "Q4" (at 2.55 -4.19) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 55db929d-a833-4528-ad5e-7d617d7c4ec2)
)
(fp_text value "BC547" (at 2.54 2.79) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19addfbf-92ff-4b39-a5cc-9e6fc2ad07cd)
)
(fp_text user "${REFERENCE}" (at 2.54 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a0fc3c40-eaa6-4cfc-9b67-e9f06d074064)
)
(fp_line (start 0.74 1.85) (end 4.34 1.85) (layer "F.SilkS") (width 0.12) (tstamp 5fba6e8a-572e-41a7-be55-fd25be9e16cd))
(fp_arc (start 3.65 -2.35) (mid 4.382279 -1.833196) (end 4.895458 -1.098371) (layer "F.SilkS") (width 0.12) (tstamp 3106536e-1ef0-4c9a-968a-0e2ad75e6fc0))
(fp_arc (start 0.74 1.85) (mid 0.446097 1.509328) (end 0.215816 1.122795) (layer "F.SilkS") (width 0.12) (tstamp 482b000d-60b6-4b0f-a272-f5d6300816b6))
(fp_arc (start 0.172801 -1.103842) (mid 0.678995 -1.832692) (end 1.4 -2.35) (layer "F.SilkS") (width 0.12) (tstamp 4b28cd13-cf69-44b7-b396-da664994317f))
(fp_arc (start 4.864184 1.122795) (mid 4.633903 1.509328) (end 4.34 1.85) (layer "F.SilkS") (width 0.12) (tstamp 5e02c247-1685-4077-a213-442ea8367dbc))
(fp_line (start 6.09 2.01) (end 6.09 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp 0fbd49e2-54e7-487c-bc37-75fd7ad2e132))
(fp_line (start 6.09 2.01) (end -1.01 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 129904c6-9687-42fb-ba7f-07dd2cc1e3a9))
(fp_line (start -1.01 -3.55) (end -1.01 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 4ff26aad-8ab8-4d20-a3e4-433a2d9aef42))
(fp_line (start -1.01 -3.55) (end 6.09 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp 9537f1c7-a678-400b-9ac3-73a5361cd828))
(fp_line (start 0.8 1.75) (end 4.3 1.75) (layer "F.Fab") (width 0.1) (tstamp 45c5e59f-b7a3-41f8-9e2f-3cf62ea11e85))
(fp_arc (start 2.54 -2.48) (mid 4.831221 -0.949055) (end 4.293625 1.753625) (layer "F.Fab") (width 0.1) (tstamp 5da12109-cffb-46fb-a566-36a9f3df0d6c))
(fp_arc (start 0.786375 1.753625) (mid 0.248779 -0.949055) (end 2.54 -2.48) (layer "F.Fab") (width 0.1) (tstamp f14a09fd-d07a-442a-b57c-07cc2a97231e))
(pad "1" thru_hole rect (at 0 0 180) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "Net-(C8-Pad2)") (pinfunction "C") (pintype "passive") (tstamp 09f9349e-c544-44f1-ac3c-3cc07b4a16c8))
(pad "2" thru_hole circle (at 2.54 -2.54 180) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(C6-Pad1)") (pinfunction "B") (pintype "input") (tstamp 21535b19-cb7a-4124-8253-060a87dd8f90))
(pad "3" thru_hole circle (at 5.08 0 180) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "E") (pintype "passive") (tstamp 3128418e-7c9a-436f-9d17-2ea90887b59b))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92_Wide.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")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d2b8c29)
(at 93.98 81.28 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" "Vector.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bdc9a5b")
(attr through_hole)
(fp_text reference "R4" (at 1.27 -2.37 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 107d05db-e226-43d1-8102-2ee4c01ae16d)
)
(fp_text value "100k" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a7e1650b-3dda-4b60-8517-70a0f2658b3d)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 044ade3b-55ad-4df9-8370-f7e4571cc674)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp ec483e28-ca42-4226-b12c-5ef57246c27a))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp c52a77cd-79f7-4cf8-84e6-f061e3c3bee9))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 59c499a3-538c-4520-9431-c946a65f3c91))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6ee8e8b4-752c-49f2-b638-59f5608f2182))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 96b4916c-9803-4e5f-b0dc-0eb341ef536b))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp b2688800-cf20-4c0c-870e-d35ae3b6d462))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp be06ab9e-74a5-46bc-9577-8ff54fe3dac5))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp ba13b479-fb6e-44fe-9006-64d685b55d34))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "+9VA") (pintype "passive") (tstamp 867f295a-3018-41f4-bc1c-6b5d3b4efbfb))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "Net-(C5-Pad2)") (pintype "passive") (tstamp ed3e3868-ed5f-44ab-b399-e03d930306e6))
(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_TO_SOT_THT:TO-92_Wide" (layer "F.Cu")
(tedit 5A2795B7) (tstamp 00000000-0000-0000-0000-00005d2ba365)
(at 104.14 91.44 180)
(descr "TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(property "Sheetfile" "Vector.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bdc6634")
(attr through_hole)
(fp_text reference "Q1" (at 2.55 -4.19) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c545b7c9-6860-48b3-82d6-8a954dc2a6a2)
)
(fp_text value "BC547" (at 2.54 2.79) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e9093f81-c6fe-4fac-8a22-b08bf1bdb5ac)
)
(fp_text user "${REFERENCE}" (at 2.54 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp abc5cd03-3e3b-4198-b530-4e9722e07408)
)
(fp_line (start 0.74 1.85) (end 4.34 1.85) (layer "F.SilkS") (width 0.12) (tstamp c19373af-d2c3-493a-b3f4-04992010dbaf))
(fp_arc (start 4.864184 1.122795) (mid 4.633903 1.509328) (end 4.34 1.85) (layer "F.SilkS") (width 0.12) (tstamp 33ef8d09-0633-46f8-9522-d0f9a2d84300))
(fp_arc (start 0.74 1.85) (mid 0.446097 1.509328) (end 0.215816 1.122795) (layer "F.SilkS") (width 0.12) (tstamp 38cf79a1-e53e-4b15-92ab-bc4a192022bb))
(fp_arc (start 3.65 -2.35) (mid 4.382279 -1.833196) (end 4.895458 -1.098371) (layer "F.SilkS") (width 0.12) (tstamp bc462909-9f9d-4019-94c9-1253e41d6729))
(fp_arc (start 0.172801 -1.103842) (mid 0.678995 -1.832692) (end 1.4 -2.35) (layer "F.SilkS") (width 0.12) (tstamp e858e488-563e-40fa-8e48-5e01f9989455))
(fp_line (start 6.09 2.01) (end -1.01 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 0f59a6ce-4168-4c33-9cd5-b77e1c5dcb61))
(fp_line (start -1.01 -3.55) (end 6.09 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp 7c0f7a41-26e2-4897-a576-bf4d47c6cccb))
(fp_line (start -1.01 -3.55) (end -1.01 2.01) (layer "F.CrtYd") (width 0.05) (tstamp a8cfb4a7-cfb4-4771-9c68-ad50a85a35de))
(fp_line (start 6.09 2.01) (end 6.09 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp b9f7273d-7e8a-4f66-9c8d-e8264314e264))
(fp_line (start 0.8 1.75) (end 4.3 1.75) (layer "F.Fab") (width 0.1) (tstamp f0c0b6f1-4f6a-4ddd-bb41-f3761f57e308))
(fp_arc (start 0.786375 1.753625) (mid 0.248779 -0.949055) (end 2.54 -2.48) (layer "F.Fab") (width 0.1) (tstamp 7426efa4-263e-40e7-8d3a-61462b20d7a8))
(fp_arc (start 2.54 -2.48) (mid 4.831221 -0.949055) (end 4.293625 1.753625) (layer "F.Fab") (width 0.1) (tstamp eb1b2643-f881-49d7-9b8d-48629fa20f94))
(pad "1" thru_hole rect (at 0 0 180) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "+9VA") (pinfunction "C") (pintype "passive") (tstamp bf2bbe57-3604-40ee-b115-4c7bc07ca588))
(pad "2" thru_hole circle (at 2.54 -2.54 180) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C1-Pad1)") (pinfunction "B") (pintype "input") (tstamp d9fab572-fd41-44fb-bf0c-3c121a3f6d8d))
(pad "3" thru_hole circle (at 5.08 0 180) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(C2-Pad1)") (pinfunction "E") (pintype "passive") (tstamp 34892668-d3c7-4efe-a8d6-d991a0905280))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92_Wide.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d2ba7de)
(at 132 100.33 180)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf")
(tags "C Rect series Radial pin pitch 5.00mm length 7.2mm width 4.5mm Capacitor")
(property "Sheetfile" "Vector.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bdda4a3")
(attr through_hole)
(fp_text reference "C8" (at 2.5 -3.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b347c6fb-3d1c-4f64-a253-6634e8480f61)
)
(fp_text value "1µ" (at 2.5 3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1d54c506-b1a5-43aa-8304-3d337f76a05d)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 784c8a1f-d792-4d83-9bae-99f7caed681f)
)
(fp_line (start -1.22 2.37) (end 6.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp 1afb13c5-4ffe-4119-91d3-a784cc5bc7a7))
(fp_line (start -1.22 -2.37) (end 6.22 -2.37) (layer "F.SilkS") (width 0.12) (tstamp 1c562027-5ee9-4545-8e7a-b470366c6cb8))
(fp_line (start -1.22 -2.37) (end -1.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp 54efea1c-e1e9-4a01-b2d8-6eb49346ea67))
(fp_line (start 6.22 -2.37) (end 6.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp e4e56899-ae22-43f1-a4a7-3b805545801c))
(fp_line (start 6.35 -2.5) (end -1.35 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 1305eff5-7c5b-4b0f-8e38-326b1a223cf2))
(fp_line (start -1.35 2.5) (end 6.35 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 506a0a02-50e1-4092-948f-9cb20cc770f0))
(fp_line (start 6.35 2.5) (end 6.35 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 9b9c8e25-d4d1-43ab-b96d-cfd3e74043d7))
(fp_line (start -1.35 -2.5) (end -1.35 2.5) (layer "F.CrtYd") (width 0.05) (tstamp b13de7ee-c1a3-4b5e-834a-1c7578f3346a))
(fp_line (start -1.1 -2.25) (end -1.1 2.25) (layer "F.Fab") (width 0.1) (tstamp 6960a24f-fc61-446c-b5d9-4f4092cfc02f))
(fp_line (start -1.1 2.25) (end 6.1 2.25) (layer "F.Fab") (width 0.1) (tstamp 8d1949df-d6e3-4b06-b1a4-0a42a57b0fa0))
(fp_line (start 6.1 -2.25) (end -1.1 -2.25) (layer "F.Fab") (width 0.1) (tstamp cf0894c1-9314-4083-a3ba-5dacd4edfc41))
(fp_line (start 6.1 2.25) (end 6.1 -2.25) (layer "F.Fab") (width 0.1) (tstamp cfaa26bb-30a0-485d-91df-388213bd2cdd))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "Net-(C8-Pad1)") (pintype "passive") (tstamp 758bbacc-42aa-490a-b91e-9b71fd6dc3d5))
(pad "2" thru_hole circle (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "Net-(C8-Pad2)") (pintype "passive") (tstamp fd84cc29-63ef-4145-bba0-4574c1ea3dc1))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.2mm_W4.5mm_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_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d2ba869)
(at 99.14 100.33)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf")
(tags "C Rect series Radial pin pitch 5.00mm length 7.2mm width 2.5mm Capacitor")
(property "Sheetfile" "Vector.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bdc66db")
(attr through_hole)
(fp_text reference "C1" (at 2.5 -2.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe2716a3-9b4b-4b12-b2b1-ba65ee6eabc1)
)
(fp_text value "100n" (at 2.5 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d5bbc0d0-5b40-4179-81e1-451f22894821)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bda55c5e-0f03-4d6a-9801-6218893421f3)
)
(fp_line (start -1.22 -1.37) (end 6.22 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 90f75d31-fc15-4f53-9838-3b8eddc09445))
(fp_line (start -1.22 -1.37) (end -1.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp bc1c9bb2-10bf-41a1-b9e1-8c43594e421f))
(fp_line (start 6.22 -1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp cbff469f-dff0-4834-b13b-dec46ed7ba70))
(fp_line (start -1.22 1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp e089902d-6e55-4456-aa0e-89af6147e260))
(fp_line (start -1.35 -1.5) (end -1.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 07698683-47a6-4511-97af-d84d444d830b))
(fp_line (start -1.35 1.5) (end 6.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1e77844e-6e52-4814-bd7e-ce37447010b4))
(fp_line (start 6.35 1.5) (end 6.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4ee3bbb2-65f7-48ab-b12d-108967490794))
(fp_line (start 6.35 -1.5) (end -1.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp b3f2217d-df04-49c5-a54e-aabeeb47dcb5))
(fp_line (start -1.1 1.25) (end 6.1 1.25) (layer "F.Fab") (width 0.1) (tstamp 041b72be-a350-48dd-a718-933244a467e0))
(fp_line (start 6.1 -1.25) (end -1.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 073d33f2-905f-4cc7-856d-ac6050a45fd1))
(fp_line (start 6.1 1.25) (end 6.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 29a817e2-a670-4108-b197-de89a6ded5f5))
(fp_line (start -1.1 -1.25) (end -1.1 1.25) (layer "F.Fab") (width 0.1) (tstamp c6e6a6df-6750-4165-b654-d0abc6a002fa))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C1-Pad1)") (pintype "passive") (tstamp 2d090154-452e-4597-9573-94d315cce466))
(pad "2" thru_hole circle (at 5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Input") (pintype "passive") (tstamp 4604e2bd-14f2-4c4e-ab57-5efb7fd7c10b))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.2mm_W2.5mm_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_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d2be2de)
(at 118.11 91.44 180)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf")
(tags "C Rect series Radial pin pitch 5.00mm length 7.2mm width 4.5mm Capacitor")
(property "Sheetfile" "Vector.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bdc83a4")
(attr through_hole)
(fp_text reference "C2" (at 2.5 -3.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c53d031-9348-41ac-aa9a-b6fc8ad90b11)
)
(fp_text value "1µ" (at 2.5 3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 96844611-e316-48a7-b5c8-4a0f8bf8ba5d)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa2927b3-642b-4c27-821d-232cc10fac24)
)
(fp_line (start -1.22 -2.37) (end -1.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp 6607d288-2d88-4e5b-8f02-8f764ed1856b))
(fp_line (start 6.22 -2.37) (end 6.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp 8842e53c-8626-431c-86cc-997bb399d60a))
(fp_line (start -1.22 -2.37) (end 6.22 -2.37) (layer "F.SilkS") (width 0.12) (tstamp ee2d273b-bb46-4ff4-bdd4-1714ce219a2a))
(fp_line (start -1.22 2.37) (end 6.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp ef7d9d70-bf44-4b55-891e-f6034625cc69))
(fp_line (start 6.35 2.5) (end 6.35 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 3b567a6b-67cc-4b50-8e98-871828086f3a))
(fp_line (start -1.35 -2.5) (end -1.35 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 4af2157e-d1f0-4b97-9ac1-db4283f36f0c))
(fp_line (start 6.35 -2.5) (end -1.35 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 5d94e2ce-fe6b-4df6-af64-6019b692af12))
(fp_line (start -1.35 2.5) (end 6.35 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 9fc9bc5d-8c31-43b3-b37a-2a18dd578f23))
(fp_line (start 6.1 -2.25) (end -1.1 -2.25) (layer "F.Fab") (width 0.1) (tstamp 1943e268-32af-406f-b66f-9184837010c0))
(fp_line (start -1.1 -2.25) (end -1.1 2.25) (layer "F.Fab") (width 0.1) (tstamp a9167971-6201-4ebe-a60b-f4526a050aa2))
(fp_line (start -1.1 2.25) (end 6.1 2.25) (layer "F.Fab") (width 0.1) (tstamp cd9ba865-7c07-4f6e-9288-e6cc22aa9740))
(fp_line (start 6.1 2.25) (end 6.1 -2.25) (layer "F.Fab") (width 0.1) (tstamp e036d4ea-b7b0-445b-9d09-35d3ca10250e))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(C2-Pad1)") (pintype "passive") (tstamp c545268f-8aad-47c4-a8f5-be4beca00302))
(pad "2" thru_hole circle (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(C2-Pad2)") (pintype "passive") (tstamp d287b9c2-9e75-4576-b884-eb044756e1f9))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.2mm_W4.5mm_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_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d2be304)
(at 117.475 81.28 90)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf")
(tags "C Rect series Radial pin pitch 5.00mm length 7.2mm width 2.5mm Capacitor")
(property "Sheetfile" "Vector.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005be097e9")
(attr through_hole)
(fp_text reference "C7" (at 2.54 2.413 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03d55eb7-6b64-41cb-97f0-f00ef8eacca8)
)
(fp_text value "100n" (at 2.5 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp adfb2952-bb09-43da-9f08-d8dc892f518a)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d938085c-4c7f-4f4a-9afb-465075faac83)
)
(fp_line (start -1.22 1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp 12e2bbd5-a43c-4b0d-bfd1-792719157abc))
(fp_line (start -1.22 -1.37) (end 6.22 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 5acf7497-6e4c-47af-9248-c303dc373813))
(fp_line (start 6.22 -1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp bd056bc5-3a37-4616-af61-e922f3c94826))
(fp_line (start -1.22 -1.37) (end -1.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp edae0dca-3320-4f11-a144-72a1b6329be9))
(fp_line (start 6.35 1.5) (end 6.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2a786bcf-a38f-4a89-861b-77b57d3ad967))
(fp_line (start -1.35 -1.5) (end -1.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9a7b244b-e7d4-4c98-85c6-723b36197401))
(fp_line (start 6.35 -1.5) (end -1.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp c81f9365-574e-41bc-af3f-d214de92d749))
(fp_line (start -1.35 1.5) (end 6.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp eb9146bb-5048-4c81-a565-7e3795f63d0a))
(fp_line (start -1.1 1.25) (end 6.1 1.25) (layer "F.Fab") (width 0.1) (tstamp 14a067a5-ad55-48c1-8d04-f0072ce75343))
(fp_line (start 6.1 -1.25) (end -1.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 39e7cdd8-5789-4d84-bc5a-95daf25aaf17))
(fp_line (start 6.1 1.25) (end 6.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 97856096-84c1-44a6-a798-38ea0641c8af))
(fp_line (start -1.1 -1.25) (end -1.1 1.25) (layer "F.Fab") (width 0.1) (tstamp d71fb840-4fe0-43c5-b7eb-2dd5f12a7f92))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(C6-Pad1)") (pintype "passive") (tstamp 51e0b1c7-ac84-4615-a954-4c39c6c06c2f))
(pad "2" thru_hole circle (at 5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "Net-(C7-Pad2)") (pintype "passive") (tstamp d481751b-0ca8-46f3-89b1-d6c452f44655))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.2mm_W2.5mm_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_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d2be32a)
(at 113.665 81.28 90)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf")
(tags "C Rect series Radial pin pitch 5.00mm length 7.2mm width 2.5mm Capacitor")
(property "Sheetfile" "Vector.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005be12b1f")
(attr through_hole)
(fp_text reference "C6" (at 2.54 -2.159 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cf18dfec-0813-418a-9df7-ad20e24433d0)
)
(fp_text value "100n" (at 2.5 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1608773c-b22e-4e6e-a807-e2f0ae79604f)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 80a7cd00-d7b8-4203-afc9-69f5d0b60b22)
)
(fp_line (start -1.22 1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp 090984fa-4baa-430e-aa74-6a46580f45e4))
(fp_line (start -1.22 -1.37) (end 6.22 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 124a519c-bc6c-4035-a0e6-1d3941e6bb9a))
(fp_line (start -1.22 -1.37) (end -1.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp 135d9c7b-03b0-4209-b6c1-5737212d9b05))
(fp_line (start 6.22 -1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp 997594bf-116c-46b6-9159-17cd8bbca16a))
(fp_line (start -1.35 1.5) (end 6.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3368288d-432a-4e1d-845e-0bac4a4f5647))
(fp_line (start -1.35 -1.5) (end -1.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 93061dcc-ba39-43e7-86f3-cdaf9fd82481))
(fp_line (start 6.35 1.5) (end 6.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp c949de8a-105f-4523-895f-06a0ca589d5e))
(fp_line (start 6.35 -1.5) (end -1.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp efe30c41-76ac-4289-892d-e127d1c6d91d))
(fp_line (start -1.1 -1.25) (end -1.1 1.25) (layer "F.Fab") (width 0.1) (tstamp 11afebf2-7fd5-4811-a4e9-645674d7f57d))
(fp_line (start -1.1 1.25) (end 6.1 1.25) (layer "F.Fab") (width 0.1) (tstamp 798ee34a-4d2d-45a8-9108-7f988fa83b3f))
(fp_line (start 6.1 -1.25) (end -1.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 9a60dccb-82fd-4fdf-a137-d9933e410be8))
(fp_line (start 6.1 1.25) (end 6.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp a7c8e4e8-cd11-4662-b8a0-8a35dbbc8d1b))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(C6-Pad1)") (pintype "passive") (tstamp 4527dacc-699c-4c8a-9b2f-0e9219ffa1fd))
(pad "2" thru_hole circle (at 5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(C6-Pad2)") (pintype "passive") (tstamp 58efd146-3a5a-46b3-ad3a-ff337481f09c))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_THT:D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp" (layer "F.Cu")
(tedit 5AE50CD5) (tstamp 00000000-0000-0000-0000-00005d2be34e)
(at 109.22 83.82 -90)
(descr "Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf")
(tags "Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm")
(property "Sheetfile" "Vector.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bfa2237")
(attr through_hole)
(fp_text reference "D1" (at 1.27 -2.326371 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a0d5b727-8aa6-481f-adee-3b7f8b9cd490)
)
(fp_text value "1N4148" (at 1.27 3.215371 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e48b3cc9-bb52-41c3-a105-0be3b0c223ba)
)
(fp_text user "A" (at 4.34 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8590612f-f581-4756-88e7-2f57b422483f)
)
(fp_text user "A" (at 4.34 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 14268aa8-8b28-478c-8cfe-31edceccc770)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.326371 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fec5e8de-9482-4e4b-bc12-fa7ded20edec)
)
(fp_line (start 1.326371 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp ce3a90bf-1d3c-4c63-8840-c4c2239ed4ff))
(fp_circle (center 0 0) (end 1.326371 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 9b1d0586-f8a9-49a4-be58-c60a7cd43378))
(fp_line (start -1.25 -1.25) (end -1.25 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 0b4bb554-ddc4-497e-bc90-f5541f3dc550))
(fp_line (start -1.25 1.25) (end 3.59 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 6239b5c5-6eb1-4274-821a-b0a1fd866c8d))
(fp_line (start 3.59 1.25) (end 3.59 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp ca6d7327-e3a3-4abb-b341-71476cb65ada))
(fp_line (start 3.59 -1.25) (end -1.25 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp e50d4e9a-b5ea-4d55-be1a-9a4e18cee9b7))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 6af58739-d30a-4120-b5f9-d003fad769ed))
(fp_circle (center 0 0) (end 1 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 46eec52c-6846-465a-8dd3-df085d682b2b))
(pad "1" thru_hole rect (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(C2-Pad2)") (pinfunction "K") (pintype "passive") (tstamp 7610e3cd-7b91-4f0a-8de5-289313300ab2))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "Net-(C5-Pad2)") (pinfunction "A") (pintype "passive") (tstamp f84a3af0-fe4b-4de0-8353-5c6c3e11434e))
(model "${KICAD6_3DMODEL_DIR}/Diode_THT.3dshapes/D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_THT:D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp" (layer "F.Cu")
(tedit 5AE50CD5) (tstamp 00000000-0000-0000-0000-00005d2be35f)
(at 104.14 86.36 90)
(descr "Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf")
(tags "Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm")
(property "Sheetfile" "Vector.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bfa5cd2")
(attr through_hole)
(fp_text reference "D2" (at 1.27 -2.326371 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a70beaa5-4fae-41c8-9f05-6ed9a7b8ba0e)
)
(fp_text value "1N4148" (at 1.27 3.215371 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dba19a3f-ddb6-49c5-869a-af02a24b06e5)
)
(fp_text user "A" (at 4.34 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7fa83afa-a1e0-4455-88ce-a78c814340b2)
)
(fp_text user "A" (at 4.34 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 43214969-4ea2-4cc7-a4bd-1fd6af116a42)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.326371 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 82dab50b-5a57-4232-92d3-15703a257cd4)
)
(fp_line (start 1.326371 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp ec1f9b08-6ce8-4ee1-be2b-c6f716e54318))
(fp_circle (center 0 0) (end 1.326371 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 07705696-e410-4373-bc80-9e65cd006956))
(fp_line (start -1.25 1.25) (end 3.59 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 1f63a186-d6e7-4ad2-95e1-1b19866aa9f6))
(fp_line (start -1.25 -1.25) (end -1.25 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 6ee2ea5b-4c20-4fba-9978-46345babcde4))
(fp_line (start 3.59 1.25) (end 3.59 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp e915e709-a77a-4cca-ae89-ac702010391b))
(fp_line (start 3.59 -1.25) (end -1.25 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp ed19072e-735c-470e-8b0a-7d2d2269065e))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 512e9019-45ff-4891-9f88-f78c362118fe))
(fp_circle (center 0 0) (end 1 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 3e7b36a0-da2f-46e5-be49-e5c407842363))
(pad "1" thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "Net-(C5-Pad2)") (pinfunction "K") (pintype "passive") (tstamp ac22d224-9739-4064-85b7-a03c6c1f6b76))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(C2-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 9c831d71-6e8b-46f9-9779-331bd5bd413d))
(model "${KICAD6_3DMODEL_DIR}/Diode_THT.3dshapes/D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_THT:TO-92_Wide" (layer "F.Cu")
(tedit 5A2795B7) (tstamp 00000000-0000-0000-0000-00005d2be3c1)
(at 109.22 77.47 180)
(descr "TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(property "Sheetfile" "Vector.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bdc93a6")
(attr through_hole)
(fp_text reference "Q2" (at 2.55 -4.19) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 07b5bed0-4c45-4900-b192-572f22de5caf)
)
(fp_text value "BC547" (at 2.54 2.79) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eb74a370-34e6-43da-898d-bece627f6dc7)
)
(fp_text user "${REFERENCE}" (at 2.54 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c57c594-9032-4a0b-b457-11cae0ff1833)
)
(fp_line (start 0.74 1.85) (end 4.34 1.85) (layer "F.SilkS") (width 0.12) (tstamp 184a2f6c-a867-42a8-8e2b-905e71302e9b))
(fp_arc (start 4.864184 1.122795) (mid 4.633903 1.509328) (end 4.34 1.85) (layer "F.SilkS") (width 0.12) (tstamp 12e21993-345b-4222-b6bd-8866c51ed68e))
(fp_arc (start 3.65 -2.35) (mid 4.382279 -1.833196) (end 4.895458 -1.098371) (layer "F.SilkS") (width 0.12) (tstamp 9a944d55-4420-44d7-95af-018a7b8b44f5))
(fp_arc (start 0.74 1.85) (mid 0.446097 1.509328) (end 0.215816 1.122795) (layer "F.SilkS") (width 0.12) (tstamp 9b921dd7-a9fe-4d0d-bb59-8886cbd8e8b7))
(fp_arc (start 0.172801 -1.103842) (mid 0.678995 -1.832692) (end 1.4 -2.35) (layer "F.SilkS") (width 0.12) (tstamp ab5cd34d-f356-4aab-9959-86b3daa822d2))
(fp_line (start 6.09 2.01) (end -1.01 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 59e78e2f-2c14-4e0c-a93c-4fede8fb3a36))
(fp_line (start -1.01 -3.55) (end 6.09 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp 6dcad75e-386b-4501-b0e7-61e8d0915595))
(fp_line (start -1.01 -3.55) (end -1.01 2.01) (layer "F.CrtYd") (width 0.05) (tstamp cedb841c-1971-48f2-85ea-62e3a3b41250))
(fp_line (start 6.09 2.01) (end 6.09 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp da639ca6-6d4b-4cec-847b-93540a597c48))
(fp_line (start 0.8 1.75) (end 4.3 1.75) (layer "F.Fab") (width 0.1) (tstamp 9bf62555-6d7d-45d5-9e9d-bdee507824c0))
(fp_arc (start 0.786375 1.753625) (mid 0.248779 -0.949055) (end 2.54 -2.48) (layer "F.Fab") (width 0.1) (tstamp 1e1de6af-4cc6-4de1-9d0a-92e14d0c9280))
(fp_arc (start 2.54 -2.48) (mid 4.831221 -0.949055) (end 4.293625 1.753625) (layer "F.Fab") (width 0.1) (tstamp b4c763f9-a529-4e7c-947d-0f34fd31a5f0))
(pad "1" thru_hole rect (at 0 0 180) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "Net-(C5-Pad2)") (pinfunction "C") (pintype "passive") (tstamp 8062fbbf-fd68-444d-950c-a24f6cbb81e3))
(pad "2" thru_hole circle (at 2.54 -2.54 180) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(C2-Pad2)") (pinfunction "B") (pintype "input") (tstamp f2e50b69-ae52-4d42-99ae-abb5c75bfbad))
(pad "3" thru_hole circle (at 5.08 0 180) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "E") (pintype "passive") (tstamp 19a15b7c-4e4f-4ab4-b866-ae1c28d94fb4))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92_Wide.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")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d2be3f8)
(at 93.98 87.63 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" "Vector.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bdc690b")
(attr through_hole)
(fp_text reference "R1" (at 1.27 2.54 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0a2c8c53-dab0-4666-8862-d0103f450075)
)
(fp_text value "1M" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2c664d54-741a-44b4-82dd-38dfdec61870)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a6d425b-c8d2-45f5-80d5-97a73f6727d7)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp 683dbedb-38a4-4e42-a148-ee10961ecf0c))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp dcc8a076-efb4-46af-b39f-e2c98d428c9a))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 16340d4b-1cf7-4409-ae3d-58f4278eff05))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp ae98328e-8e28-45a4-b71a-137fce823894))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp baf33217-03cd-44f6-8a05-ef826c650e79))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp bfae8955-ca21-4857-bc99-221dd1b15334))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 6c998bd7-774b-4215-92da-2b41171fc42d))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp aaf08264-3ed4-46fe-b22d-8b399e19612c))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C1-Pad1)") (pintype "passive") (tstamp 3b330c18-8948-4948-991b-55df335dfcfe))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "+9VA") (pintype "passive") (tstamp 99dd9d71-63f5-4ad9-a5b9-a5362037bdff))
(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")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d2be407)
(at 95.25 93.98 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" "Vector.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bdc6949")
(attr through_hole)
(fp_text reference "R2" (at 1.27 -2.37 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7792105f-61be-490c-8a7f-38b63bad6e16)
)
(fp_text value "1M" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 11d12f8a-b151-4651-af40-0bf328377769)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f5629683-cdd1-493f-a5d7-08608c78ca68)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp c82157b9-d076-4247-862e-1d2155646139))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 175e5f86-7ae1-4882-85bd-ec0d333a0271))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 201b814b-e193-445f-928d-f7cf061f6adb))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 97d80ba9-47fc-4a19-833b-2a0c1b68cdad))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp c21e2614-b641-4c2e-ae03-b06826b050ca))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp fbd6d353-a508-4b88-8a34-27e9192f4f3e))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 46e0b087-813f-4200-ab86-665b56655da3))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp cb6ce3a3-3d89-4bd8-b369-34f39504ea6e))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp 2536b8d4-42c5-43f0-b6bc-38cf45786aff))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C1-Pad1)") (pintype "passive") (tstamp 3d7d7813-4f7f-4dbf-9357-33f6f85769c6))
(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")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d2be41e)
(at 107.95 93.98 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" "Vector.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bdc7093")
(attr through_hole)
(fp_text reference "R3" (at 1.27 -2.37 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6e97fb06-8d7e-4109-bae2-a5b1839176f7)
)
(fp_text value "10k" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 42cdc8ab-054b-40ab-9560-a11ec7822de2)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b74ddf3c-aa35-4449-aef0-ab6212701792)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp 9f50f57b-7763-4559-89e8-c74332e7ff18))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp f0686fbd-3da1-4dca-bfad-1e9f38aa4093))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 0e0c6cac-b630-4587-ba52-914a26828431))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 17c1755b-8804-45d2-a937-536a55e9c575))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 23f6e100-a35c-4b9a-bcd9-6f6dabb1433d))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 321bc10a-ec6a-4907-b8d9-08d5f6371d29))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp f2c2b61b-2d54-4643-a8e9-6ea01b6ce244))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 0ca01416-899c-4920-b7e3-4bd2837e5feb))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp 001a3b9e-b50f-4150-b020-84d0114e0a5b))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(C2-Pad1)") (pintype "passive") (tstamp 0d947c48-b0c5-49b6-a620-e711dfdbd625))
(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")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d2be453)
(at 127 86.36 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" "Vector.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bde3eb4")
(attr through_hole)
(fp_text reference "R6" (at 1.27 2.286 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 75e61d9e-7bed-4313-bf99-8c8c9a1e48ad)
)
(fp_text value "470k" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 65c85d93-c9df-464a-b066-955ee8cac803)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 05dab1d0-b79d-4a88-9502-4195dd7f249c)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp bf3b1374-f5ae-4b79-85a1-c1acc6183a00))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp a81fac2a-263e-4737-915a-bd0c69580424))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1e2fb1ab-44ce-4cf1-85d6-8713fd5ef5a6))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 22e46e44-7e7e-4bfa-b6e0-cc06c03c8145))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp b2e11eed-5095-4501-bd03-3e12fb35f608))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp c130e14e-b8f0-4b21-8e18-23487a193279))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 489664a5-d728-46b8-9e03-dc6a42bd7ca1))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 32255e9c-5623-426c-acd2-fb5d4af1ddd5))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp fdbe1e59-1cac-4eb2-ae55-7a3c9b2658e9))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "Net-(C3-Pad1)") (pintype "passive") (tstamp 420e6d3d-a65a-41a6-b1b1-36161103a031))
(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_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d2be49f)
(at 119.38 66.675 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 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 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "Vector.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bdcd2c1")
(attr through_hole)
(fp_text reference "R11" (at 3.81 -2.159) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fc1a474f-f0e1-4632-8b43-ace13151eb1c)
)
(fp_text value "22k" (at 3.81 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f4e53e68-901e-4445-9dda-84602dd4dfd1)
)
(fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e455d105-258a-44c6-8c5f-0f7d7b75ece8)
)
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 36612c5e-3b1e-495a-b16c-be4017df249e))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp 62864e67-760d-4e59-ac46-09237f7c8c5a))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 80adb80b-38df-4868-a4d9-aea7ca2c2b92))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp 8aa3db0c-ce45-45de-823f-b8cd720e01ee))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 9076ca7c-933c-4125-b78b-a87c174772e7))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp ff2f0e0b-dfe5-42d7-b28e-83ad551d16e2))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 39c88d6a-cf8b-4c48-91bf-ef4fb35b31e9))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4605e3ae-8ed0-40ed-83bc-e5bdb9ed2b6e))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5e724706-b690-4196-b3ac-759e25d564ae))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp c4b9d557-2a62-4588-97bc-1cf49d4f3eac))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp 0452227c-3a0e-4607-b417-30ac4a8f48d9))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp 0936662e-c199-4472-b3a7-192c47bc056e))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp 296ef722-a516-4ca9-8500-1829df29a8b7))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp 4b9909ce-10fe-4cad-a3e5-2749fdcaaf4a))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp 6d86b2bc-882b-4a14-8419-7fa3132b71db))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp 90248941-e767-4ff3-8d22-b65cb5e427f7))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(C6-Pad2)") (pintype "passive") (tstamp 5ee1b5eb-fb4a-48b6-bbcc-a1c560dd32c0))
(pad "2" thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "Net-(R11-Pad2)") (pintype "passive") (tstamp 1ee1f2b0-0567-41fd-b1f3-b87dd59e0f1c))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_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")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d2be4ae)
(at 135.89 93.98 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" "Vector.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bdce8c1")
(attr through_hole)
(fp_text reference "R13" (at 1.27 2.54 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 745e8629-c630-4328-a66d-37c58985c223)
)
(fp_text value "1M" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d7b028d-b407-44d7-bbff-c21eda1d86b6)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 49c1e0cd-ef49-445e-b679-7ca33c021219)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp b8dc1e00-8f28-42d0-b468-1dd1c0bff191))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 70bae479-8ef6-47e1-a3d4-ac972d9313df))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1291eb99-8f08-47a1-9d5e-5518fcd3c7e6))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 22339e5d-90d1-49cc-9894-a5e9479f3665))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp b5ef0d94-5652-4036-b112-8b0b9bc871c5))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp cc99ae93-d637-44a6-bc45-67b4ade01bf9))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 44ef1847-0a86-46a2-9f32-c25cbd9f5e2f))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 32d2f3ae-a7f6-4b8d-987b-0c71a6de9af5))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "Net-(C8-Pad2)") (pintype "passive") (tstamp 9e620ec3-cd2e-449a-92bd-54e18ed4e53a))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(C6-Pad1)") (pintype "passive") (tstamp 18a22bd0-9cec-4fde-9458-6b48d754c858))
(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")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d2be4bd)
(at 123.19 93.98 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" "Vector.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bdd1e60")