-
Notifications
You must be signed in to change notification settings - Fork 2
/
HF-PA-v10.kicad_pcb
15857 lines (15795 loc) · 700 KB
/
HF-PA-v10.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 "User" 299.999 299.999)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(33 "F.Adhes" user "F.Adhesive")
(35 "F.Paste" user)
(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")
(49 "F.Fab" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00011a0_7fffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(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 4)
(mirror false)
(drillshape 2)
(scaleselection 1)
(outputdirectory "plots/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+VDC")
(net 3 "Net-(C7-Pad2)")
(net 4 "PTT")
(net 5 "/DRAIN")
(net 6 "Net-(Q2-G)")
(net 7 "Net-(Q3-G)")
(net 8 "Net-(Q4-B)")
(net 9 "+5V")
(net 10 "12V")
(net 11 "unconnected-(Power1-Pad3)")
(net 12 "Net-(U2-OUT)")
(net 13 "Net-(Q3-D)")
(net 14 "Net-(C11-Pad1)")
(net 15 "Net-(JP1-B)")
(net 16 "RF_OUT")
(net 17 "Net-(D3-A)")
(net 18 "LPF")
(net 19 "RX")
(net 20 "unconnected-(K1-Pad11)")
(net 21 "Net-(Q1-B)")
(net 22 "Net-(RF_IN1-In)")
(net 23 "Net-(U2-IN+)")
(net 24 "Net-(D1-K)")
(footprint "Resistor_SMD:R_2512_6332Metric_Pad1.40x3.35mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00006107c31f)
(at 173.61 106.39 180)
(descr "Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "HF-PA-v10.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/00000000-0000-0000-0000-000061370eaf")
(attr smd)
(fp_text reference "R3" (at 0 -2.62 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 63836697-3853-4900-a83a-dc98af320af8)
)
(fp_text value "10" (at 2.8 -2.61 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa046868-7621-4a5f-a38e-bc790db51d01)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 98fa06fd-f34c-412b-97ae-bc4be3973530)
)
(fp_line (start -2.177064 -1.71) (end 2.177064 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 612a3e9a-70e4-47a9-840c-e77b9dd1b01e))
(fp_line (start -2.177064 1.71) (end 2.177064 1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 52c4d0b9-af35-4317-b29f-9f202f3b040a))
(fp_line (start -4 -1.92) (end 4 -1.92)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a39a2349-6b12-4348-b3a3-2a8e789f6470))
(fp_line (start -4 1.92) (end -4 -1.92)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 669eb711-b0d3-4697-8be1-6a3df85361a5))
(fp_line (start 4 -1.92) (end 4 1.92)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aaa02803-9963-4716-a9a1-24de28da8e0d))
(fp_line (start 4 1.92) (end -4 1.92)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f28e30e6-8678-4542-821d-359992da751c))
(fp_line (start -3.15 -1.6) (end 3.15 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7efc044b-1eb7-48f3-bb22-fdeeb5d3ae64))
(fp_line (start -3.15 1.6) (end -3.15 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0770cc9a-2960-4213-a65d-bf415a06a8f7))
(fp_line (start 3.15 -1.6) (end 3.15 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 443e9eaa-2e6b-4b8a-be12-f09d682f0398))
(fp_line (start 3.15 1.6) (end -3.15 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp acee8759-8402-4ee7-acd1-c5ced2cbe5b5))
(pad "1" smd roundrect (at -3.05 0 180) (size 1.4 3.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1785707143)
(net 6 "Net-(Q2-G)") (pintype "passive") (tstamp 1027d783-7109-4921-85b2-196f686ed0cc))
(pad "2" smd roundrect (at 3.05 0 180) (size 1.4 3.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1785707143)
(net 12 "Net-(U2-OUT)") (pintype "passive") (tstamp 22cad873-8a2d-4781-93e4-f164f2607852))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_2512_6332Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00006107c4cc)
(at 157.0867 72.7964)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "HF-PA-v10.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Polarized capacitor, small symbol")
(property "ki_keywords" "cap capacitor")
(path "/ecf55aed-74ab-42fa-8c86-27916670e388")
(attr smd)
(fp_text reference "C2" (at -0.2032 1.8288) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d4ee8c8-6ad6-44af-83bb-fd7bef0cf664)
)
(fp_text value "10u" (at 0 1.85) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a89fb684-7392-4a7c-aea5-f1cfb1d66aea)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 02b10caf-5076-410a-8e5f-740eb1371a5d)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 29838023-733b-4a16-8f96-abb6d2861cd8))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1a1b0207-e8d2-4cfd-ad00-7761a53ae220))
(fp_line (start -2.48 -1.15) (end 2.48 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8a3ab9f1-8af5-4790-b74c-4ee008b3adf1))
(fp_line (start -2.48 1.15) (end -2.48 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp baa20176-9a0a-45d1-aea4-8c4e6c20ab66))
(fp_line (start 2.48 -1.15) (end 2.48 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a9eb51e6-438a-4551-a1ee-d4d0ad02c700))
(fp_line (start 2.48 1.15) (end -2.48 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a4f1756a-3450-4aae-8b43-d922e042f8f5))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 19dd8533-d686-4628-a99f-def3fffb71e9))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a8d450ab-8b19-4cef-a18e-66aef8f3b01c))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 41154e51-9cce-4ab8-86f4-6a20711ac47a))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4acdc1cd-94af-4fe8-b782-2e8b0ba68310))
(pad "1" smd roundrect (at -1.5625 0) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 10 "12V") (pintype "passive") (tstamp 1e6d24e8-f55c-49ae-b69b-df1d0d6e40fc))
(pad "2" smd roundrect (at 1.5625 0) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 1 "GND") (pintype "passive") (tstamp ca6b0d48-e3e8-4f7b-b953-443b1b54671b))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00006107c5b3)
(at 196.9 97.81 90)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "HF-PA-v10.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/00000000-0000-0000-0000-000060e92e50")
(attr smd)
(fp_text reference "C7" (at -0.795 1.855 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 64c0b8da-41bc-48d7-8f3a-0a9641575c13)
)
(fp_text value "100n" (at -0.2375 1.8 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 44cc2f1f-53ce-45ca-b9e5-2c4886792782)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp dfe91d57-245a-4697-b2a5-c7a5d27ef780)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f90e9d5-cebc-41c9-974e-97ce2e170479))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a541f76-9284-428c-ad19-93361e6cf72e))
(fp_line (start -2.48 -1.15) (end 2.48 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4d2b91d4-e9e5-49bb-b873-d2c674614534))
(fp_line (start -2.48 1.15) (end -2.48 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f88c2939-6356-4937-8f5b-d8b70e63181e))
(fp_line (start 2.48 -1.15) (end 2.48 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 600a98d1-e80d-4744-902e-4d2e64feb964))
(fp_line (start 2.48 1.15) (end -2.48 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 60993d07-66d5-4159-a7b3-7d141e437730))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 301a9feb-9f04-47ec-b783-428e99185eed))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c45ccbe5-43ab-4d51-9dde-7577edfa57e8))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9f33ef2a-75de-40a5-a700-63374eebadfc))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c87e649c-fc02-4507-bb71-f7ff3913d684))
(pad "1" smd roundrect (at -1.5625 0 90) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 16 "RF_OUT") (pintype "passive") (tstamp 8200c40b-66dc-48fe-acc5-3de36bf9385d))
(pad "2" smd roundrect (at 1.5625 0 90) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 3 "Net-(C7-Pad2)") (pintype "passive") (tstamp 1e00b845-468f-4e86-9125-069464558f3a))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_THT:TO-220-3_Horizontal_TabDown" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00006107c76e)
(at 177.44 98.825 90)
(descr "TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf")
(tags "TO-220-3 Horizontal RM 2.54mm")
(property "Sheetfile" "HF-PA-v10.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "33A Id, 100V Vds, HEXFET N-Channel MOSFET, TO-220")
(property "ki_keywords" "HEXFET N-Channel MOSFET")
(path "/ec1ff4e8-abce-4f5b-beef-2fc3fb55f0ec")
(attr through_hole)
(fp_text reference "Q2" (at 2.54 -20.58 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4f31699a-ef0f-4e70-b87b-8d482e1b3f52)
)
(fp_text value "IRF510" (at 2.55 -23.96 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e207a53e-03f1-4921-8e83-3a1fe180fedf)
)
(fp_text user "${REFERENCE}" (at 2.54 -20.58 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 93be79ea-5fbe-4675-9176-979d33e1e80c)
)
(fp_line (start -2.58 -19.58) (end -2.58 -3.69)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1730c40e-52cd-4f67-99d3-9f590818be39))
(fp_line (start -2.58 -19.58) (end 7.66 -19.58)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 93850e45-be79-4ced-a8fe-824c5ee350cc))
(fp_line (start -2.58 -3.69) (end 7.66 -3.69)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 77111b8a-7e14-4c4f-a682-3a52f33ca012))
(fp_line (start 7.66 -19.58) (end 7.66 -3.69)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 30211a06-3768-44b6-9d44-a226d8786553))
(fp_line (start -2.71 -19.71) (end -2.71 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 05340799-a97a-4e67-a27c-1215dfe46efa))
(fp_line (start -2.71 1.25) (end 7.79 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp df4f44fb-1006-4182-a199-31efdcbefe40))
(fp_line (start 7.79 -19.71) (end -2.71 -19.71)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp add8317e-029f-47b5-a0f6-5f8f02848444))
(fp_line (start 7.79 1.25) (end 7.79 -19.71)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a013e6d5-e0ac-44ab-9634-f45252370780))
(fp_line (start -2.46 -19.46) (end 7.54 -19.46)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4d47e63d-72d1-4c70-9ffc-707cbeb936dc))
(fp_line (start -2.46 -13.06) (end -2.46 -19.46)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0082d834-a2d6-4cb0-9df1-3e1ebbf1279a))
(fp_line (start -2.46 -13.06) (end 7.54 -13.06)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 35c78e91-e66f-483b-b012-00c783c95e58))
(fp_line (start -2.46 -3.81) (end -2.46 -13.06)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 55cc95aa-ad55-4283-931d-0abf37b1729e))
(fp_line (start 0 -3.81) (end 0 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3494dba1-d59c-47a0-8dcd-a3a0d3453fed))
(fp_line (start 2.54 -3.81) (end 2.54 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d120ad72-a449-40b8-adc4-5b9ccc8fe7d3))
(fp_line (start 5.08 -3.81) (end 5.08 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6931b37c-ae2b-442d-866d-24b476e09d62))
(fp_line (start 7.54 -19.46) (end 7.54 -13.06)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp beb68c82-b2e3-49a2-b6c9-9126a9b0048a))
(fp_line (start 7.54 -13.06) (end -2.46 -13.06)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cc7f4d17-7cfc-4448-8aef-b558e0bc490d))
(fp_line (start 7.54 -13.06) (end 7.54 -3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3cab6c9-f157-484d-9339-163c11e40678))
(fp_line (start 7.54 -3.81) (end -2.46 -3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 628c4b6c-df6d-4eec-9386-1f0afba11d65))
(fp_circle (center 2.54 -16.66) (end 4.39 -16.66)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp d9e4f0c8-a2d3-4ef2-981e-b3e57fc27cc4))
(pad "" np_thru_hole oval (at 2.54 -16.66 90) (size 3.5 3.5) (drill 3.5) (layers "*.Cu" "*.Mask") (tstamp 64223c9f-4c1a-48c3-8116-463320e967cf))
(pad "1" thru_hole rect (at 0 0 90) (size 1.905 4) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "Net-(Q2-G)") (pinfunction "G") (pintype "input") (tstamp cc289031-9797-4f39-9e3b-45826b6b4c3e))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.905 4) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 5 "/DRAIN") (pinfunction "D") (pintype "passive") (tstamp d1121f8c-7df6-482a-8c91-448dbcc18f2d))
(pad "3" thru_hole oval (at 5.08 0 90) (size 1.905 4) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "S") (pintype "passive") (tstamp 86876825-e142-4121-8c81-3c3c40bdff77))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-220-3_Horizontal_TabDown.wrl"
(offset (xyz 0 0 -5))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SMA_Handsoldering" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-0000614df06e)
(at 175.15 72.75 90)
(descr "Diode SMA (DO-214AC) Handsoldering")
(tags "Diode SMA (DO-214AC) Handsoldering")
(property "Sheetfile" "HF-PA-v10.kicad_sch")
(property "Sheetname" "")
(property "Sim.Device" "D")
(property "Sim.Pins" "1=K 2=A")
(property "ki_description" "1000V 1A General Purpose Rectifier Diode, DO-41")
(property "ki_keywords" "diode")
(path "/0cc4e04d-e581-47f1-9460-8de96d9a173f")
(attr smd)
(fp_text reference "D1" (at 0 -2.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2ab4af65-9caa-4d14-b11b-1753616c8899)
)
(fp_text value "1N4007" (at 0 2.6 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7d36b77a-d117-40f2-a0b0-8ed6287b097d)
)
(fp_text user "${REFERENCE}" (at 0 -2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a831a2c6-c83a-4e09-9a72-ea29344c8dcd)
)
(fp_line (start -4.51 -1.65) (end -4.51 1.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7d0b34c3-e3a8-4b6d-ab02-82adf96d37e2))
(fp_line (start -4.51 -1.65) (end 2.5 -1.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 46fe4ab4-5abd-4411-b16d-4be91c1d5d55))
(fp_line (start -4.51 1.65) (end 2.5 1.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 24281fc7-b6ca-4b54-bab2-e7d590d64c9d))
(fp_line (start -4.5 -1.75) (end 4.5 -1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5851c938-581b-4e89-8277-5e46a816e9ef))
(fp_line (start -4.5 1.75) (end -4.5 -1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 373c5915-65ed-48d7-9545-81f4a54b34ab))
(fp_line (start 4.5 -1.75) (end 4.5 1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 71e82e89-0276-483b-819d-a23cdb4c95a8))
(fp_line (start 4.5 1.75) (end -4.5 1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 53a38f97-4810-4779-9196-fb7adc8fb526))
(fp_line (start -2.3 1.5) (end -2.3 -1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e03f672-7407-47df-998b-024b1db84d21))
(fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ffa90f32-c3d9-4ab2-83de-febe2db6cdff))
(fp_line (start -0.64944 0.00102) (end -1.55114 0.00102)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d8cf8f89-cb06-4c23-b75c-da8d0ab77c62))
(fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 39fda7db-6c81-42ce-b9dd-eca31db3c09e))
(fp_line (start -0.64944 0.00102) (end 0.50118 0.75032)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eb888ba6-9e9c-4b66-be04-c061da726187))
(fp_line (start 0.50118 0.00102) (end 1.4994 0.00102)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 66a62888-83a5-47bc-98f4-708cd785f003))
(fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 36f56327-6b75-4ebf-880b-b7b3dfd0f15a))
(fp_line (start 2.3 -1.5) (end -2.3 -1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 328f47ee-f6c3-4bbe-ad18-bca8b129ffbd))
(fp_line (start 2.3 -1.5) (end 2.3 1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 03179cf3-554f-48af-bc4e-55bfdfb81eab))
(fp_line (start 2.3 1.5) (end -2.3 1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8107e7b5-ad32-4fdc-8261-7b7f9448d889))
(pad "1" smd roundrect (at -2.5 0 90) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889)
(net 24 "Net-(D1-K)") (pinfunction "K") (pintype "passive") (tstamp 50c03bb7-2802-4190-916f-abd956469d3a))
(pad "2" smd roundrect (at 2.5 0 90) (size 3.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889)
(net 10 "12V") (pinfunction "A") (pintype "passive") (tstamp e9e25450-c7d3-44ca-81bb-7ca1eac3962a))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-0000615559f0)
(at 199.0744 85.2424)
(descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
(property "Sheetfile" "HF-PA-v10.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Polarized capacitor, small symbol")
(property "ki_keywords" "cap capacitor")
(path "/00000000-0000-0000-0000-00006068f2d2")
(attr through_hole)
(fp_text reference "C5" (at 4.8368 0 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d77cfc3b-e47d-4a4b-a26b-2a61332a068b)
)
(fp_text value "100u" (at 4.7256 -0.3424 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c46a8563-f6ad-4216-aca1-d5203f54e524)
)
(fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 08ee6580-c4ac-4937-ba25-2e47a3c24639)
)
(fp_line (start -1.554775 -1.475) (end -1.054775 -1.475)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2c3e67b1-96c0-45f6-9404-971ec81b82e8))
(fp_line (start -1.304775 -1.725) (end -1.304775 -1.225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a4cf9df5-dd33-4fa8-adee-4cecb500cbf2))
(fp_line (start 1.25 -2.58) (end 1.25 2.58)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f262fa98-c27f-4386-bca7-096ba73642c9))
(fp_line (start 1.29 -2.58) (end 1.29 2.58)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f1b8a053-0c03-4997-a1cf-d46c39a5a588))
(fp_line (start 1.33 -2.579) (end 1.33 2.579)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 403db8da-cc06-49df-b0e6-2bdab69d1218))
(fp_line (start 1.37 -2.578) (end 1.37 2.578)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a65bf228-70e6-4618-9291-960889325985))
(fp_line (start 1.41 -2.576) (end 1.41 2.576)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 948c553d-c142-4ad6-9452-b5aeb4ebc697))
(fp_line (start 1.45 -2.573) (end 1.45 2.573)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 15daedd5-db36-4195-b34f-c4ac4014d79e))
(fp_line (start 1.49 -2.569) (end 1.49 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d907e58a-e7e0-461f-8c4f-99684c8e977d))
(fp_line (start 1.49 1.04) (end 1.49 2.569)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4dec2979-e1c4-4a57-a0ec-d51d68d2a690))
(fp_line (start 1.53 -2.565) (end 1.53 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9dda131f-d61c-4e0f-a044-1832c5c6f0da))
(fp_line (start 1.53 1.04) (end 1.53 2.565)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 02edfc06-ead2-44bc-b211-36ce062e6657))
(fp_line (start 1.57 -2.561) (end 1.57 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 723aebb5-28e7-4dbc-8e35-b692d9dee00f))
(fp_line (start 1.57 1.04) (end 1.57 2.561)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0e80d6f8-6769-4608-a1eb-4c767ddc515b))
(fp_line (start 1.61 -2.556) (end 1.61 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1b53276a-0eb0-4e38-9f4e-dfc4937868c6))
(fp_line (start 1.61 1.04) (end 1.61 2.556)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2425578c-591d-4455-ba1b-8181a7bf80b2))
(fp_line (start 1.65 -2.55) (end 1.65 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f0b00f41-8323-4a08-a5a3-d787ae124d23))
(fp_line (start 1.65 1.04) (end 1.65 2.55)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 16d678d0-ba5c-44a7-98cc-4aebbf7a047b))
(fp_line (start 1.69 -2.543) (end 1.69 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fdda4b4f-f6cf-4616-870a-688875aef3e8))
(fp_line (start 1.69 1.04) (end 1.69 2.543)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b8e91681-81dd-4278-8d09-d749eba17e5e))
(fp_line (start 1.73 -2.536) (end 1.73 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f237d69f-eefd-4848-8453-5c1741e9226d))
(fp_line (start 1.73 1.04) (end 1.73 2.536)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6986d198-e2c7-47ab-8823-17bb32e46d09))
(fp_line (start 1.77 -2.528) (end 1.77 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 856e5d77-bb87-41c6-b581-0ea032898dca))
(fp_line (start 1.77 1.04) (end 1.77 2.528)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7c43ff4e-ab6e-46f5-bf1e-5557a3663a3b))
(fp_line (start 1.81 -2.52) (end 1.81 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19409627-2658-490e-86a3-f53c0762404c))
(fp_line (start 1.81 1.04) (end 1.81 2.52)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 42cac489-21ce-4559-a95e-3056de3887db))
(fp_line (start 1.85 -2.511) (end 1.85 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 07e42dfb-71ca-4a51-9fae-2919d4cf34ec))
(fp_line (start 1.85 1.04) (end 1.85 2.511)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 512a670d-0163-4840-82dc-7978474e0037))
(fp_line (start 1.89 -2.501) (end 1.89 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6f303caf-36c8-4c4f-8c9e-0a526a6b2bbb))
(fp_line (start 1.89 1.04) (end 1.89 2.501)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9283780e-2d92-4405-8075-292ea87e8df1))
(fp_line (start 1.93 -2.491) (end 1.93 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f18b4ee-0c60-426c-a22e-6299140a79db))
(fp_line (start 1.93 1.04) (end 1.93 2.491)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 600aa0ad-79e2-4005-92f4-9f8a91e87c5d))
(fp_line (start 1.971 -2.48) (end 1.971 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e73ea418-c90d-445e-bcde-e3773da98725))
(fp_line (start 1.971 1.04) (end 1.971 2.48)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5024aeb1-4c60-4864-b7e7-055361d301cc))
(fp_line (start 2.011 -2.468) (end 2.011 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ec5e3ce9-b069-4134-926c-97a62bc2530e))
(fp_line (start 2.011 1.04) (end 2.011 2.468)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 922addc4-eae1-4120-98dd-903b8820dc3d))
(fp_line (start 2.051 -2.455) (end 2.051 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1b75e6be-6046-4365-a15b-80f69effe5b5))
(fp_line (start 2.051 1.04) (end 2.051 2.455)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5d942c3-d63f-431b-a6a1-35f3a6559081))
(fp_line (start 2.091 -2.442) (end 2.091 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 91533cb6-6261-4674-9a5e-11925c5a587d))
(fp_line (start 2.091 1.04) (end 2.091 2.442)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5d8b7fb3-ecec-4ce4-9eb8-2b38e53e9133))
(fp_line (start 2.131 -2.428) (end 2.131 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2716103c-a54d-4bef-afd0-cfd05a47a292))
(fp_line (start 2.131 1.04) (end 2.131 2.428)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d29caea9-5551-407e-8cec-23183603c977))
(fp_line (start 2.171 -2.414) (end 2.171 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 996e9bff-8d0f-4a8a-aab7-a24a8263a764))
(fp_line (start 2.171 1.04) (end 2.171 2.414)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 23fda180-9f47-4caf-af80-ffb9d31986c0))
(fp_line (start 2.211 -2.398) (end 2.211 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 499cc276-4211-4374-b39b-a41ec628d0b5))
(fp_line (start 2.211 1.04) (end 2.211 2.398)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 407dc362-ecac-4735-b7be-0b48988eb282))
(fp_line (start 2.251 -2.382) (end 2.251 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4c9da36a-3db8-44ef-8791-c12a2f58c314))
(fp_line (start 2.251 1.04) (end 2.251 2.382)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 38099407-896a-4c9c-8211-69b606ceb046))
(fp_line (start 2.291 -2.365) (end 2.291 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e7651d5d-3193-4a84-98fb-8510d9cc6471))
(fp_line (start 2.291 1.04) (end 2.291 2.365)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b565cf32-8beb-41cc-954b-21105d10ee6e))
(fp_line (start 2.331 -2.348) (end 2.331 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c17e414a-1fa2-4c9d-8dad-978b34a92b02))
(fp_line (start 2.331 1.04) (end 2.331 2.348)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6fd3fb39-276b-4224-8eb2-e0da7b3b6335))
(fp_line (start 2.371 -2.329) (end 2.371 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eee4a78a-a8cf-4075-a45b-abf9aadf70d2))
(fp_line (start 2.371 1.04) (end 2.371 2.329)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7f575b54-1c9d-4b45-94b7-9b1a7662b102))
(fp_line (start 2.411 -2.31) (end 2.411 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e6b1a44c-d385-4947-9349-b7256d217d55))
(fp_line (start 2.411 1.04) (end 2.411 2.31)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7c6274ca-3edd-4299-80d0-521a6f998f8b))
(fp_line (start 2.451 -2.29) (end 2.451 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b04d06a6-c58f-483d-b209-6b86120ece41))
(fp_line (start 2.451 1.04) (end 2.451 2.29)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0e5f7e3b-8959-4f9c-91c0-f7f9ce1ba655))
(fp_line (start 2.491 -2.268) (end 2.491 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9f44d777-138f-4179-80a6-16fe0109c1ad))
(fp_line (start 2.491 1.04) (end 2.491 2.268)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2c0551e6-2e81-41d4-9e99-38e6e6b49882))
(fp_line (start 2.531 -2.247) (end 2.531 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2ba4c5e7-6087-4d74-8e2d-1fcce8201dd9))
(fp_line (start 2.531 1.04) (end 2.531 2.247)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ef13aa2-866c-4b81-b918-6afdac7531fb))
(fp_line (start 2.571 -2.224) (end 2.571 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8ac2062f-7a5e-4346-bc96-fba14cb33708))
(fp_line (start 2.571 1.04) (end 2.571 2.224)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1ed7632d-a28d-412d-98ed-d5a83b36c654))
(fp_line (start 2.611 -2.2) (end 2.611 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dd32fd84-284a-408f-8bd5-3b7b28b672fc))
(fp_line (start 2.611 1.04) (end 2.611 2.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7269752e-8f5c-48ac-890f-dcdbad050c20))
(fp_line (start 2.651 -2.175) (end 2.651 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 33da0e4f-6874-45c1-8e9f-11d2f972ef76))
(fp_line (start 2.651 1.04) (end 2.651 2.175)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f596b4a5-56d9-46ae-a48e-6e028262964b))
(fp_line (start 2.691 -2.149) (end 2.691 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 210a2647-ae62-49a5-9241-6a212c68b268))
(fp_line (start 2.691 1.04) (end 2.691 2.149)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f2b599d1-404d-4aae-a413-45f034c35e0a))
(fp_line (start 2.731 -2.122) (end 2.731 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 69c84ae1-5aba-44ba-8d8c-cf3b50e29967))
(fp_line (start 2.731 1.04) (end 2.731 2.122)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 795531cf-7b1d-4089-abf2-8da61fae21d9))
(fp_line (start 2.771 -2.095) (end 2.771 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ad7d7a8b-8d9f-4dab-aa10-0a52e6b82463))
(fp_line (start 2.771 1.04) (end 2.771 2.095)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e2e5b6b7-4d0c-4311-979d-2db3cd24f1bd))
(fp_line (start 2.811 -2.065) (end 2.811 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1c11dd46-08a5-4356-9ca3-4b5c7d0cb2a0))
(fp_line (start 2.811 1.04) (end 2.811 2.065)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d45b5ea6-ef37-4547-aad4-823d6a90c235))
(fp_line (start 2.851 -2.035) (end 2.851 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 75cc3bed-4879-4aa8-88c7-756d52f88c14))
(fp_line (start 2.851 1.04) (end 2.851 2.035)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d506aba6-0bf1-47bf-bd72-841bc7b1905d))
(fp_line (start 2.891 -2.004) (end 2.891 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 73caa2f8-cd02-406a-9078-ea9ed39a9dcf))
(fp_line (start 2.891 1.04) (end 2.891 2.004)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dedc6147-7285-4ba3-a267-f0bd1bfb90bf))
(fp_line (start 2.931 -1.971) (end 2.931 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4e467340-19a6-4e58-a633-8a22ba3d8ea8))
(fp_line (start 2.931 1.04) (end 2.931 1.971)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 04e2186d-87ff-49a0-84f5-5685f1b429ee))
(fp_line (start 2.971 -1.937) (end 2.971 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 17438194-2b9c-46b1-b6ff-fed20800e8e3))
(fp_line (start 2.971 1.04) (end 2.971 1.937)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 95ec6f5a-94b3-4d32-b655-773260a526f1))
(fp_line (start 3.011 -1.901) (end 3.011 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fcf93f4b-f9ec-4dfe-9c55-f1d74b0c8a12))
(fp_line (start 3.011 1.04) (end 3.011 1.901)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 78c980ce-56f6-4755-81e7-3da905222105))
(fp_line (start 3.051 -1.864) (end 3.051 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 44dcf59e-8c2d-465d-a4ff-3e513c710a51))
(fp_line (start 3.051 1.04) (end 3.051 1.864)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2d9fc17c-e1e3-4c39-907f-2db183313402))
(fp_line (start 3.091 -1.826) (end 3.091 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 31946802-de85-4af6-8d8f-c712df4d5596))
(fp_line (start 3.091 1.04) (end 3.091 1.826)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1467df1c-1940-4e33-a35e-754367e115fa))
(fp_line (start 3.131 -1.785) (end 3.131 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ac65b20c-36af-4002-9bce-f0f7b4ae695e))
(fp_line (start 3.131 1.04) (end 3.131 1.785)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c3177a65-2046-4898-bab5-de6e9d0f707f))
(fp_line (start 3.171 -1.743) (end 3.171 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fafec5e2-7c9d-4266-8790-8727cabac452))
(fp_line (start 3.171 1.04) (end 3.171 1.743)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 72c6d3ef-0307-4fa8-9211-cab50477790f))
(fp_line (start 3.211 -1.699) (end 3.211 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6c42c29a-bf78-4000-8836-ee116ecbb6e2))
(fp_line (start 3.211 1.04) (end 3.211 1.699)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ce609782-db4e-49e9-8c59-d9cae5e9fb7d))
(fp_line (start 3.251 -1.653) (end 3.251 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 36be1cae-8fc7-485a-ad8f-c33d57979f5a))
(fp_line (start 3.251 1.04) (end 3.251 1.653)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f40d48f-9841-4d5d-ab03-31e8482065a2))
(fp_line (start 3.291 -1.605) (end 3.291 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c428353a-bb28-4cbe-8b37-099b59a39fb9))
(fp_line (start 3.291 1.04) (end 3.291 1.605)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 28d72314-6fc9-405c-9e9c-1cc6208b16fb))
(fp_line (start 3.331 -1.554) (end 3.331 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1c4e3534-5707-457c-b949-4a7c5742daef))
(fp_line (start 3.331 1.04) (end 3.331 1.554)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c95239b8-57c7-4441-bfeb-0497cbd15f1e))
(fp_line (start 3.371 -1.5) (end 3.371 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5adc801d-9518-4d59-a2d5-388052ca3aa9))
(fp_line (start 3.371 1.04) (end 3.371 1.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 94bf57f6-9abc-4eb6-81b9-045269d719df))
(fp_line (start 3.411 -1.443) (end 3.411 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 15f99f84-deaf-46b3-be83-10436d5de06b))
(fp_line (start 3.411 1.04) (end 3.411 1.443)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d638de96-de8f-44f3-a766-151192d5a258))
(fp_line (start 3.451 -1.383) (end 3.451 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 73f6825e-a5d5-426e-bdc6-1971b0ad4971))
(fp_line (start 3.451 1.04) (end 3.451 1.383)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3c7739df-a60a-435c-9d9e-d7e4e3ececa3))
(fp_line (start 3.491 -1.319) (end 3.491 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp da91f61e-ef4e-4dd7-a75f-2326ab7637e2))
(fp_line (start 3.491 1.04) (end 3.491 1.319)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 04278f12-0f99-4b1e-908c-a77dff697d89))
(fp_line (start 3.531 -1.251) (end 3.531 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5ef2e9c-1b1b-47ce-87d1-5fa16f2b1d42))
(fp_line (start 3.531 1.04) (end 3.531 1.251)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7f27f63b-f869-4b57-bad5-8a3308258b8d))
(fp_line (start 3.571 -1.178) (end 3.571 1.178)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3dc27c3d-b20c-4f0f-abf2-331620d0341b))
(fp_line (start 3.611 -1.098) (end 3.611 1.098)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 521fdea5-e775-4e20-853c-8e1f5ddaa576))
(fp_line (start 3.651 -1.011) (end 3.651 1.011)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0e8e3799-c8e4-404f-929d-abfff8ca6cfc))
(fp_line (start 3.691 -0.915) (end 3.691 0.915)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 38cc93aa-df85-40cc-a555-86dd0c9854e6))
(fp_line (start 3.731 -0.805) (end 3.731 0.805)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 79fff450-6c25-460d-b52e-069dd0b2b264))
(fp_line (start 3.771 -0.677) (end 3.771 0.677)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4e648d25-9f7d-47f0-882e-d19bd963835d))
(fp_line (start 3.811 -0.518) (end 3.811 0.518)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c949583e-b066-4810-b6cb-46f5812b1982))
(fp_line (start 3.851 -0.284) (end 3.851 0.284)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c2caa09d-f6a4-476e-9c9f-2aed43f307d5))
(fp_circle (center 1.25 0) (end 3.87 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp e72d0fac-cee1-4874-8264-b0319965821c))
(fp_circle (center 1.25 0) (end 4 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp f528b9ab-787f-4759-a85c-abe4b97f3f77))
(fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e5e183cc-c206-469f-879a-93a76f09c451))
(fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 808f4aa6-aba0-4039-bf6f-282b88c12f0c))
(fp_circle (center 1.25 0) (end 3.75 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 98c766dd-bee0-4fef-9186-359b6863afe8))
(pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 13 "Net-(Q3-D)") (pintype "passive") (tstamp 1223d9ff-0f60-4a0e-979f-9b9163481a59))
(pad "2" thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pintype "passive") (tstamp b693a32f-cd7f-4075-b5e3-8439d5c52c5b))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tstamp 09a0daa2-8a7d-470b-b5eb-e39d631826f7)
(at 203.015 71.6175 90)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "HF-PA-v10.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/ce4e53c9-3b16-455d-98dc-b0b3228555ea")
(attr smd)
(fp_text reference "R2" (at 0 -1.82 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f6a530b-ed30-4b4d-b345-5eb4f6a0868b)
)
(fp_text value "10k" (at 0.4 1.8 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3013a0ea-bb83-48a5-bb5c-acfbab7a6bea)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 9f773901-9a2b-40e7-bd56-884be572fe51)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fd274865-9c17-47c7-85f4-83762b2b842b))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9e865b77-1a9d-4053-9262-0ba786c63263))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6233e8c0-6498-470d-b3c0-e2ee4e159e28))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 82e50c38-79a6-4bae-ba95-9fca853f8577))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 489b1fd7-ae48-4098-938f-d2c95cc51e58))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 751009b1-b289-4dd8-b19e-acdb96ddf6ec))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f353d9ab-13d5-4c74-80b1-4d7080e82b15))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4502d3e0-0403-4439-b25c-f268b16451ba))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b2646235-ca5e-4c3b-87d8-a45ee606214d))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5a6fc374-4526-4105-acc7-5123f353af99))
(pad "1" smd roundrect (at -1.55 0 90) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 4 "PTT") (pintype "passive") (tstamp 3b0dceaf-9d76-4cc7-bd3b-13bf8ac9a6ea))
(pad "2" smd roundrect (at 1.55 0 90) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 1 "GND") (pintype "passive") (tstamp 291f81d6-44ec-4e74-b35f-a2c7840ba38c))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 10c9682a-1a24-4107-9746-de015096e007)
(at 192.025 70.3 90)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "HF-PA-v10.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/00000000-0000-0000-0000-000061332085")
(attr through_hole)
(fp_text reference "PI1" (at 2.5 1.475 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1a3e7314-4c0c-41ce-9446-6579ac27957c)
)
(fp_text value "VDC" (at 0 5.075 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 875c2e70-03f7-472d-9338-ba33d9a229fd)
)
(fp_text user "${REFERENCE}" (at 0 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3458d43c-d443-4675-8e9b-a1c9e041646a)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0ff3bac-93ca-4872-b828-4835bebfa3dc))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0cca5579-6a76-45fe-bcd0-99c53ad692dd))
(fp_line (start -1.33 1.27) (end -1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 25cc6fd0-3ab5-4e39-b2d7-f216ed67c0fc))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9c6a26ff-78b0-4e07-b789-decca4e1f7a8))
(fp_line (start -1.33 3.87) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6991b1ae-5cb4-4d6d-9b59-249c66bbde4c))
(fp_line (start 1.33 1.27) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0b5624e4-08e5-435e-ba2c-04b0e1feb484))
(fp_line (start -1.8 -1.8) (end -1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3962c78c-8d72-483e-b211-241b13d220e5))
(fp_line (start -1.8 4.35) (end 1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6f2dd841-0ecf-452c-a430-4e87dced4855))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7db08039-0f3d-47c7-9e0d-6f23e568a0e8))
(fp_line (start 1.8 4.35) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0960bcda-c073-4488-8cfb-f458f12e2b01))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9d3dfd35-b0bc-4980-863d-bd0cf0abdecd))
(fp_line (start -1.27 3.81) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 652025a6-bbaf-4f07-b5b7-e2355c6fcd7c))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e0ba0fda-b106-42d8-9b5b-ec5460e16304))
(fp_line (start 1.27 -1.27) (end 1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 90a97a4d-724a-4b81-af09-b4e9619a2beb))
(fp_line (start 1.27 3.81) (end -1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a808232a-c02c-4292-afde-c652dd832285))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "+VDC") (pinfunction "Pin_1") (pintype "passive") (tstamp f595c626-eee1-4b58-be6a-c29f42bb1564))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 95f6429f-60a8-48eb-9e08-bb3bff6a0bc4))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_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_P2.54mm_Vertical_KathodeUp" (layer "F.Cu")
(tstamp 1153e0a4-6828-4c14-a3c6-6fa437d4171a)
(at 180.8 76.268234 90)
(descr "Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=2.54mm, , 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 Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm")
(property "Sheetfile" "HF-PA-v10.kicad_sch")
(property "Sheetname" "")
(property "Sim.Device" "D")
(property "Sim.Pins" "1=K 2=A")
(property "ki_description" "Diode")
(property "ki_keywords" "diode")
(path "/2e9e6841-e3c0-40ab-b0fa-6fd2bf3d9659")
(attr through_hole)
(fp_text reference "D4" (at 1.27 -2.750635 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b8ae4ecd-8586-4890-8e5c-5c164a70eea2)
)
(fp_text value "2A+ Schottky (1N5822 / SR2100)" (at 1.27 3.639635 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f3e8317e-35df-43ce-b68e-4ea4044cc856)
)
(fp_text user "K" (at -2.1 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bb89bf26-dd05-4c12-a9ad-698bc178d9c5)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.750635 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2b6c3033-6b1f-4fb0-a377-f179c10444c2)
)
(fp_text user "K" (at -2.1 0 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 42510b5f-fcc2-4272-93d7-baf50cdb3df3)
)
(fp_arc (start 1.228847 -1.1) (mid 4.250877 -0.044974) (end 1.288449 1.167366)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7dd23226-d23f-4e90-b6bd-6381937bb3f6))
(fp_line (start -1.35 -1.6) (end -1.35 1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7ce79f41-f6f5-4c76-a0f7-7ef612096a4c))
(fp_line (start -1.35 1.6) (end 4.15 1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d0f965d7-f392-4c73-96a8-7257bb8ad6c0))
(fp_line (start 4.15 -1.6) (end -1.35 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b9c1e529-9367-412e-9534-7adbee4f50c9))
(fp_line (start 4.15 1.6) (end 4.15 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9de88b75-28ea-4208-b94f-d82615787a9b))
(fp_line (start 0 0) (end 2.54 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8e510ff2-005f-4334-843f-7b2437024b7e))
(fp_circle (center 2.54 0) (end 3.89 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 8b4c5737-89a3-439c-aae1-c46178e18877))
(pad "1" thru_hole rect (at 0 0 90) (size 2.2 2.2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 24 "Net-(D1-K)") (pinfunction "K") (pintype "passive") (tstamp 1e418c5b-37d3-4184-b50d-23d71f96c680))
(pad "2" thru_hole oval (at 2.54 0 90) (size 2.2 2.2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 2 "+VDC") (pinfunction "A") (pintype "passive") (tstamp e7f554e5-8e7b-4be6-9a76-c7baaf81a363))
(model "${KICAD6_3DMODEL_DIR}/Diode_THT.3dshapes/D_DO-41_SOD81_P2.54mm_Vertical_KathodeUp.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad" (layer "F.Cu")
(tstamp 11b69437-01ee-4ad0-95e5-dfe751265082)
(at 142.343274 123.801274)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(property "Sheetfile" "HF-PA-v10.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/7174328d-b81a-44e6-aa9d-70c893c6e195")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at 0 -3.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5f6a90ae-0a1d-4645-80bd-b98c9fa7ba4a)
)
(fp_text value "MountingHole_Pad" (at 0 3.2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da873ffc-465a-4730-b559-a4ed80206eca)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9ae5c249-f64c-44b0-8ecb-848780ebed84)
)
(fp_circle (center 0 0) (end 2.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp f997ae2c-d677-4995-844b-381fd3712739))
(fp_circle (center 0 0) (end 2.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 9e4b85ff-db40-466b-9b9c-43471506c97f))
(pad "1" thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 280e1e95-01ce-448d-9e08-70106845b44e))
)
(footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" (layer "F.Cu")
(tstamp 1204a7ef-8423-4aca-a516-9c76339b5506)
(at 186.1 85.8 180)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "HF-PA-v10.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/898f4b25-0650-4650-aa20-2f39d6c9c008")
(attr smd)
(fp_text reference "C17" (at 3.1 0.1 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2cb6f1b6-7f9d-44f6-98cd-5d70f776dd5d)
)
(fp_text value "1n" (at -0.03 1.77) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0bc8a582-9748-4b59-b3a6-26ff2620237d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 6a97a70b-cc7e-4822-a985-c085086adc4b)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 13872c7c-b3d6-4934-9aab-f4afdb68a19a))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7111bd1a-a38b-428d-af37-f28cd3b6784d))
(fp_line (start -2.48 -1.15) (end 2.48 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fecf4d62-ed7a-4964-bfac-c0c4096112ef))
(fp_line (start -2.48 1.15) (end -2.48 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f54438c3-c7f6-4068-8c6e-b3560ec3c761))
(fp_line (start 2.48 -1.15) (end 2.48 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 96e18468-fe8a-4867-b8e7-efb3713d90ab))
(fp_line (start 2.48 1.15) (end -2.48 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4ec7e68a-6a92-42fb-8165-2a9293e5c727))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a8879d8d-db62-45ad-8e14-c7782ee689fc))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c84ff5c-1908-4109-b02d-34125a37d5ed))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 12b9e303-da69-4e0c-bbd5-4ed3bf288e05))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1d49062c-b5c5-42f5-b69c-b5fb064baade))
(pad "1" smd roundrect (at -1.5625 0 180) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 13 "Net-(Q3-D)") (pintype "passive") (tstamp 58a1332a-8baa-478f-9ab8-ecb72e9a03bc))
(pad "2" smd roundrect (at 1.5625 0 180) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 1 "GND") (pintype "passive") (tstamp e02d0279-1d79-4794-b8f5-5033ee90a547))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23-5_HandSoldering" (layer "F.Cu")
(tstamp 1374b1c6-ac83-4688-b5e7-892be399c94d)
(at 166.925 107.35)
(descr "5-pin SOT23 package")
(tags "SOT-23-5 hand-soldering")
(property "Availability" "In Stock")
(property "Check_prices" "https://www.snapeda.com/parts/UCC27517DBVR/Texas+Instruments/view-part/?ref=eda")
(property "Description" "\n4-A/4-A single-channel gate driver with 5-V UVLO and 13-ns prop delay in SOT-23 package\n")
(property "MF" "Texas Instruments")
(property "MP" "UCC27517DBVR")
(property "Package" "SOT-23-5 Texas Instruments")
(property "Price" "None")
(property "Purchase-URL" "https://pricing.snapeda.com/search?q=UCC27517DBVR&ref=eda")
(property "Sheetfile" "HF-PA-v10.kicad_sch")
(property "Sheetname" "")
(property "SnapEDA_Link" "https://www.snapeda.com/parts/UCC27517DBVR/Texas+Instruments/view-part/?ref=snap")
(path "/dd90f11b-730e-48c7-b886-9637b915f9f0")
(attr smd)
(fp_text reference "U2" (at -1.595 -2.44) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 30e7aee7-4b5e-4331-91b9-79af8051c86a)
)
(fp_text value "UCC27517DBVR" (at 0 2.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1d440c77-f8cc-4990-a4b7-c24c69f43024)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 2185d439-d5fd-4277-858a-e2756c8f4c8a)
)
(fp_line (start -0.9 1.61) (end 0.9 1.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19fa9a61-a0e1-460a-abce-8fe6f079ef9a))
(fp_line (start 0.9 -1.61) (end -1.55 -1.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dcf9631e-887f-4c48-8217-5707b4e84df9))
(fp_line (start -2.38 -1.8) (end -2.38 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b0d90e6b-d1c7-4700-bdd5-13c18825724d))
(fp_line (start -2.38 -1.8) (end 2.38 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 65d146f8-abc5-45ad-b3c8-e9a5aadaef18))
(fp_line (start 2.38 1.8) (end -2.38 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9a3367ed-8acc-4b65-b62d-1a368ac83f63))
(fp_line (start 2.38 1.8) (end 2.38 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2594f1d5-2652-45bd-974e-182233d3a528))
(fp_line (start -0.9 -0.9) (end -0.9 1.55)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c25cb1f9-fac8-4d03-bb39-ddff3565db8f))
(fp_line (start -0.9 -0.9) (end -0.25 -1.55)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c00dc941-648e-40ed-acf1-54a01d12d54f))
(fp_line (start 0.9 -1.55) (end -0.25 -1.55)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a68c1356-453a-4773-a8d0-2ebdbec4e01e))
(fp_line (start 0.9 -1.55) (end 0.9 1.55)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 342a5aef-b83e-4717-a530-406350fe18ca))
(fp_line (start 0.9 1.55) (end -0.9 1.55)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 33e37c2d-2b38-446b-b2f8-8dd92edfab89))
(pad "1" smd rect (at -1.35 -0.95) (size 1.56 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "12V") (pinfunction "VDD") (pintype "input") (tstamp a0f16d3d-20c8-46ad-a4a0-0f46b1f55c28))
(pad "2" smd rect (at -1.35 0) (size 1.56 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp dd9db9c9-1958-4a45-b07a-660c8c619ae5))