-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMOSFEaTher.kicad_pcb
16077 lines (16034 loc) · 628 KB
/
MOSFEaTher.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 "MOSFEaTher")
(date "2022-05-07")
(rev "03")
(comment 1 "Author: Martin Weigel")
(comment 4 "MOSFET board for the Adafruit HUZZAH32 (ESP32 Feather)")
)
(layers
(0 "F.Cu" power)
(31 "B.Cu" power)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber")
)
)
(net 0 "")
(net 1 "unconnected-(A1-Pad1)")
(net 2 "+3V3")
(net 3 "unconnected-(A1-Pad3)")
(net 4 "GND")
(net 5 "unconnected-(A1-Pad5)")
(net 6 "unconnected-(A1-Pad6)")
(net 7 "unconnected-(A1-Pad7)")
(net 8 "unconnected-(A1-Pad8)")
(net 9 "unconnected-(A1-Pad9)")
(net 10 "unconnected-(A1-Pad10)")
(net 11 "unconnected-(A1-Pad11)")
(net 12 "unconnected-(A1-Pad12)")
(net 13 "unconnected-(A1-Pad13)")
(net 14 "unconnected-(A1-Pad14)")
(net 15 "unconnected-(A1-Pad15)")
(net 16 "/PWM8")
(net 17 "unconnected-(A1-Pad17)")
(net 18 "unconnected-(A1-Pad18)")
(net 19 "/PWM2")
(net 20 "/PWM3")
(net 21 "/PWM4")
(net 22 "/PWM5")
(net 23 "/PWM6")
(net 24 "/PWM7")
(net 25 "unconnected-(A1-Pad27)")
(net 26 "unconnected-(A1-Pad28)")
(net 27 "VDD")
(net 28 "/PWM1")
(net 29 "Net-(J1-Pad2)")
(net 30 "Net-(J2-Pad2)")
(net 31 "Net-(J3-Pad2)")
(net 32 "Net-(J4-Pad2)")
(net 33 "Net-(J5-Pad2)")
(net 34 "Net-(J6-Pad2)")
(net 35 "Net-(J7-Pad2)")
(net 36 "Net-(J8-Pad2)")
(net 37 "+5V")
(net 38 "Net-(Q1-Pad1)")
(net 39 "Net-(Q2-Pad1)")
(net 40 "Net-(Q3-Pad1)")
(net 41 "Net-(Q4-Pad1)")
(net 42 "Net-(Q5-Pad1)")
(net 43 "Net-(Q6-Pad1)")
(net 44 "Net-(Q7-Pad1)")
(net 45 "Net-(Q8-Pad1)")
(net 46 "+12V")
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 0e0f9829-27a5-43b2-a0ae-121d3ce72ef4)
(at 96.775 67.05)
(descr "Mounting Hole 3.2mm, M3, DIN965")
(tags "mounting hole 3.2mm m3 din965")
(property "Sheetfile" "MOSFEaTher.kicad_sch")
(property "Sheetname" "")
(path "/c63ad4b1-3434-4817-93ad-d12ee4bb1af9")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ec620b77-8919-4285-a6c0-f21b0acac14b)
)
(fp_text value "MountingHole_Pad" (at 0 3.8) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ea31f51c-3f0e-4e37-9fd4-9e1b1b7d7784)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d2f6c7ec-fb14-4c80-b507-e05e76c13bdf)
)
(fp_circle (center 0 0) (end 2.8 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 4e9a87a3-418a-43a4-a902-c2e3103424a6))
(fp_circle (center 0 0) (end 3.05 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp d51ba27b-8ed7-4eca-b0be-3ba1363dff58))
(pad "1" thru_hole circle (at 0 0) (size 5.6 5.6) (drill 3.2) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "1") (pintype "input") (tstamp fb07492c-d4ca-4a78-b92a-c3b14ed44b3f))
)
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MPT-0,5-2-2.54_1x02_P2.54mm_Horizontal" (layer "F.Cu")
(tedit 5B294F98) (tstamp 17bfb2da-c5fc-4e07-91e1-b9c5ab3fe262)
(at 98.525 32.22 90)
(descr "Terminal Block Phoenix MPT-0,5-2-2.54, 2 pins, pitch 2.54mm, size 5.54x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725656-920552.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MPT-0,5-2-2.54 pitch 2.54mm size 5.54x6.2mm^2 drill 1.1mm pad 2.2mm")
(property "Sheetfile" "MOSFEaTher.kicad_sch")
(property "Sheetname" "")
(path "/2438943e-b5a5-4c67-aa76-712886194fd1")
(attr through_hole)
(fp_text reference "J5" (at 1.27 -4.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86960213-2693-47e1-b326-e76a23d0259a)
)
(fp_text value "GPIO 33" (at -3.53 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e7f4f65b-4817-4bf4-8a32-98fca2dc75cb)
)
(fp_text user "${REFERENCE}" (at 1.27 2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 55a4aa31-3b32-463a-ba6d-3748b48c1bb5)
)
(fp_line (start 3.33 3.16) (end 4.1 3.16) (layer "F.SilkS") (width 0.12) (tstamp 1ae937f3-6362-41be-91e8-31a4c41cd4db))
(fp_line (start 0.79 3.16) (end 1.75 3.16) (layer "F.SilkS") (width 0.12) (tstamp 2cd5ef3f-7192-4e09-8416-f9427ed5ab4b))
(fp_line (start -1.56 -3.16) (end 4.1 -3.16) (layer "F.SilkS") (width 0.12) (tstamp 4eea8901-693e-4bab-9813-6b166be4ff8f))
(fp_line (start 3.33 2.6) (end 4.1 2.6) (layer "F.SilkS") (width 0.12) (tstamp 4f6aa278-908b-4606-ab16-3f89a1d8ebf8))
(fp_line (start -1.8 2.66) (end -1.8 3.4) (layer "F.SilkS") (width 0.12) (tstamp 593b6382-e8d0-4286-af7e-c963ce1047fa))
(fp_line (start -1.56 -3.16) (end -1.56 3.16) (layer "F.SilkS") (width 0.12) (tstamp 70379515-959d-4646-8467-4ecd8407148a))
(fp_line (start -1.8 3.4) (end -1.3 3.4) (layer "F.SilkS") (width 0.12) (tstamp ab3fca1c-45bb-469f-9f25-aa7e33ef6c3f))
(fp_line (start 0.79 2.6) (end 1.75 2.6) (layer "F.SilkS") (width 0.12) (tstamp b6977247-0e8e-422f-b397-a64eed1d46da))
(fp_line (start 4.1 -3.16) (end 4.1 3.16) (layer "F.SilkS") (width 0.12) (tstamp c1aa5d71-e58c-4cc6-a009-40e4a06e0e62))
(fp_line (start -1.56 -2.7) (end 4.1 -2.7) (layer "F.SilkS") (width 0.12) (tstamp dbe385c6-e91f-43c7-a63d-4da8ea5e8e89))
(fp_line (start -1.56 2.6) (end -0.79 2.6) (layer "F.SilkS") (width 0.12) (tstamp f14a4953-2b73-43fc-aef6-e15f67af62eb))
(fp_line (start -1.56 3.16) (end -0.79 3.16) (layer "F.SilkS") (width 0.12) (tstamp f52d2bef-e44b-4029-9335-e50fd8ba2057))
(fp_line (start -2 3.6) (end 4.54 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 4118ca42-cbf5-4007-8f00-3c853caebfae))
(fp_line (start 4.54 -3.6) (end -2 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp eec9adee-0ca3-4f4a-bc2a-d385e11c22f3))
(fp_line (start 4.54 3.6) (end 4.54 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp eef0b708-d745-482f-aca0-70f6e8b031a8))
(fp_line (start -2 -3.6) (end -2 3.6) (layer "F.CrtYd") (width 0.05) (tstamp f744641e-4674-436f-97f8-bda7558362c2))
(fp_line (start -1.5 2.6) (end 4.04 2.6) (layer "F.Fab") (width 0.1) (tstamp 0dd8a88a-3c85-402b-a2dd-d98bc5ddbd5e))
(fp_line (start 0.701 -0.835) (end -0.835 0.7) (layer "F.Fab") (width 0.1) (tstamp 11fed0fd-e478-4d70-a2a4-ec27e972ebf4))
(fp_line (start 3.375 -0.7) (end 1.84 0.835) (layer "F.Fab") (width 0.1) (tstamp 2c9e77bc-a78b-4385-bbfd-f567e0df96c3))
(fp_line (start -1.5 2.6) (end -1.5 -3.1) (layer "F.Fab") (width 0.1) (tstamp 2db73e12-8d55-4c9f-9111-06321ff1bf3b))
(fp_line (start -1.5 -3.1) (end 4.04 -3.1) (layer "F.Fab") (width 0.1) (tstamp 397c7179-11c5-4ba2-8026-b27a0edfc173))
(fp_line (start -1.5 -2.7) (end 4.04 -2.7) (layer "F.Fab") (width 0.1) (tstamp 3aa9856c-47e9-4ecc-b55c-c27c5da2092b))
(fp_line (start 0.835 -0.7) (end -0.701 0.835) (layer "F.Fab") (width 0.1) (tstamp 4d24f783-afb0-42a0-9683-e8b59325e024))
(fp_line (start 3.241 -0.835) (end 1.706 0.7) (layer "F.Fab") (width 0.1) (tstamp 5e131de0-59dd-4487-8337-de0dce828791))
(fp_line (start 4.04 -3.1) (end 4.04 3.1) (layer "F.Fab") (width 0.1) (tstamp 611b89fe-c54b-4f54-9b17-d4142ae633a4))
(fp_line (start -1 3.1) (end -1.5 2.6) (layer "F.Fab") (width 0.1) (tstamp 7df80943-5e57-4498-aea6-993562316ae9))
(fp_line (start 4.04 3.1) (end -1 3.1) (layer "F.Fab") (width 0.1) (tstamp a944a0a0-302a-485c-ac01-78d811b92b30))
(fp_circle (center 0 0) (end 1.1 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 33dd8803-71f2-44bd-b4cc-8dfca4a89608))
(fp_circle (center 2.54 0) (end 3.64 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp e7073ff3-5477-4e8e-8eac-c6c839211d13))
(pad "" np_thru_hole circle (at 2.54 2.54 90) (size 1.1 1.1) (drill 1.1) (layers *.Cu *.Mask) (tstamp 8454cb6b-0849-4c10-be37-c442a713f93e))
(pad "" np_thru_hole circle (at 0 2.54 90) (size 1.1 1.1) (drill 1.1) (layers *.Cu *.Mask) (tstamp 9eb142f5-c818-4799-9b6e-f56193c12346))
(pad "1" thru_hole rect (at 0 0 90) (size 2.2 2.2) (drill 1.1) (layers *.Cu *.Mask)
(net 27 "VDD") (pinfunction "Pin_1") (pintype "passive") (tstamp fc4c5b7f-1db9-479f-ba4e-7302e24bc012))
(pad "2" thru_hole circle (at 2.54 0 90) (size 2.2 2.2) (drill 1.1) (layers *.Cu *.Mask)
(net 33 "Net-(J5-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 2bfcf6e0-11c2-44b1-80ee-745466c52dd6))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MPT-0,5-2-2.54_1x02_P2.54mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:TO-252-2" (layer "F.Cu")
(tedit 5A70A390) (tstamp 18d8abaa-19c1-45ff-b0a6-4a9fbd8b1327)
(at 88.675 40.763333)
(descr "TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/")
(tags "DPAK TO-252 DPAK-3 TO-252-3 SOT-428")
(property "Sheetfile" "MOSFEaTher.kicad_sch")
(property "Sheetname" "")
(path "/884fa2e1-b91a-45b8-a043-b1ed283291c0")
(attr smd)
(fp_text reference "Q6" (at 0.025 4.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7039daa0-8fbe-4fdd-8fe6-857ecf015e49)
)
(fp_text value "STD7NK40Z" (at 0 4.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 93450976-0cb7-4814-822b-881aa49d80ad)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fcf13612-6ee9-491a-ac58-f518c1fd5742)
)
(fp_line (start -2.47 -3.45) (end -2.47 -3.18) (layer "F.SilkS") (width 0.12) (tstamp 7123082d-6905-4d3a-bb4e-8ec6161fa741))
(fp_line (start -2.47 -3.18) (end -5.3 -3.18) (layer "F.SilkS") (width 0.12) (tstamp 7f1071c0-9149-45d0-a92a-30725c431ec1))
(fp_line (start -0.97 3.45) (end -2.47 3.45) (layer "F.SilkS") (width 0.12) (tstamp 82ac7f36-0833-480e-b907-9745ca7ca4f9))
(fp_line (start -2.47 3.18) (end -3.57 3.18) (layer "F.SilkS") (width 0.12) (tstamp 8b353f3b-d551-4621-9d55-57916af604b2))
(fp_line (start -0.97 -3.45) (end -2.47 -3.45) (layer "F.SilkS") (width 0.12) (tstamp ed8f0653-64b3-4729-ac54-faa0cb350b23))
(fp_line (start -2.47 3.45) (end -2.47 3.18) (layer "F.SilkS") (width 0.12) (tstamp fcf9f414-02c4-4fec-a256-798c611f1c57))
(fp_line (start 5.55 -3.5) (end -5.55 -3.5) (layer "F.CrtYd") (width 0.05) (tstamp 00c55c1c-0cba-4f17-bcf3-9b5b05423d3b))
(fp_line (start -5.55 3.5) (end 5.55 3.5) (layer "F.CrtYd") (width 0.05) (tstamp 14402da7-aa14-4f51-9c77-4cb07e5abca1))
(fp_line (start 5.55 3.5) (end 5.55 -3.5) (layer "F.CrtYd") (width 0.05) (tstamp a00f68bb-ee61-4ac7-8c3a-3ba7c93ca3dc))
(fp_line (start -5.55 -3.5) (end -5.55 3.5) (layer "F.CrtYd") (width 0.05) (tstamp b87cd799-25ce-4945-86bb-105989ba247b))
(fp_line (start 3.95 -3.25) (end 3.95 3.25) (layer "F.Fab") (width 0.1) (tstamp 01960b21-575a-4d3d-b069-91e54760a01e))
(fp_line (start 3.95 -2.7) (end 4.95 -2.7) (layer "F.Fab") (width 0.1) (tstamp 2520ef0f-2c3f-4f87-8160-b56bbdf830a2))
(fp_line (start -4.97 2.655) (end -2.27 2.655) (layer "F.Fab") (width 0.1) (tstamp 2d09bdfd-a6c5-427d-8a7f-fcce2026b09a))
(fp_line (start -4.97 -1.905) (end -2.27 -1.905) (layer "F.Fab") (width 0.1) (tstamp 3b411859-c475-4152-8f3c-e97504e9815d))
(fp_line (start -4.97 -2.655) (end -4.97 -1.905) (layer "F.Fab") (width 0.1) (tstamp 79b07a77-61f2-4588-8ca1-cd9d93652d3b))
(fp_line (start 3.95 3.25) (end -2.27 3.25) (layer "F.Fab") (width 0.1) (tstamp 7e5da8d0-bec9-4daa-a9a1-871fdaa0d15e))
(fp_line (start -2.27 3.25) (end -2.27 -2.25) (layer "F.Fab") (width 0.1) (tstamp 87fb9274-ce0a-43ed-9548-d862df88c4ff))
(fp_line (start -1.865 -2.655) (end -4.97 -2.655) (layer "F.Fab") (width 0.1) (tstamp a072b0ff-1f7a-45c3-af75-d1bbb7cec40b))
(fp_line (start -2.27 -2.25) (end -1.27 -3.25) (layer "F.Fab") (width 0.1) (tstamp a1e770e0-ecd6-4aa7-821c-6c5ac75b460b))
(fp_line (start -2.27 1.905) (end -4.97 1.905) (layer "F.Fab") (width 0.1) (tstamp c8d7a374-cd5e-44ac-b410-5396dbb56979))
(fp_line (start 4.95 -2.7) (end 4.95 2.7) (layer "F.Fab") (width 0.1) (tstamp e631b78c-5ebe-49d3-ac74-86ce32f8377f))
(fp_line (start -4.97 1.905) (end -4.97 2.655) (layer "F.Fab") (width 0.1) (tstamp ebdaa12a-f436-45e2-86d2-ef38b1ccd3b8))
(fp_line (start 4.95 2.7) (end 3.95 2.7) (layer "F.Fab") (width 0.1) (tstamp f106e3cf-c9fd-4997-98a8-021ef1e58b19))
(fp_line (start -1.27 -3.25) (end 3.95 -3.25) (layer "F.Fab") (width 0.1) (tstamp fada7a6a-6555-4c99-899e-76cb1976c774))
(pad "" smd rect (at 0.425 -1.525) (size 3.05 2.75) (layers "F.Paste") (tstamp 47f8feda-cdab-4cb7-833a-5d8c6b1e99a5))
(pad "" smd rect (at 3.775 -1.525) (size 3.05 2.75) (layers "F.Paste") (tstamp 9b43fb95-e64f-4883-81b7-f74720872524))
(pad "" smd rect (at 0.425 1.525) (size 3.05 2.75) (layers "F.Paste") (tstamp e56fb3e7-b1cd-44a7-b0d8-8b043c54e482))
(pad "" smd rect (at 3.775 1.525) (size 3.05 2.75) (layers "F.Paste") (tstamp f0616fbe-0b76-4323-9592-4637233b5dd1))
(pad "1" smd rect (at -4.2 -2.28) (size 2.2 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "Net-(Q6-Pad1)") (pinfunction "G") (pintype "passive") (tstamp 99df0b0d-a0d1-476e-8bf4-25488b46a13d))
(pad "2" smd rect (at 2.1 0) (size 6.4 5.8) (layers "F.Cu" "F.Mask")
(net 34 "Net-(J6-Pad2)") (pinfunction "D") (pintype "passive") (tstamp a9f92e22-6acf-408e-ad19-f57422bc2f18))
(pad "3" smd rect (at -4.2 2.28) (size 2.2 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "S") (pintype "passive") (tstamp 143f1439-c2ea-4633-a520-a38dc84d6de4))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/TO-252-2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 22999e73-da32-43a5-9163-4b3a41614f25)
(at 76.85 44.0436 180)
(descr "Resistor SMD 0805 (2012 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" "MOSFEaTher.kicad_sch")
(property "Sheetname" "")
(path "/5f6e226e-a567-408b-beb0-c8a8e2ec508f")
(attr smd)
(fp_text reference "R1" (at 2.9 -0.0564) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 597a11f2-5d2c-4a65-ac95-38ad106e1367)
)
(fp_text value "470" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 926001fd-2747-4639-8c0f-4fc46ff7218d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 40b14a16-fb82-4b9d-89dd-55cd98abb5cc)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 2d697cf0-e02e-4ed1-a048-a704dab0ee43))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp c09938fd-06b9-4771-9f63-2311626243b3))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 240c10af-51b5-420e-a6f4-a2c8f5db1db5))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 503dbd88-3e6b-48cc-a2ea-a6e28b52a1f7))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 592f25e6-a01b-47fd-8172-3da01117d00a))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp cb614b23-9af3-4aec-bed8-c1374e001510))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 20cca02e-4c4d-4961-b6b4-b40a1731b220))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 5487601b-81d3-4c70-8f3d-cf9df9c63302))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp a29f8df0-3fae-4edf-8d9c-bd5a875b13e3))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp e3fc1e69-a11c-4c84-8952-fefb9372474e))
(pad "1" smd roundrect (at -1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 24 "/PWM7") (pintype "passive") (tstamp 6e68f0cd-800e-4167-9553-71fc59da1eeb))
(pad "2" smd roundrect (at 1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 38 "Net-(Q1-Pad1)") (pintype "passive") (tstamp 658dad07-97fd-466c-8b49-21892ac96ea4))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MPT-0,5-2-2.54_1x02_P2.54mm_Horizontal" (layer "F.Cu")
(tedit 5B294F98) (tstamp 3bb6370c-713d-4d7f-8232-809c9ec621ba)
(at 98.525 51.386666 90)
(descr "Terminal Block Phoenix MPT-0,5-2-2.54, 2 pins, pitch 2.54mm, size 5.54x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725656-920552.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MPT-0,5-2-2.54 pitch 2.54mm size 5.54x6.2mm^2 drill 1.1mm pad 2.2mm")
(property "Sheetfile" "MOSFEaTher.kicad_sch")
(property "Sheetname" "")
(path "/1d8a5f29-2092-46a3-8ad7-875185e9b239")
(attr through_hole)
(fp_text reference "J7" (at 1.27 -4.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 447c289f-e3ea-4183-b81d-b7026faccfd7)
)
(fp_text value "GPIO 32" (at -3.53 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4fc9e638-a9e7-4d3f-b340-780df412591d)
)
(fp_text user "${REFERENCE}" (at 1.27 2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8eb5e770-d904-422f-814b-21543d34976a)
)
(fp_line (start -1.56 -3.16) (end -1.56 3.16) (layer "F.SilkS") (width 0.12) (tstamp 0548b5b4-cb6a-4383-985b-2777ce991c3e))
(fp_line (start -1.56 -2.7) (end 4.1 -2.7) (layer "F.SilkS") (width 0.12) (tstamp 13ca6f98-495b-4848-a1b9-619bdbf2e008))
(fp_line (start -1.8 3.4) (end -1.3 3.4) (layer "F.SilkS") (width 0.12) (tstamp 18648368-8315-41f6-b287-55706b48f79e))
(fp_line (start -1.8 2.66) (end -1.8 3.4) (layer "F.SilkS") (width 0.12) (tstamp 188bd81e-55cf-4eb8-ac51-32c0165c3b7f))
(fp_line (start -1.56 2.6) (end -0.79 2.6) (layer "F.SilkS") (width 0.12) (tstamp 207f3729-b16f-4bed-8e25-6323ca6af59d))
(fp_line (start 0.79 3.16) (end 1.75 3.16) (layer "F.SilkS") (width 0.12) (tstamp 2d5b3e10-9b65-4abf-803e-969a546fc8e3))
(fp_line (start -1.56 -3.16) (end 4.1 -3.16) (layer "F.SilkS") (width 0.12) (tstamp 3969f1a4-cee5-45d1-af73-48102fab1b79))
(fp_line (start -1.56 3.16) (end -0.79 3.16) (layer "F.SilkS") (width 0.12) (tstamp 4110e71c-ac60-4e49-a67d-42ff60f3a0ba))
(fp_line (start 3.33 2.6) (end 4.1 2.6) (layer "F.SilkS") (width 0.12) (tstamp 996c5414-4d36-42a5-a5a3-5c685d76f56d))
(fp_line (start 4.1 -3.16) (end 4.1 3.16) (layer "F.SilkS") (width 0.12) (tstamp c7f16784-da95-4ab7-905d-9889694975ee))
(fp_line (start 3.33 3.16) (end 4.1 3.16) (layer "F.SilkS") (width 0.12) (tstamp c8fb0e8c-a702-4abf-8afe-bedb64abe0e1))
(fp_line (start 0.79 2.6) (end 1.75 2.6) (layer "F.SilkS") (width 0.12) (tstamp de9814ea-c668-40c7-a581-41a00d5ad413))
(fp_line (start 4.54 3.6) (end 4.54 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 0bc4a849-5f93-40a7-8f00-efd98ea94086))
(fp_line (start -2 3.6) (end 4.54 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 253438e1-b2d5-45c8-bcfc-742c8344ecea))
(fp_line (start 4.54 -3.6) (end -2 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 95576a76-91bb-4db4-bcad-45ffa1fb7580))
(fp_line (start -2 -3.6) (end -2 3.6) (layer "F.CrtYd") (width 0.05) (tstamp fbc71af7-de54-4238-9761-e2dd07bc84ed))
(fp_line (start -1.5 -2.7) (end 4.04 -2.7) (layer "F.Fab") (width 0.1) (tstamp 0f8c7f8e-c569-41d5-a9c5-be2602986fec))
(fp_line (start -1.5 2.6) (end 4.04 2.6) (layer "F.Fab") (width 0.1) (tstamp 102c4f15-f7f0-47b3-b463-90324a621426))
(fp_line (start 4.04 3.1) (end -1 3.1) (layer "F.Fab") (width 0.1) (tstamp 20b6f547-8f23-4ca0-8198-b15b71fba76d))
(fp_line (start 4.04 -3.1) (end 4.04 3.1) (layer "F.Fab") (width 0.1) (tstamp 2a3045fd-49b2-4e17-94bf-b5864659b054))
(fp_line (start 0.701 -0.835) (end -0.835 0.7) (layer "F.Fab") (width 0.1) (tstamp 422c943d-0851-47e8-8fa0-a7c617f12578))
(fp_line (start -1.5 2.6) (end -1.5 -3.1) (layer "F.Fab") (width 0.1) (tstamp 9c614a92-4db0-4682-b200-e8121deaa926))
(fp_line (start 3.241 -0.835) (end 1.706 0.7) (layer "F.Fab") (width 0.1) (tstamp ce1871bd-0dbe-421e-af45-ef8b1716fbf2))
(fp_line (start 0.835 -0.7) (end -0.701 0.835) (layer "F.Fab") (width 0.1) (tstamp d92a0282-1577-4ce4-be7e-0b4d890f47ad))
(fp_line (start -1 3.1) (end -1.5 2.6) (layer "F.Fab") (width 0.1) (tstamp dc2f95e5-e18b-4da3-b935-6bac0924cb34))
(fp_line (start 3.375 -0.7) (end 1.84 0.835) (layer "F.Fab") (width 0.1) (tstamp deb67a9b-326e-4e7c-9ffe-380d8b743b4a))
(fp_line (start -1.5 -3.1) (end 4.04 -3.1) (layer "F.Fab") (width 0.1) (tstamp e6c57be4-076b-4791-b5f7-950dec1eba7d))
(fp_circle (center 2.54 0) (end 3.64 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 7f8398d1-1fcb-4b17-b71c-c5df98433848))
(fp_circle (center 0 0) (end 1.1 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp cb625889-a39e-48a1-b5ca-64b654415724))
(pad "" np_thru_hole circle (at 0 2.54 90) (size 1.1 1.1) (drill 1.1) (layers *.Cu *.Mask) (tstamp a4016004-dc80-4dea-8e6b-d39f67a11e91))
(pad "" np_thru_hole circle (at 2.54 2.54 90) (size 1.1 1.1) (drill 1.1) (layers *.Cu *.Mask) (tstamp facfc131-66c7-4b5b-b59f-7d81e0c94438))
(pad "1" thru_hole rect (at 0 0 90) (size 2.2 2.2) (drill 1.1) (layers *.Cu *.Mask)
(net 27 "VDD") (pinfunction "Pin_1") (pintype "passive") (tstamp 5b17d47a-a4a2-4ddf-966a-e6b5821094ec))
(pad "2" thru_hole circle (at 2.54 0 90) (size 2.2 2.2) (drill 1.1) (layers *.Cu *.Mask)
(net 35 "Net-(J7-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 5880b9b0-aa32-4505-8669-deb95429be37))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MPT-0,5-2-2.54_1x02_P2.54mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MPT-0,5-2-2.54_1x02_P2.54mm_Horizontal" (layer "F.Cu")
(tedit 5B294F98) (tstamp 3be93bf9-8c44-4bd5-ab0f-f48691dd7c5d)
(at 98.525 60.97 90)
(descr "Terminal Block Phoenix MPT-0,5-2-2.54, 2 pins, pitch 2.54mm, size 5.54x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725656-920552.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MPT-0,5-2-2.54 pitch 2.54mm size 5.54x6.2mm^2 drill 1.1mm pad 2.2mm")
(property "Sheetfile" "MOSFEaTher.kicad_sch")
(property "Sheetname" "")
(path "/959d4249-6f7d-4e27-a3c2-141ba04ecfd7")
(attr through_hole)
(fp_text reference "J8" (at 1.27 -4.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bd988d63-63f5-4347-8fd4-8694affd2c22)
)
(fp_text value "14" (at -3.18 2.05 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 52a2307e-13fb-47e4-a814-168f6f383b45)
)
(fp_text user "${REFERENCE}" (at 1.27 2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a2da6c4b-cf98-4d3d-b54c-e05e54dfd2b6)
)
(fp_line (start 3.33 2.6) (end 4.1 2.6) (layer "F.SilkS") (width 0.12) (tstamp 1875410c-e4b4-4ec3-b634-5e1a0d17ab0f))
(fp_line (start -1.8 3.4) (end -1.3 3.4) (layer "F.SilkS") (width 0.12) (tstamp 2db578cd-b125-49d3-b68b-3360b8f58d41))
(fp_line (start -1.56 3.16) (end -0.79 3.16) (layer "F.SilkS") (width 0.12) (tstamp 44ec5d8a-0a8a-4230-b003-6ed9c113dcbb))
(fp_line (start -1.56 -2.7) (end 4.1 -2.7) (layer "F.SilkS") (width 0.12) (tstamp 5278fb5e-f15e-42fe-84df-a59fee8119f1))
(fp_line (start -1.56 -3.16) (end -1.56 3.16) (layer "F.SilkS") (width 0.12) (tstamp 70e94f88-657e-428d-84a0-9ae84ea57cd7))
(fp_line (start 3.33 3.16) (end 4.1 3.16) (layer "F.SilkS") (width 0.12) (tstamp 973720a6-f461-4d46-b2fe-59915df69d25))
(fp_line (start -1.56 2.6) (end -0.79 2.6) (layer "F.SilkS") (width 0.12) (tstamp cb232dae-017e-46a0-81d3-8ae4432055dd))
(fp_line (start -1.8 2.66) (end -1.8 3.4) (layer "F.SilkS") (width 0.12) (tstamp d6a8f316-1392-4ab3-858a-2bdd1e8ab61d))
(fp_line (start 4.1 -3.16) (end 4.1 3.16) (layer "F.SilkS") (width 0.12) (tstamp df8f1fc7-0af7-4ef1-91a4-ae074793bf79))
(fp_line (start 0.79 3.16) (end 1.75 3.16) (layer "F.SilkS") (width 0.12) (tstamp e5c9e5a1-eb3c-47d6-be9a-b6b058a3d5d9))
(fp_line (start -1.56 -3.16) (end 4.1 -3.16) (layer "F.SilkS") (width 0.12) (tstamp fa2253b1-674a-48db-8f5b-f4c85dcb27ae))
(fp_line (start 0.79 2.6) (end 1.75 2.6) (layer "F.SilkS") (width 0.12) (tstamp fcf72183-7571-4ba1-a298-770fa333efdf))
(fp_line (start 4.54 -3.6) (end -2 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 480d5422-6d33-4319-a5c2-9ce1cd04fa90))
(fp_line (start -2 -3.6) (end -2 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 58f281db-090d-4a92-8a73-05e2a97a7ee9))
(fp_line (start -2 3.6) (end 4.54 3.6) (layer "F.CrtYd") (width 0.05) (tstamp cc490913-daab-4fa1-87b9-975705ee9dbd))
(fp_line (start 4.54 3.6) (end 4.54 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp e82e6c3a-dba3-44b6-823e-2bd844f08cca))
(fp_line (start -1.5 -2.7) (end 4.04 -2.7) (layer "F.Fab") (width 0.1) (tstamp 2b02e529-0dd1-4c56-92a3-7eb22d2ee260))
(fp_line (start 0.835 -0.7) (end -0.701 0.835) (layer "F.Fab") (width 0.1) (tstamp 3a6e1b00-aa08-416c-85dc-bf006b0a4a78))
(fp_line (start 3.241 -0.835) (end 1.706 0.7) (layer "F.Fab") (width 0.1) (tstamp 8d3d3e35-82e0-40ba-907a-a8ab9693853e))
(fp_line (start 4.04 -3.1) (end 4.04 3.1) (layer "F.Fab") (width 0.1) (tstamp ae5c31ab-a505-4959-ae0e-cec81fcbf815))
(fp_line (start -1.5 2.6) (end 4.04 2.6) (layer "F.Fab") (width 0.1) (tstamp b825db6d-eaf6-475d-bf93-964d29afb19e))
(fp_line (start 4.04 3.1) (end -1 3.1) (layer "F.Fab") (width 0.1) (tstamp d08f9431-ef8a-42b7-a850-bcd8bb770f1b))
(fp_line (start 3.375 -0.7) (end 1.84 0.835) (layer "F.Fab") (width 0.1) (tstamp da1874bd-bc34-4d30-85e0-173930a32a31))
(fp_line (start -1.5 -3.1) (end 4.04 -3.1) (layer "F.Fab") (width 0.1) (tstamp deba7d89-f9a2-4354-82a6-0d3192f950f8))
(fp_line (start -1.5 2.6) (end -1.5 -3.1) (layer "F.Fab") (width 0.1) (tstamp ecff6837-a08b-483d-9647-9310dfc674e3))
(fp_line (start 0.701 -0.835) (end -0.835 0.7) (layer "F.Fab") (width 0.1) (tstamp ed93faec-dea3-4b89-9648-290ad7f4effb))
(fp_line (start -1 3.1) (end -1.5 2.6) (layer "F.Fab") (width 0.1) (tstamp f68ae795-1f05-4a39-94cd-eb3e2d140979))
(fp_circle (center 2.54 0) (end 3.64 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 76adfc93-1bf2-41b7-b4bf-eb835ea8821f))
(fp_circle (center 0 0) (end 1.1 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 9858a585-1ecc-4893-a1c6-bacba18521ec))
(pad "" np_thru_hole circle (at 0 2.54 90) (size 1.1 1.1) (drill 1.1) (layers *.Cu *.Mask) (tstamp 3de5b137-b7ed-4a67-a65d-5332350a142e))
(pad "" np_thru_hole circle (at 2.54 2.54 90) (size 1.1 1.1) (drill 1.1) (layers *.Cu *.Mask) (tstamp 4a7a8704-b751-4f8c-aedf-2558a0174a72))
(pad "1" thru_hole rect (at 0 0 90) (size 2.2 2.2) (drill 1.1) (layers *.Cu *.Mask)
(net 27 "VDD") (pinfunction "Pin_1") (pintype "passive") (tstamp dc4ad6d5-b7e2-4098-b974-50466b3890e2))
(pad "2" thru_hole circle (at 2.54 0 90) (size 2.2 2.2) (drill 1.1) (layers *.Cu *.Mask)
(net 36 "Net-(J8-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 872056a8-3317-408d-800b-762b71027ed5))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MPT-0,5-2-2.54_1x02_P2.54mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Module:Adafruit_Feather" locked (layer "F.Cu")
(tedit 5F71FFF3) (tstamp 46491a9d-8b3d-4c74-b09a-70c876f162e5)
(at 60.6044 26.2636)
(descr "Common footprint for the Adafruit Feather series of boards, https://learn.adafruit.com/adafruit-feather/feather-specification")
(tags "Adafruit Feather")
(property "Sheetfile" "MOSFEaTher.kicad_sch")
(property "Sheetname" "")
(path "/d1c959b2-6911-4815-9cf9-f6d32730e347")
(attr through_hole)
(fp_text reference "A1" (at 10.16 -7.62) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da337fe1-c322-4637-ad26-2622b82ac8ee)
)
(fp_text value "Feather_HUZZAH32" (at 10.16 45.72) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8765371a-21c2-4fe3-a3af-88f5eb1f02a0)
)
(fp_line (start -1.38 -3.81) (end -1.38 41.91) (layer "F.SilkS") (width 0.12) (tstamp 2cd3975a-2259-4fa9-8133-e1586b9b9618))
(fp_line (start 19.05 44.56) (end 1.27 44.56) (layer "F.SilkS") (width 0.12) (tstamp 70abf340-8b3e-403e-a5e2-d8f35caa2f87))
(fp_line (start -1.7 1) (end -1.7 -1) (layer "F.SilkS") (width 0.12) (tstamp 7de6564c-7ad6-4d57-a54c-8d2835ff5cdc))
(fp_line (start 19.05 -6.46) (end 1.27 -6.46) (layer "F.SilkS") (width 0.12) (tstamp dff67d5c-d976-4516-ae67-dbbdb70f8ddd))
(fp_line (start 21.7 -3.81) (end 21.7 41.91) (layer "F.SilkS") (width 0.12) (tstamp fe4869dc-e96e-4bb4-a38d-2ca990635f2d))
(fp_arc (start 21.7 41.91) (mid 20.923833 43.783833) (end 19.05 44.56) (layer "F.SilkS") (width 0.12) (tstamp 3b6dda98-f455-4961-854e-3c4cceecffcc))
(fp_arc (start -1.38 -3.81) (mid -0.603833 -5.683833) (end 1.27 -6.46) (layer "F.SilkS") (width 0.12) (tstamp 68039801-1b0f-480a-861d-d55f24af0c17))
(fp_arc (start 19.05 -6.46) (mid 20.923833 -5.683833) (end 21.7 -3.81) (layer "F.SilkS") (width 0.12) (tstamp af6ac8e6-193c-4bd2-ac0b-7f515b538a8b))
(fp_arc (start 1.27 44.56) (mid -0.603833 43.783833) (end -1.38 41.91) (layer "F.SilkS") (width 0.12) (tstamp f6dcb5b4-0971-448a-b9ab-6db37a750704))
(fp_line (start 19.05 44.7) (end 1.27 44.7) (layer "F.CrtYd") (width 0.05) (tstamp 004b7456-c25a-480f-88f6-723c1bcd9939))
(fp_line (start 21.84 41.91) (end 21.84 -3.81) (layer "F.CrtYd") (width 0.05) (tstamp 42f10020-b50a-4739-a546-6b63e441c980))
(fp_line (start -1.52 41.91) (end -1.52 -3.81) (layer "F.CrtYd") (width 0.05) (tstamp b55dabdc-b790-4740-9349-75159cff975a))
(fp_line (start 19.05 -6.6) (end 1.27 -6.6) (layer "F.CrtYd") (width 0.05) (tstamp eafb53d1-7486-4935-b154-2efbffbed6ca))
(fp_arc (start 19.05 -6.6) (mid 21.022828 -5.782828) (end 21.84 -3.81) (layer "F.CrtYd") (width 0.05) (tstamp 6e9883d7-9642-4425-a248-b92a09f0624c))
(fp_arc (start 1.27 44.7) (mid -0.702828 43.882828) (end -1.52 41.91) (layer "F.CrtYd") (width 0.05) (tstamp 832b5a8c-7fe2-47ff-beee-cebf840750bb))
(fp_arc (start -1.52 -3.81) (mid -0.702828 -5.782828) (end 1.27 -6.6) (layer "F.CrtYd") (width 0.05) (tstamp b66731e7-61d5-4447-bf6a-e91a62b82298))
(fp_arc (start 21.84 41.91) (mid 21.022828 43.882828) (end 19.05 44.7) (layer "F.CrtYd") (width 0.05) (tstamp b8b15b51-8345-4a1d-8ecf-04fc15b9e450))
(fp_line (start 19.05 -6.35) (end 1.27 -6.35) (layer "F.Fab") (width 0.1) (tstamp 2d617fad-47fe-4db9-836a-4bceb9c31c3b))
(fp_line (start -0.381 0) (end -1.27 0.889) (layer "F.Fab") (width 0.1) (tstamp 2e36ce87-4661-4b8f-956a-16dc559e1b50))
(fp_line (start -1.27 -0.889) (end -0.381 0) (layer "F.Fab") (width 0.1) (tstamp 4688ff87-8262-46f4-ad96-b5f4e529cfa9))
(fp_line (start -1.27 -3.81) (end -1.27 41.91) (layer "F.Fab") (width 0.1) (tstamp 4d3a1f72-d521-46ae-8fe1-3f8221038335))
(fp_line (start 21.59 41.91) (end 21.59 -3.81) (layer "F.Fab") (width 0.1) (tstamp 6316acb7-63a1-40e7-8695-2822d4a240b5))
(fp_line (start 1.27 44.45) (end 19.05 44.45) (layer "F.Fab") (width 0.1) (tstamp c56bbebe-0c9a-418d-911e-b8ba7c53125d))
(fp_arc (start 1.221238 44.449532) (mid -0.543209 43.688728) (end -1.27 41.91) (layer "F.Fab") (width 0.1) (tstamp 5b70b09b-6762-4725-9d48-805300c0bdc8))
(fp_arc (start 21.59 41.91) (mid 20.846051 43.706051) (end 19.05 44.45) (layer "F.Fab") (width 0.1) (tstamp 6ce41a48-c5e2-4d5f-8548-1c7b5c309a8a))
(fp_arc (start -1.27 -3.81) (mid -0.526051 -5.606051) (end 1.27 -6.35) (layer "F.Fab") (width 0.1) (tstamp 843b53af-dd34-4db8-aa6b-5035b25affc7))
(fp_arc (start 19.05 -6.35) (mid 20.846051 -5.606051) (end 21.59 -3.81) (layer "F.Fab") (width 0.1) (tstamp 92bd1111-b941-4c03-b7ec-a08a9359bc50))
(pad "1" thru_hole rect locked (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "unconnected-(A1-Pad1)") (pinfunction "~{RESET}") (pintype "input+no_connect") (tstamp e80b0e91-f15f-4e36-9a9c-b2cfd5a01d2a))
(pad "2" thru_hole circle locked (at 0 2.54 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "+3V3") (pinfunction "3V3") (pintype "power_in") (tstamp 2295a793-dfca-4b86-a3e5-abf1834e2790))
(pad "3" thru_hole circle locked (at 0 5.08 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "unconnected-(A1-Pad3)") (pinfunction "NC") (pintype "no_connect") (tstamp e77c17df-b20e-4e7d-b937-f281c75a0014))
(pad "4" thru_hole circle locked (at 0 7.62 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "GND") (pintype "power_in") (tstamp a150f0c9-1a23-4200-b489-18791f6d5ce5))
(pad "5" thru_hole circle locked (at 0 10.16 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "unconnected-(A1-Pad5)") (pinfunction "DAC2/A0") (pintype "bidirectional+no_connect") (tstamp 0e592cd4-1950-44ef-9727-8e526f4c4e12))
(pad "6" thru_hole circle locked (at 0 12.7 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "unconnected-(A1-Pad6)") (pinfunction "DAC1/A1") (pintype "bidirectional+no_connect") (tstamp 5bbde4f9-fcdb-4d27-a2d6-3847fcdd87ba))
(pad "7" thru_hole circle locked (at 0 15.24 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "unconnected-(A1-Pad7)") (pinfunction "I34/A2") (pintype "bidirectional+no_connect") (tstamp 300aa512-2f66-4c26-a530-50c091b3a099))
(pad "8" thru_hole circle locked (at 0 17.78 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "unconnected-(A1-Pad8)") (pinfunction "I39/A3") (pintype "bidirectional+no_connect") (tstamp 11c7c8d4-4c4b-4330-bb59-1eec2e98b255))
(pad "9" thru_hole circle locked (at 0 20.32 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "unconnected-(A1-Pad9)") (pinfunction "IO36/A4") (pintype "bidirectional+no_connect") (tstamp 34ddb753-e57c-4ca8-a67b-d7cdf62cae93))
(pad "10" thru_hole circle locked (at 0 22.86 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "unconnected-(A1-Pad10)") (pinfunction "IO4/A5") (pintype "bidirectional+no_connect") (tstamp 09c6ca89-863f-42d4-867e-9a769c316610))
(pad "11" thru_hole circle locked (at 0 25.4 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "unconnected-(A1-Pad11)") (pinfunction "SCK/IO5") (pintype "bidirectional+no_connect") (tstamp 28b01cd2-da3a-46ec-8825-b0f31a0b8987))
(pad "12" thru_hole circle locked (at 0 27.94 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "unconnected-(A1-Pad12)") (pinfunction "MOSI/IO18") (pintype "bidirectional+no_connect") (tstamp a49e8613-3cd2-48ed-8977-6bb5023f7722))
(pad "13" thru_hole circle locked (at 0 30.48 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "unconnected-(A1-Pad13)") (pinfunction "MISO/IO19") (pintype "bidirectional+no_connect") (tstamp a323243c-4cab-4689-aa04-1e663cf86177))
(pad "14" thru_hole circle locked (at 0 33.02 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "unconnected-(A1-Pad14)") (pinfunction "RX/IO16") (pintype "bidirectional+no_connect") (tstamp 70cda344-73be-4466-a097-1fd56f3b19e2))
(pad "15" thru_hole circle locked (at 0 35.56 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "unconnected-(A1-Pad15)") (pinfunction "TX/IO17") (pintype "bidirectional+no_connect") (tstamp 64d1d0fe-4fd6-4a55-8314-56a651e1ccab))
(pad "16" thru_hole circle locked (at 0 38.1 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "/PWM8") (pinfunction "IO21") (pintype "bidirectional") (tstamp bf4036b4-c410-489a-b46c-abee2c31db09))
(pad "17" thru_hole circle locked (at 20.32 38.1 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "unconnected-(A1-Pad17)") (pinfunction "SDA/IO23") (pintype "bidirectional+no_connect") (tstamp 5cff09b0-b3d4-41a7-a6a4-7f917b40eda9))
(pad "18" thru_hole circle locked (at 20.32 35.56 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "unconnected-(A1-Pad18)") (pinfunction "SCL/IO22") (pintype "bidirectional+no_connect") (tstamp 5a397f61-35c4-4c18-9dcd-73a2d44cc9af))
(pad "19" thru_hole circle locked (at 20.32 33.02 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "/PWM1") (pinfunction "A6/IO14") (pintype "bidirectional") (tstamp 0a8dfc5c-35dc-4e44-a2bf-5968ebf90cca))
(pad "20" thru_hole circle locked (at 20.32 30.48 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "/PWM2") (pinfunction "A7/IO32") (pintype "bidirectional") (tstamp fb1a635e-b207-4b36-b0fb-e877e480e86a))
(pad "21" thru_hole circle locked (at 20.32 27.94 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "/PWM3") (pinfunction "A8/IO15") (pintype "bidirectional") (tstamp c9badf80-21f8-404a-b5df-18e98bffebf9))
(pad "22" thru_hole circle locked (at 20.32 25.4 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "/PWM4") (pinfunction "A9/IO33") (pintype "bidirectional") (tstamp c2a9d834-7cb1-4ec5-b0ba-ae56215ff9fc))
(pad "23" thru_hole circle locked (at 20.32 22.86 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "/PWM5") (pinfunction "A10/IO27") (pintype "bidirectional") (tstamp 97e5f992-979e-4291-bd9a-a77c3fd4b1b5))
(pad "24" thru_hole circle locked (at 20.32 20.32 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 "/PWM6") (pinfunction "A11/IO12") (pintype "bidirectional") (tstamp 91c82043-0b26-427f-b23c-6094224ddfc2))
(pad "25" thru_hole circle locked (at 20.32 17.78 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 24 "/PWM7") (pinfunction "A12/IO13") (pintype "bidirectional") (tstamp 8615dae0-65cf-4932-8e6f-9a0f32429a5e))
(pad "26" thru_hole circle locked (at 20.32 15.24 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 37 "+5V") (pinfunction "USB") (pintype "power_in") (tstamp b547dd70-2ea7-4cfd-a1ee-911561975d81))
(pad "27" thru_hole circle locked (at 20.32 12.7 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "unconnected-(A1-Pad27)") (pinfunction "EN") (pintype "input+no_connect") (tstamp 21573090-1953-4b11-9042-108ae79fe9c5))
(pad "28" thru_hole circle locked (at 20.32 10.16 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "unconnected-(A1-Pad28)") (pinfunction "VBAT") (pintype "power_in+no_connect") (tstamp 53719fc4-141e-4c58-98cd-ab3bf9a4e1c0))
(model "${KICAD6_3DMODEL_DIR}/Module.3dshapes/Adafruit_Feather.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:TO-252-2" (layer "F.Cu")
(tedit 5A70A390) (tstamp 4e0bef99-39db-445c-a84c-f54440c5149f)
(at 88.675 50.346666)
(descr "TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/")
(tags "DPAK TO-252 DPAK-3 TO-252-3 SOT-428")
(property "Sheetfile" "MOSFEaTher.kicad_sch")
(property "Sheetname" "")
(path "/0f4d1ce4-07e6-4e7e-ac37-3e265338d0ad")
(attr smd)
(fp_text reference "Q7" (at 0.025 4.57) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cbb04d4e-2bbc-4354-bc50-1edc5f88068e)
)
(fp_text value "STD7NK40Z" (at 0 4.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba39f310-23c5-4a56-baa7-cf88b08d466d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 79ebc4fd-f3ee-41c6-a71e-44d05ed56953)
)
(fp_line (start -0.97 -3.45) (end -2.47 -3.45) (layer "F.SilkS") (width 0.12) (tstamp 071b894b-1c6b-479b-a0ea-39e03282b25c))
(fp_line (start -0.97 3.45) (end -2.47 3.45) (layer "F.SilkS") (width 0.12) (tstamp 28f6e37d-1a92-457e-a624-01fe097c3518))
(fp_line (start -2.47 3.45) (end -2.47 3.18) (layer "F.SilkS") (width 0.12) (tstamp 68186617-d0a0-4c59-9cb4-fb6168cf2c27))
(fp_line (start -2.47 -3.45) (end -2.47 -3.18) (layer "F.SilkS") (width 0.12) (tstamp 87dc1565-4e60-4710-a87c-80f20d4d883c))
(fp_line (start -2.47 -3.18) (end -5.3 -3.18) (layer "F.SilkS") (width 0.12) (tstamp 98252151-a21b-4d30-b04b-b4f5249ef21a))
(fp_line (start -2.47 3.18) (end -3.57 3.18) (layer "F.SilkS") (width 0.12) (tstamp a163b8ed-3eea-4a51-bd03-037f3e4ba562))
(fp_line (start 5.55 3.5) (end 5.55 -3.5) (layer "F.CrtYd") (width 0.05) (tstamp 3d6103bb-2562-4c86-863e-06bf4ba2cb86))
(fp_line (start 5.55 -3.5) (end -5.55 -3.5) (layer "F.CrtYd") (width 0.05) (tstamp 71cb4ea9-de6b-4c21-bb56-b5a0aa88bb5e))
(fp_line (start -5.55 3.5) (end 5.55 3.5) (layer "F.CrtYd") (width 0.05) (tstamp b862642c-ed4b-4559-9556-a95cf75c164f))
(fp_line (start -5.55 -3.5) (end -5.55 3.5) (layer "F.CrtYd") (width 0.05) (tstamp dc4d88b9-34c5-41bf-b3b1-2fac278e5dd5))
(fp_line (start 4.95 -2.7) (end 4.95 2.7) (layer "F.Fab") (width 0.1) (tstamp 0bf800eb-f2d5-423e-8b19-520ef2f4a155))
(fp_line (start -2.27 1.905) (end -4.97 1.905) (layer "F.Fab") (width 0.1) (tstamp 19b165b4-f5fb-47f0-a984-7b7ffb370056))
(fp_line (start -4.97 -2.655) (end -4.97 -1.905) (layer "F.Fab") (width 0.1) (tstamp 269a7af4-73b7-4598-900c-69837bb9cd7e))
(fp_line (start -4.97 2.655) (end -2.27 2.655) (layer "F.Fab") (width 0.1) (tstamp 2bcf2398-81f3-4114-ae64-1b97f6217a90))
(fp_line (start 3.95 -3.25) (end 3.95 3.25) (layer "F.Fab") (width 0.1) (tstamp 479097ab-e3d0-447b-aae4-7b0052552ef6))
(fp_line (start -2.27 -2.25) (end -1.27 -3.25) (layer "F.Fab") (width 0.1) (tstamp 56f05713-7180-4e4d-8974-115667201784))
(fp_line (start -1.865 -2.655) (end -4.97 -2.655) (layer "F.Fab") (width 0.1) (tstamp 69b7a55d-fcf7-4c88-a8e8-8aff20186c63))
(fp_line (start -4.97 1.905) (end -4.97 2.655) (layer "F.Fab") (width 0.1) (tstamp 7842327e-24cc-4966-bbc6-008891e58a64))
(fp_line (start 3.95 -2.7) (end 4.95 -2.7) (layer "F.Fab") (width 0.1) (tstamp 7d830e22-5b15-4106-abc9-fcdc42c188aa))
(fp_line (start -4.97 -1.905) (end -2.27 -1.905) (layer "F.Fab") (width 0.1) (tstamp 9cb35d60-e2a6-4cef-b26f-35c25d9959a4))
(fp_line (start -1.27 -3.25) (end 3.95 -3.25) (layer "F.Fab") (width 0.1) (tstamp 9f7cc47c-56e9-4e63-9c9a-0b58cfd14c7f))
(fp_line (start 4.95 2.7) (end 3.95 2.7) (layer "F.Fab") (width 0.1) (tstamp e621fb0a-a1d3-4881-bd45-bd4cf8c0774d))
(fp_line (start -2.27 3.25) (end -2.27 -2.25) (layer "F.Fab") (width 0.1) (tstamp ec2952dd-055b-4f00-906e-4bdb54383563))
(fp_line (start 3.95 3.25) (end -2.27 3.25) (layer "F.Fab") (width 0.1) (tstamp ef05591f-673b-4c8c-a0a5-8a246f1538bb))
(pad "" smd rect (at 0.425 -1.525) (size 3.05 2.75) (layers "F.Paste") (tstamp 353ae3e9-aaa3-42cb-9754-fa9a32ea32df))
(pad "" smd rect (at 3.775 -1.525) (size 3.05 2.75) (layers "F.Paste") (tstamp 55785d1b-646a-4d97-9117-bf24339cded2))
(pad "" smd rect (at 3.775 1.525) (size 3.05 2.75) (layers "F.Paste") (tstamp 5ff2baa3-7c8e-4eca-beb9-d74306e1eb40))
(pad "" smd rect (at 0.425 1.525) (size 3.05 2.75) (layers "F.Paste") (tstamp bfe48729-56df-40a2-af3a-8aebff35285b))
(pad "1" smd rect (at -4.2 -2.28) (size 2.2 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 44 "Net-(Q7-Pad1)") (pinfunction "G") (pintype "passive") (tstamp 3c048d02-8b0a-4f38-b4ad-44dab638b480))
(pad "2" smd rect (at 2.1 0) (size 6.4 5.8) (layers "F.Cu" "F.Mask")
(net 35 "Net-(J7-Pad2)") (pinfunction "D") (pintype "passive") (tstamp 08bbe74e-336e-46fb-bf46-95e809a2c1f8))
(pad "3" smd rect (at -4.2 2.28) (size 2.2 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "S") (pintype "passive") (tstamp 9c6c5675-d78d-4a6d-b00f-22547ffb1790))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/TO-252-2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 4e315e69-0417-463a-8b7f-469a08d1496e)
(at 76.85 46.5836 180)
(descr "Resistor SMD 0805 (2012 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" "MOSFEaTher.kicad_sch")
(property "Sheetname" "")
(path "/cc2c69c0-9f17-4276-8146-58b6c95e3b1e")
(attr smd)
(fp_text reference "R2" (at 2.9 0.0336) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 009a4fb4-fcc0-4623-ae5d-c1bae3219583)
)
(fp_text value "470" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cf386a39-fc62-49dd-8ec5-e044f6bd67ce)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 4fa10683-33cd-4dcd-8acc-2415cd63c62a)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 8bc2c25a-a1f1-4ce8-b96a-a4f8f4c35079))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 9cbf35b8-f4d3-42a3-bb16-04ffd03fd8fd))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp b1ddb058-f7b2-429c-9489-f4e2242ad7e5))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp c106154f-d948-43e5-abfa-e1b96055d91b))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp eee16674-2d21-45b6-ab5e-d669125df26c))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp f449bd37-cc90-4487-aee6-2a20b8d2843a))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 37f31dec-63fc-4634-a141-5dc5d2b60fe4))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 88668202-3f0b-4d07-84d4-dcd790f57272))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 91c1eb0a-67ae-4ef0-95ce-d060a03a7313))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp c24d6ac8-802d-4df3-a210-9cb1f693e865))
(pad "1" smd roundrect (at -1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 23 "/PWM6") (pintype "passive") (tstamp 071522c0-d0ed-49b9-906e-6295f67fb0dc))
(pad "2" smd roundrect (at 1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 39 "Net-(Q2-Pad1)") (pintype "passive") (tstamp 2846428d-39de-4eae-8ce2-64955d56c493))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 54093c93-5e7e-4c8d-8d94-40c077747c12)
(at 44.675 67.05)
(descr "Mounting Hole 3.2mm, M3, DIN965")
(tags "mounting hole 3.2mm m3 din965")
(property "Sheetfile" "MOSFEaTher.kicad_sch")
(property "Sheetname" "")
(path "/598f6016-68b7-44d0-a11e-d05ebb6206e7")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c8b3bfbd-79b7-4863-9ae7-79b3f077a5ad)
)
(fp_text value "MountingHole_Pad" (at 0 3.8) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2dd9a5be-3aa9-4cf6-850b-b3df04cedb00)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b0c1f62a-b351-48b8-ac88-59c1c4ffa2ff)
)
(fp_circle (center 0 0) (end 2.8 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 525775d5-0e6e-4c76-b5ab-199b2e54ac41))
(fp_circle (center 0 0) (end 3.05 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 2f389684-fc2a-46a1-b11d-5ff1e4efe356))
(pad "1" thru_hole circle (at 0 0) (size 5.6 5.6) (drill 3.2) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "1") (pintype "input") (tstamp 1dc423f3-1741-4cb4-aa3d-a702d125d769))
)
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MPT-0,5-2-2.54_1x02_P2.54mm_Horizontal" (layer "F.Cu")
(tedit 5B294F98) (tstamp 55f7ca5c-5371-4a9f-a7c2-fc045fdc28dd)
(at 43.25 39.263333 -90)
(descr "Terminal Block Phoenix MPT-0,5-2-2.54, 2 pins, pitch 2.54mm, size 5.54x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725656-920552.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MPT-0,5-2-2.54 pitch 2.54mm size 5.54x6.2mm^2 drill 1.1mm pad 2.2mm")
(property "Sheetfile" "MOSFEaTher.kicad_sch")
(property "Sheetname" "")
(path "/bc89814c-c367-4ab3-b1f8-8ab344d1f1b5")
(attr through_hole)
(fp_text reference "J2" (at 1.27 -4.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 171c1fd8-6971-4d47-b8f9-2bbc280a7f74)
)
(fp_text value "GPIO 12" (at 6 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 00c745e6-aece-4592-bb45-863e0c3493e6)
)
(fp_text user "${REFERENCE}" (at 1.27 2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c56ca6d7-4408-4172-9f5a-b8ad2e62934c)
)
(fp_line (start -1.56 2.6) (end -0.79 2.6) (layer "F.SilkS") (width 0.12) (tstamp 0ac1ca77-fa0e-42ff-b870-a28ecc9930e0))
(fp_line (start -1.56 -3.16) (end -1.56 3.16) (layer "F.SilkS") (width 0.12) (tstamp 29ec24dc-495e-4e49-95b0-90dd087134ae))
(fp_line (start -1.8 2.66) (end -1.8 3.4) (layer "F.SilkS") (width 0.12) (tstamp 37b73ce5-552e-4649-8b08-fe02e88c297a))
(fp_line (start 0.79 3.16) (end 1.75 3.16) (layer "F.SilkS") (width 0.12) (tstamp 6577e2d6-e771-4f1a-b78b-c897f7ae89cb))
(fp_line (start 0.79 2.6) (end 1.75 2.6) (layer "F.SilkS") (width 0.12) (tstamp 741ade0e-280d-4ca1-95c1-c006eda937d0))
(fp_line (start -1.56 3.16) (end -0.79 3.16) (layer "F.SilkS") (width 0.12) (tstamp 96ea64e1-9568-4f20-bb36-741e7d476678))
(fp_line (start 3.33 3.16) (end 4.1 3.16) (layer "F.SilkS") (width 0.12) (tstamp 9d086bec-30a3-4a02-8bbd-87f9bec5497a))
(fp_line (start -1.8 3.4) (end -1.3 3.4) (layer "F.SilkS") (width 0.12) (tstamp a1148f18-38cb-4f43-889c-023d5b050f25))
(fp_line (start 4.1 -3.16) (end 4.1 3.16) (layer "F.SilkS") (width 0.12) (tstamp ad54b3b5-44fb-4f88-9eeb-d4a301863726))
(fp_line (start -1.56 -3.16) (end 4.1 -3.16) (layer "F.SilkS") (width 0.12) (tstamp d599ee5f-5c96-4c6d-a4f2-87e98db0087b))
(fp_line (start -1.56 -2.7) (end 4.1 -2.7) (layer "F.SilkS") (width 0.12) (tstamp d5f12618-2c91-4dab-af46-e5d162090f3e))
(fp_line (start 3.33 2.6) (end 4.1 2.6) (layer "F.SilkS") (width 0.12) (tstamp e3d5f605-c02b-4f9a-bdb8-6e27136a598f))
(fp_line (start 4.54 3.6) (end 4.54 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 653e558c-0db8-47f9-b1a1-b5c494d08c2b))
(fp_line (start 4.54 -3.6) (end -2 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 7f198ec7-c600-404b-8dab-5c59483f2f1b))
(fp_line (start -2 -3.6) (end -2 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 8921cdcb-9d7b-4ff1-bc19-a12e21bf0b3b))
(fp_line (start -2 3.6) (end 4.54 3.6) (layer "F.CrtYd") (width 0.05) (tstamp f82b4508-4c5b-428f-bdf5-c329908b6c52))
(fp_line (start 0.835 -0.7) (end -0.701 0.835) (layer "F.Fab") (width 0.1) (tstamp 01c950c2-84d4-4062-97ce-28407e323c63))
(fp_line (start -1 3.1) (end -1.5 2.6) (layer "F.Fab") (width 0.1) (tstamp 29106fb5-143e-4e20-878e-052e2b3383b0))
(fp_line (start 3.241 -0.835) (end 1.706 0.7) (layer "F.Fab") (width 0.1) (tstamp 3423b69d-31f4-49a7-a31b-7a75e0771985))
(fp_line (start -1.5 -3.1) (end 4.04 -3.1) (layer "F.Fab") (width 0.1) (tstamp 52718b49-6b67-4ae9-b303-a37161473966))
(fp_line (start -1.5 2.6) (end 4.04 2.6) (layer "F.Fab") (width 0.1) (tstamp 7491ada3-7c6d-4a6a-a92a-c5d4d44a5eec))
(fp_line (start -1.5 2.6) (end -1.5 -3.1) (layer "F.Fab") (width 0.1) (tstamp 7a371838-7673-4e2a-955b-9b6e37993916))
(fp_line (start -1.5 -2.7) (end 4.04 -2.7) (layer "F.Fab") (width 0.1) (tstamp 7e3affd6-47f1-4504-8de1-d0fb9e30232e))
(fp_line (start 3.375 -0.7) (end 1.84 0.835) (layer "F.Fab") (width 0.1) (tstamp ce9c7494-9578-4820-832b-24c759eda913))
(fp_line (start 0.701 -0.835) (end -0.835 0.7) (layer "F.Fab") (width 0.1) (tstamp ec240158-4420-40eb-b932-11bb3b531694))
(fp_line (start 4.04 3.1) (end -1 3.1) (layer "F.Fab") (width 0.1) (tstamp ef1750b5-68c5-4625-b3bf-a354304ca90d))
(fp_line (start 4.04 -3.1) (end 4.04 3.1) (layer "F.Fab") (width 0.1) (tstamp f05b539d-f3ed-4d87-8562-322d3113dab5))
(fp_circle (center 0 0) (end 1.1 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 48936810-9e12-4264-8ed1-89af32e04c7e))
(fp_circle (center 2.54 0) (end 3.64 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp cfffdc3a-ac12-4e47-bb6e-1daa86a6b444))
(pad "" np_thru_hole circle (at 0 2.54 270) (size 1.1 1.1) (drill 1.1) (layers *.Cu *.Mask) (tstamp d894c276-c90b-442d-90d1-b5f4470e8e44))
(pad "" np_thru_hole circle (at 2.54 2.54 270) (size 1.1 1.1) (drill 1.1) (layers *.Cu *.Mask) (tstamp e6ef41fa-c4e4-475a-bb00-9a2450227d3b))
(pad "1" thru_hole rect (at 0 0 270) (size 2.2 2.2) (drill 1.1) (layers *.Cu *.Mask)
(net 27 "VDD") (pinfunction "Pin_1") (pintype "passive") (tstamp 7b3dd545-45b0-4731-905e-8bf82667ad49))
(pad "2" thru_hole circle (at 2.54 0 270) (size 2.2 2.2) (drill 1.1) (layers *.Cu *.Mask)
(net 30 "Net-(J2-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 183f9cc5-f7bf-4a7d-8840-199b0d535784))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MPT-0,5-2-2.54_1x02_P2.54mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_THTPad_4.0x4.0mm_Drill2.0mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 594e6540-6208-46c1-b5d4-dcb0989d0555)
(at 77.75 23.95)
(descr "THT rectangular pad as test Point, square 4.0mm side length, hole diameter 2.0mm")
(tags "test point THT pad rectangle square")
(property "Sheetfile" "MOSFEaTher.kicad_sch")
(property "Sheetname" "")
(path "/b5d2fa5b-d0f1-461d-becd-94cfa6973d69")
(attr exclude_from_pos_files)
(fp_text reference "H6" (at 0 -2.898) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 46cfd089-6873-4d8b-89af-02ff30e49472)
)
(fp_text value "GND" (at 0 3.17 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bb4f0314-c44c-4dda-b85c-537120eaae9a)
)
(fp_text user "${REFERENCE}" (at 0 -2.9) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 99030c03-63b4-49ba-b5ab-4d56974f7963)
)
(fp_line (start 2.2 2.2) (end -2.2 2.2) (layer "F.SilkS") (width 0.12) (tstamp 02165243-61a3-4857-84ba-71a77cb9a387))
(fp_line (start -2.2 -2.2) (end 2.2 -2.2) (layer "F.SilkS") (width 0.12) (tstamp 87c78429-be2b-40ed-8d3b-56cb9666a56f))
(fp_line (start -2.2 2.2) (end -2.2 -2.2) (layer "F.SilkS") (width 0.12) (tstamp 9ff4672a-e1a4-4a1e-887d-1b9a3429d278))
(fp_line (start 2.2 -2.2) (end 2.2 2.2) (layer "F.SilkS") (width 0.12) (tstamp edc9ab4f-487a-48dc-95f2-4d87f0e9cf9e))
(fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 0f3c9e3a-9c59-4881-b27a-d0e982b3ea8e))
(fp_line (start -2.5 -2.5) (end 2.5 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 825c70b0-4860-42b7-97dc-86bfa46e06fd))
(fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer "F.CrtYd") (width 0.05) (tstamp bbb15673-6d42-42b8-9d51-7515b3ad9ee9))
(fp_line (start 2.5 2.5) (end -2.5 2.5) (layer "F.CrtYd") (width 0.05) (tstamp e83e0227-ac0f-4180-82bd-68d3a7b56476))
(pad "1" thru_hole rect (at 0 0) (size 4 4) (drill 2) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "1") (pintype "input") (tstamp 646d9e91-59b4-4865-a2fc-29780ed32563))
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 59e09498-d26e-4ba7-b47d-fece2ea7c274)
(at 96.775 23.525)
(descr "Mounting Hole 3.2mm, M3, DIN965")
(tags "mounting hole 3.2mm m3 din965")
(property "Sheetfile" "MOSFEaTher.kicad_sch")
(property "Sheetname" "")
(path "/79437dcc-c06e-435f-9854-22188424432c")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a8e78b6b-5175-49a4-b7f2-c08b88186745)
)
(fp_text value "MountingHole_Pad" (at 0 3.8) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5f10ab2e-0baa-42eb-b877-7c3c9e704ef3)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f7aa75c5-0bfb-4814-b8eb-5f8a9a128aa9)
)
(fp_circle (center 0 0) (end 2.8 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 66cddf54-c141-4b9d-b300-069491227c2d))
(fp_circle (center 0 0) (end 3.05 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 9dffc0da-762b-42b7-80b1-72a451bb294f))
(pad "1" thru_hole circle (at 0 0) (size 5.6 5.6) (drill 3.2) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "1") (pintype "input") (tstamp 582bf52d-f931-4c83-b941-f1087e1fcfee))
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 7afa54c4-2181-41d3-81f7-39efc497ecae)
(at 76.85 49.1236 180)
(descr "Resistor SMD 0805 (2012 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" "MOSFEaTher.kicad_sch")
(property "Sheetname" "")
(path "/f415282e-f854-4428-afb8-0000af146061")
(attr smd)
(fp_text reference "R3" (at 2.9 -0.1264) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9403623-c00c-4b71-bc5c-d763ff009386)
)
(fp_text value "470" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a53767ed-bb28-4f90-abe0-e0ea734812a4)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp b7867831-ef82-4f33-a926-59e5c1c09b91)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 6bf05d19-ba3e-4ba6-8a6f-4e0bc45ea3b2))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 065b9982-55f2-4822-977e-07e8a06e7b35))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp a24ddb4f-c217-42ca-b6cb-d12da84fb2b9))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp a6ccc556-da88-4006-ae1a-cc35733efef3))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp dc2801a1-d539-4721-b31f-fe196b9f13df))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 970e0f64-111f-41e3-9f5a-fb0d0f6fa101))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp b6135480-ace6-42b2-9c47-856ef57cded1))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp e4aa537c-eb9d-4dbb-ac87-fae46af42391))
(pad "1" smd roundrect (at -1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 22 "/PWM5") (pintype "passive") (tstamp 609b9e1b-4e3b-42b7-ac76-a62ec4d0e7c7))
(pad "2" smd roundrect (at 1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 40 "Net-(Q3-Pad1)") (pintype "passive") (tstamp e54e5e19-1deb-49a9-8629-617db8e434c0))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x01_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 7edc9030-db7b-43ac-a1b3-b87eeacb4c2d)
(at 87.4 22.55)
(descr "Through hole straight pin header, 2x01, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x01 2.54mm double row")
(property "Sheetfile" "MOSFEaTher.kicad_sch")
(property "Sheetname" "")
(path "/db08d23b-92e3-4f99-8704-1a66ba98c4e9")
(attr through_hole)
(fp_text reference "JP2" (at 1.27 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3a7648d8-121a-4921-9b92-9b35b76ce39b)
)
(fp_text value "5V (USB)" (at 1.27 2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 24f7628d-681d-4f0e-8409-40a129e929d9)
)
(fp_text user "${REFERENCE}" (at 1.27 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cbd8faed-e1f8-4406-87c8-58b2c504a5d4)
)
(fp_line (start -1.33 1.27) (end -1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp 003c2200-0632-4808-a662-8ddd5d30c768))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 240e07e1-770b-4b27-894f-29fd601c924d))
(fp_line (start 3.87 -1.33) (end 3.87 1.33) (layer "F.SilkS") (width 0.12) (tstamp 63ff1c93-3f96-4c33-b498-5dd8c33bccc0))
(fp_line (start -1.33 1.27) (end 1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 9b0a1687-7e1b-4a04-a30b-c27a072a2949))
(fp_line (start -1.33 1.33) (end 3.87 1.33) (layer "F.SilkS") (width 0.12) (tstamp 9e1b837f-0d34-4a18-9644-9ee68f141f46))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer "F.SilkS") (width 0.12) (tstamp c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b))
(fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ee27d19c-8dca-4ac8-a760-6dfd54d28071))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp f2c93195-af12-4d3e-acdf-bdd0ff675c24))
(fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer "F.CrtYd") (width 0.05) (tstamp 2f215f15-3d52-4c91-93e6-3ea03a95622f))
(fp_line (start 4.35 1.8) (end 4.35 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 61fe293f-6808-4b7f-9340-9aaac7054a97))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 8da933a9-35f8-42e6-8504-d1bab7264306))
(fp_line (start -1.8 1.8) (end 4.35 1.8) (layer "F.CrtYd") (width 0.05) (tstamp b88717bd-086f-46cd-9d3f-0396009d0996))
(fp_line (start 3.81 1.27) (end -1.27 1.27) (layer "F.Fab") (width 0.1) (tstamp 0217dfc4-fc13-4699-99ad-d9948522648e))
(fp_line (start -1.27 0) (end 0 -1.27) (layer "F.Fab") (width 0.1) (tstamp 1d9cdadc-9036-4a95-b6db-fa7b3b74c869))
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 6bfe5804-2ef9-4c65-b2a7-f01e4014370a))
(fp_line (start 3.81 -1.27) (end 3.81 1.27) (layer "F.Fab") (width 0.1) (tstamp bd5408e4-362d-4e43-9d39-78fb99eb52c8))
(fp_line (start -1.27 1.27) (end -1.27 0) (layer "F.Fab") (width 0.1) (tstamp c0eca5ed-bc5e-4618-9bcd-80945bea41ed))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 37 "+5V") (pinfunction "A") (pintype "passive") (tstamp 08a7c925-7fae-4530-b0c9-120e185cb318))
(pad "2" thru_hole oval (at 2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 "VDD") (pinfunction "B") (pintype "passive") (tstamp 4a4ec8d9-3d72-4952-83d4-808f65849a2b))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x01_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_DIN965_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 8aeda7bd-b078-427a-a185-d5bc595c6436)
(at 44.675 23.525)
(descr "Mounting Hole 3.2mm, M3, DIN965")
(tags "mounting hole 3.2mm m3 din965")
(property "Sheetfile" "MOSFEaTher.kicad_sch")
(property "Sheetname" "")
(path "/476789fe-25f4-44ed-ac54-6a867fea66fb")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 55baceed-f7d9-4d73-84e4-b06c780623b7)
)
(fp_text value "MountingHole_Pad" (at 0 3.8) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 88071c39-7478-4d42-a0c9-ea227d61f16f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 888c6fdf-c198-440a-97af-035b863dc875)
)
(fp_circle (center 0 0) (end 2.8 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 2fb7c72d-0d63-4df2-879e-15ff023fd1c7))
(fp_circle (center 0 0) (end 3.05 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 346289f5-7fed-42d0-915e-ef27086b0782))
(pad "1" thru_hole circle (at 0 0) (size 5.6 5.6) (drill 3.2) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "1") (pintype "input") (tstamp 27101d2b-1f80-4d40-be5b-78bdcb31c291))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x01_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 98b68e63-6d5e-40c2-8800-194ba8894629)
(at 72 22.075 -90)
(descr "Through hole straight pin header, 2x01, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x01 2.54mm double row")
(property "Sheetfile" "MOSFEaTher.kicad_sch")
(property "Sheetname" "")
(path "/4362e6ac-6290-4071-922f-911c69fdd561")
(attr through_hole)
(fp_text reference "JP3" (at 1.27 -2.33 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6712f3ed-b01c-419c-8af7-3b3198a6b5ef)
)
(fp_text value "Extern" (at 5.045 0.06 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 43b36f90-d311-4567-a2f4-7ec267c2baba)
)
(fp_text user "${REFERENCE}" (at 1.27 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e87f0c5-833e-4134-b4c5-bb1ded65b831)
)
(fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 27581dda-332e-41f9-af6e-12247f8e2c3d))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 3620271a-6cf6-45f1-931f-a2387533dca8))
(fp_line (start -1.33 1.33) (end 3.87 1.33) (layer "F.SilkS") (width 0.12) (tstamp 39076b84-1016-455f-bdf5-e32a68e1df75))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 64fde0bc-d6d2-4558-8fca-9116ec7599fb))
(fp_line (start 3.87 -1.33) (end 3.87 1.33) (layer "F.SilkS") (width 0.12) (tstamp 79441cfe-3899-4d3b-8b0d-5ff45c5633da))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 81ea5c0f-9689-49fe-bc45-ceb2d1824960))
(fp_line (start -1.33 1.27) (end -1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp 8f4ce6be-cf53-4cc9-b732-903ff0a748b7))
(fp_line (start -1.33 1.27) (end 1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp acd5c403-c981-4118-b577-3766dfcafb9c))
(fp_line (start -1.8 1.8) (end 4.35 1.8) (layer "F.CrtYd") (width 0.05) (tstamp 400ca480-4b05-467d-b888-c840f96fd813))
(fp_line (start 4.35 1.8) (end 4.35 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp a6226ed1-f54e-402d-bbc0-d680392be5c6))
(fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer "F.CrtYd") (width 0.05) (tstamp ab487890-2ad5-491b-ace8-067c8a33b21d))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp e8e7eed3-bfe9-497d-abf2-39c124f90184))
(fp_line (start -1.27 0) (end 0 -1.27) (layer "F.Fab") (width 0.1) (tstamp 4a7c9c55-e88b-462b-aff4-bc70c39578cd))
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 626fc7ab-47ee-4a02-b5b5-4460af9b8f4d))
(fp_line (start 3.81 -1.27) (end 3.81 1.27) (layer "F.Fab") (width 0.1) (tstamp 62ab2bd9-8efa-40da-b346-24c507b44fff))
(fp_line (start -1.27 1.27) (end -1.27 0) (layer "F.Fab") (width 0.1) (tstamp 902643df-7e65-4e31-b2df-2c4604a52b9a))
(fp_line (start 3.81 1.27) (end -1.27 1.27) (layer "F.Fab") (width 0.1) (tstamp d84fd42e-7925-45ea-89b1-e5453d091508))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 46 "+12V") (pinfunction "A") (pintype "passive") (tstamp eccca014-8fca-40ef-9c70-0b5135bfac17))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 "VDD") (pinfunction "B") (pintype "passive") (tstamp 382ca512-b4f7-460c-abd6-5fd8f38132bd))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x01_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 998b7fa5-31a5-472e-9572-49d5226d6098)
(at 64.2 64.3636)
(descr "Resistor SMD 0805 (2012 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" "MOSFEaTher.kicad_sch")
(property "Sheetname" "")