-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFanController.kicad_pcb
13584 lines (13552 loc) · 497 KB
/
FanController.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 20210824) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Green") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Green") (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 true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "+12V")
(net 2 "GND")
(net 3 "FAN1")
(net 4 "FAN2")
(net 5 "OUT1")
(net 6 "PWM1")
(net 7 "OUT2")
(net 8 "PWM2")
(net 9 "+5V")
(net 10 "PWR1")
(net 11 "PWR2")
(footprint "bouni:MH-ET LIVE MiniKit" (layer "F.Cu")
(tedit 602E656E) (tstamp 01fb9703-7569-4417-8851-7dd0ebacf23c)
(at 93 49)
(property "Sheetfile" "FanController.kicad_sch")
(property "Sheetname" "")
(path "/daa5da29-a537-4f04-9760-1ed415cd9f3a")
(attr through_hole exclude_from_pos_files exclude_from_bom)
(fp_text reference "U2" (at 0.25 -10.75 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5727a39d-c09f-4da3-9af3-9a8282cc5026)
)
(fp_text value "mh-et-live-minikit" (at 0 -17.78 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e87913a3-71c4-456f-8643-cdd5b96246f0)
)
(fp_text user "IO27" (at 15.24 -8.89 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 032cee95-6336-480a-996d-ae72d4d4aee8)
)
(fp_text user "GPIO10" (at -6.35 11.43 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 0ac35592-3ba6-4c52-828f-e15582882e77)
)
(fp_text user "IO19" (at -10.16 -1.27 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 0af92717-c51e-47d9-a3e6-eb258a089dc6)
)
(fp_text user "IO21" (at 10.16 -3.81 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp 13b26c3b-2336-4c17-92ba-7b8f6d9f6bed)
)
(fp_text user "IO34" (at -15.24 1.27 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp 14164053-c069-434b-a00f-ecad5c222aa9)
)
(fp_text user "IO33" (at -15.24 -1.27 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp 1f4c789b-161b-4cc9-b153-a68b8f522227)
)
(fp_text user "SD1" (at 15.24 8.89 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 1fb00b5e-4ec4-4ac9-8dca-6696ac4ac9b1)
)
(fp_text user "GPIO5" (at -6.35 3.81 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 22d22e0c-984e-402b-bc29-c2e9be1f7352)
)
(fp_text user "GPIO25" (at 19.05 -6.35 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 2370a8c8-1f7c-41cb-bbb8-58ad62983abe)
)
(fp_text user "SD2" (at -15.24 8.89 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp 25bbd59f-926d-4df1-bf30-900e9ffe2c6a)
)
(fp_text user "IO16" (at 10.16 1.27 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp 28f37d3a-5970-4bb4-ba3c-09a89a15de1d)
)
(fp_text user "GPIO8" (at 19.05 8.89 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 2aa04618-c3d4-4554-8d13-a31b2729c789)
)
(fp_text user "GPIO17" (at 6.35 -1.27 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp 2ab79ee1-1729-40cb-8d91-e6c6daf3b228)
)
(fp_text user "GND" (at 10.16 3.81 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp 2e7f4428-9d47-4fd8-b722-523748c35f0c)
)
(fp_text user "GPIO11" (at 11.93 13.05 90 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp 30128454-3dcb-4bfa-a4c4-3e13065939dc)
)
(fp_text user "IO4" (at 15.24 1.27 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 3bf9b3ee-a382-4ce0-b26a-ef1dd8c63948)
)
(fp_text user "IO22" (at 10.16 -6.35 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp 4166c1a0-bcc9-4639-a9f4-f2d80c2a00c6)
)
(fp_text user "GPIO35" (at -2.31 13.05 90 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp 43e47b42-8f8f-4bc9-913a-3f6e13c73c53)
)
(fp_text user "IO32" (at 15.24 -3.81 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 47427fe7-47f3-4296-a024-41a094798ff8)
)
(fp_text user "GPIO3" (at 6.35 -8.89 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp 4b0b58ec-d908-481d-a9c7-1451e0461a2b)
)
(fp_text user "CANNOT BE USED" (at 1 14.224 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)))
(tstamp 50465112-409b-415f-99c7-b36b118518c5)
)
(fp_text user "GPIO34" (at 2.77 13.05 90 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp 51eaf1d9-94bf-4dd5-9c0b-14fd58ec8fc2)
)
(fp_text user "TD0" (at 10.16 8.89 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp 550b3cbf-4407-4817-840c-f7f4e0914c4f)
)
(fp_text user "GPIO1" (at 6.35 -11.43 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp 56b4901b-c071-4908-896d-945710ed3271)
)
(fp_text user "GPIO9" (at 9.39 13.05 90 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp 5a0677c5-97de-435b-bd78-e2ea2e707534)
)
(fp_text user "GPIO32" (at 19.05 -3.81 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 6553320b-9b7f-4673-b2ad-b00ba370bb20)
)
(fp_text user "GND" (at -15.24 -11.43 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp 66c8613b-29af-4259-b752-d6bf8173f668)
)
(fp_text user "GPIO27" (at 19.05 -8.89 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 6921a424-7e8f-4539-9328-8e561a09a1d2)
)
(fp_text user "SVN" (at -15.24 -6.35 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp 6f5ab257-f215-44dd-ac3b-5e322b1f1be7)
)
(fp_text user "SD3" (at -10.16 11.43 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 6fa93acb-e3f2-43e5-9212-8aecf7a50561)
)
(fp_text user "GPIO36" (at -6.35 -8.89 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 7773f0d8-a47c-48e0-a1fe-7421e40f14f7)
)
(fp_text user "GPIO39" (at -4.85 13.05 90 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp 79115fad-73a6-4804-8b7b-bc3dc25ed457)
)
(fp_text user "GPIO13" (at -6.35 8.89 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 7d71bad8-fa8f-4f73-96b2-ed2e31e713ba)
)
(fp_text user "GPIO14" (at 5.31 13.05 90 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp 7e457b12-62f3-4d4b-b918-bff526baa34f)
)
(fp_text user "GPIO4" (at 19.05 1.27 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 81f6103f-9fc0-4f10-b680-d8b785d54eb6)
)
(fp_text user "SVP" (at -10.16 -8.89 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 8901a4d5-3037-4950-904c-c34b15ca9395)
)
(fp_text user "IO26" (at -10.16 -6.35 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 8ab391f7-f6fc-4a30-98a7-c17142cdcb7f)
)
(fp_text user "IO0" (at 15.24 3.81 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 8e28d8cb-d125-4968-ab14-88690d6ef5a6)
)
(fp_text user "TCK" (at -10.16 8.89 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 8e41842d-6abc-4bdf-92c8-a946a17e5a0a)
)
(fp_text user "IO25" (at 15.24 -6.35 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 8f053b8b-5ab2-43df-b475-47541eaa6ec0)
)
(fp_text user "IO23" (at -10.16 1.27 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 8f795439-4e63-4937-a0f1-8bb219f8a52d)
)
(fp_text user "NC" (at -15.24 -8.89 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp 8fe08121-cc81-42f4-afee-3ef9545bfb2a)
)
(fp_text user "TMS" (at -15.24 3.81 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp 981a90a8-fa25-4e12-894c-fbb313f7a383)
)
(fp_text user "GPIO26" (at -6.35 -6.35 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 9bb8ab7d-1fe0-4e64-8a5f-8cdffe27cb06)
)
(fp_text user "RST" (at -10.16 -11.43 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp 9eca07f3-ad5f-470f-bbf0-e6a36b4c2f5a)
)
(fp_text user "IO2" (at 15.24 6.35 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp a3f63904-4a5c-4ef9-9011-bca0c9165349)
)
(fp_text user "IO17" (at 10.16 -1.27 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp a5af4341-cf45-47dd-bc1e-934084696556)
)
(fp_text user "GPIO18" (at -6.35 -3.81 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp a811bb67-4480-4ba3-881e-fd446d6a4854)
)
(fp_text user "GPIO19" (at -6.35 -1.27 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp adde605e-2dae-41c8-ae1e-2067965e0996)
)
(fp_text user "GPIO2" (at 19.05 6.35 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp aeee7f32-3009-4c65-996b-50a1052379e1)
)
(fp_text user "GPIO23" (at -6.35 1.27 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp b9d32510-d2d5-4cb4-a655-0c79fbec413b)
)
(fp_text user "VCC" (at 10.16 6.35 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp bb49b395-c206-48b6-b742-7b5de01ce981)
)
(fp_text user "GPIO33" (at 0.23 13.05 90 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp bd439b63-d16f-4d91-8a75-862ee8cfd1c9)
)
(fp_text user "GPIO15" (at 6.35 8.89 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp bfdb2b50-1f3a-4e5a-a46f-3c45cc201dfa)
)
(fp_text user "GPIO22" (at 6.35 -6.35 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp c5d64f6a-3338-4f97-b93b-e4c2649dbeb5)
)
(fp_text user "SD0" (at 10.16 11.43 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp cb2d2d91-74c6-4960-996f-521ede203855)
)
(fp_text user "RXD" (at 10.16 -8.89 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp d0336090-9ed5-43a1-a67f-bf15be2e9c40)
)
(fp_text user "GPIO0" (at 19.05 3.81 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp d2156b36-00ba-48af-bce8-cc352c153921)
)
(fp_text user "GPIO21" (at 6.35 -3.81 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp d395654b-e6de-494f-9a2e-26933bb84dbf)
)
(fp_text user "TDI" (at 15.24 -1.27 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp d3ed780d-1008-4dac-8ae9-9252d7ed4626)
)
(fp_text user "GPIO12" (at 19.05 -1.27 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp d5b66124-7185-45c3-8c20-d69d5c075972)
)
(fp_text user "NC" (at -15.24 6.35 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp d6274beb-8a49-4547-9164-6f76be62dd99)
)
(fp_text user "CMD" (at -15.24 11.43 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp dc221b2e-853e-4c34-928f-44a098aadf8e)
)
(fp_text user "IO18" (at -10.16 -3.81 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp dde3260a-1285-4abf-8cba-178ca2c5b333)
)
(fp_text user "3V3" (at -10.16 6.35 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp e3964a58-4902-403e-80fc-707a9e97ca86)
)
(fp_text user "CLK" (at 15.24 11.43 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp e898be8f-853a-4357-9571-8972ea06b12e)
)
(fp_text user "GPIO16" (at 6.35 1.27 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp eb064c34-259a-4858-9647-bdcc6a7304c2)
)
(fp_text user "GPIO6" (at 19.05 11.43 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp eccc937d-5b31-42af-a228-ccbab8f826bb)
)
(fp_text user "GND" (at 15.24 -11.43 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp ed446877-77c3-4f01-89df-dba88fb01820)
)
(fp_text user "IO5" (at -10.16 3.81 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left))
(tstamp eda0914c-6317-4106-aa6a-64718a99524d)
)
(fp_text user "GPIO7" (at 6.35 11.43 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp eef603e4-8a4c-4091-b55d-5fc8af403aee)
)
(fp_text user "IO35" (at -15.24 -3.81 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp f5ea7cc2-ed5c-4112-959c-2e52f45882f7)
)
(fp_text user "TXD" (at 10.16 -11.43 unlocked) (layer "Cmts.User")
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right))
(tstamp ff9fc2f7-3f5e-4a51-9564-1838fa289ee4)
)
(fp_line (start -12.7 -19.05) (end 12.7 -19.05) (layer "F.SilkS") (width 0.12) (tstamp 42b3c5f0-7bf7-42b4-ad82-f45af71656b8))
(fp_line (start 12.7 -19.05) (end 15.24 -16.51) (layer "F.SilkS") (width 0.12) (tstamp 86c1e445-2e79-46ca-85f2-5f8f3e4821e3))
(fp_line (start 11.43 -11.43) (end 11.43 6.35) (layer "F.SilkS") (width 2) (tstamp 966cf89d-190c-4f1d-8725-d1f684066f95))
(fp_line (start 15.24 19.685) (end -12.7 19.685) (layer "F.SilkS") (width 0.12) (tstamp a854f02b-b46d-48b2-9a5e-2dc491c2f315))
(fp_line (start -15.24 13.335) (end -15.24 -16.51) (layer "F.SilkS") (width 0.12) (tstamp a955623a-efa3-4c12-8fd1-db1ae4aaf308))
(fp_line (start -12.7 19.685) (end -12.7 15.875) (layer "F.SilkS") (width 0.12) (tstamp cd345a7d-3f8f-470c-bf45-1be610b5f5d4))
(fp_line (start 15.24 -16.51) (end 15.24 19.685) (layer "F.SilkS") (width 0.12) (tstamp d43edef5-5077-4777-8cad-9cc24d76e69f))
(fp_line (start -15.24 -16.51) (end -12.7 -19.05) (layer "F.SilkS") (width 0.12) (tstamp d77ff821-18aa-416d-b55c-7e67a22a6870))
(fp_line (start -11.43 -11.43) (end -11.43 6.35) (layer "F.SilkS") (width 2) (tstamp f947d45b-23ab-4b58-aa22-df5947b2494f))
(fp_arc (start -15.24 15.875) (end -15.24 13.335) (angle 90) (layer "F.SilkS") (width 0.12) (tstamp 7ad261a1-86b7-4e9b-aa4a-cc86707b43a2))
(fp_line (start -14.986 12.446) (end -14.986 10.414) (layer "Cmts.User") (width 0.12) (tstamp 04fb05d5-0333-4ec8-81c8-035aeae41eac))
(fp_line (start -12.7 12.7) (end -12.7 13.208) (layer "Cmts.User") (width 0.12) (tstamp 0b61f052-e0db-4571-a81a-955d3956eaeb))
(fp_line (start -11.938 13.462) (end 9.398 13.462) (layer "Cmts.User") (width 0.12) (tstamp 2542114f-5f10-4058-8b40-9a6fcc12b1c7))
(fp_line (start 14.986 12.446) (end 10.414 12.446) (layer "Cmts.User") (width 0.12) (tstamp 45974063-76ff-4aff-9a82-db4d2d04160b))
(fp_line (start 9.398 13.462) (end 10.16 12.7) (layer "Cmts.User") (width 0.12) (tstamp 49a44b75-481d-423e-bd9d-554fe7c08f89))
(fp_line (start 10.16 12.7) (end 10.16 13.208) (layer "Cmts.User") (width 0.12) (tstamp 503b8aa1-3666-4424-bc74-fc9a6e3ddaf4))
(fp_line (start -12.954 10.414) (end -12.954 12.446) (layer "Cmts.User") (width 0.12) (tstamp 511c4e20-6559-4714-b678-de86ba830998))
(fp_line (start -14.986 10.414) (end -12.954 10.414) (layer "Cmts.User") (width 0.12) (tstamp 5fefc0cc-a582-4c2e-b49b-e50aba7f5798))
(fp_line (start 14.986 7.874) (end 14.986 12.446) (layer "Cmts.User") (width 0.12) (tstamp 6a793c88-efbf-4140-878a-e013d4553e15))
(fp_line (start 9.652 12.7) (end 10.16 12.7) (layer "Cmts.User") (width 0.12) (tstamp 6f487b32-ba6a-4eae-aa68-91eabffa8e6f))
(fp_line (start 12.954 7.874) (end 14.986 7.874) (layer "Cmts.User") (width 0.12) (tstamp 6fe19dc5-4ba7-4daf-885f-61a19a745888))
(fp_line (start 12.954 10.414) (end 12.954 7.874) (layer "Cmts.User") (width 0.12) (tstamp 75af02bd-a4bf-4d6e-8989-6a0cbd401c7d))
(fp_line (start 10.414 12.446) (end 10.414 10.414) (layer "Cmts.User") (width 0.12) (tstamp 92a5ea27-c037-4a2d-8fc8-e7d46ba3a51a))
(fp_line (start -12.954 12.446) (end -14.986 12.446) (layer "Cmts.User") (width 0.12) (tstamp a89cc87b-ea8a-4f02-a315-f80240d17237))
(fp_line (start -12.7 12.7) (end -11.938 13.462) (layer "Cmts.User") (width 0.12) (tstamp c9b91ea0-4a50-4831-9f1e-d0b77d585360))
(fp_line (start 10.414 10.414) (end 12.954 10.414) (layer "Cmts.User") (width 0.12) (tstamp dc2c4415-e8d6-488e-adf0-e862c5b0d79c))
(fp_line (start -12.192 12.7) (end -12.7 12.7) (layer "Cmts.User") (width 0.12) (tstamp f8564efc-b897-402d-bc9f-5c733f075c8f))
(pad "1" thru_hole circle (at -13.97 -11.43) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 6aeb38a8-9231-4c4d-bc74-15d68894bc76))
(pad "2" thru_hole circle (at -13.97 -8.89) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "NC") (pintype "no_connect") (tstamp 8da8d08a-4f75-4934-a40d-bc5b6e0d635e))
(pad "3" thru_hole circle (at -13.97 -6.35) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "SVN") (pintype "bidirectional") (tstamp 4645d4dc-f2c7-4c1a-a144-2c437a5b4f5b))
(pad "4" thru_hole circle (at -13.97 -3.81) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "IO35") (pintype "bidirectional") (tstamp 5aab10f1-75c6-4077-bea9-95552a27d879))
(pad "5" thru_hole circle (at -13.97 -1.27) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "IO33") (pintype "bidirectional") (tstamp ca679f7f-3e20-4098-aba2-3547a571922a))
(pad "6" thru_hole circle (at -13.97 1.27) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "IO34") (pintype "bidirectional") (tstamp 23bb6ace-bb46-4a47-83f6-18cdb4f75693))
(pad "7" thru_hole circle (at -13.97 3.81) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "TMS") (pintype "bidirectional") (tstamp 6fccb957-a6c0-4f69-9a7f-0ee96e0e4f5b))
(pad "8" thru_hole circle (at -13.97 6.35) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "NC") (pintype "no_connect") (tstamp dfcc350b-6c0f-4855-8f7c-f0d7f3893d8c))
(pad "9" thru_hole circle (at -13.97 8.89) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "SD2") (pintype "bidirectional") (tstamp 4251b01c-38a0-4c5a-8be7-d26e5ec5c6b4))
(pad "10" thru_hole circle (at -13.97 11.43) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "CMD") (pintype "bidirectional") (tstamp c75c3984-2468-4d94-a8ed-1f1fa84eceb1))
(pad "11" thru_hole circle (at -11.43 -11.43) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "RST") (pintype "input") (tstamp 2305fe3a-0f74-40b3-8cbd-198b75f26dea))
(pad "12" thru_hole circle (at -11.43 -8.89) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "SVP") (pintype "bidirectional") (tstamp 3303897a-a302-440a-b6ff-7e4a90b161f2))
(pad "13" thru_hole circle (at -11.43 -6.35) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "IO26") (pintype "bidirectional") (tstamp 5b16e76e-00ab-4fce-a442-d10c101a8368))
(pad "14" thru_hole circle (at -11.43 -3.81) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "IO18") (pintype "bidirectional") (tstamp b94cc28e-dcb7-4482-8a30-e7b5188d4928))
(pad "15" thru_hole circle (at -11.43 -1.27) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "IO19") (pintype "bidirectional") (tstamp 2bace3d4-7843-4421-b386-253e6b384c01))
(pad "16" thru_hole circle (at -11.43 1.27) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "IO23") (pintype "bidirectional") (tstamp f475c625-e104-45fa-89bd-cf59d489443d))
(pad "17" thru_hole circle (at -11.43 3.81) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "IO5") (pintype "bidirectional") (tstamp 6b656e28-1fe3-4bb1-b206-06f5e878f0b2))
(pad "18" thru_hole circle (at -11.43 6.35) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "3V3") (pintype "power_out") (tstamp a6c6e90c-ea51-42e5-a286-51da93e97d21))
(pad "19" thru_hole circle (at -11.43 8.89) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "TCK") (pintype "bidirectional") (tstamp 519080c1-7b1a-4aca-b96c-90e887d38426))
(pad "20" thru_hole circle (at -11.43 11.43) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "SD3") (pintype "bidirectional") (tstamp 324a97ee-a468-4350-963e-8db998f783fc))
(pad "21" thru_hole circle (at 11.43 -11.43) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "TXD") (pintype "bidirectional") (tstamp 83d1463f-4894-4978-967c-d70ca8cead71))
(pad "22" thru_hole circle (at 11.43 -8.89) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "RXD") (pintype "bidirectional") (tstamp 13a43eab-4271-4978-a953-611fd5ad96a2))
(pad "23" thru_hole circle (at 11.43 -6.35) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 8 "PWM2") (pinfunction "IO22") (pintype "bidirectional") (tstamp fe4d22de-ec7a-4960-a920-d3ea1f95b28b))
(pad "24" thru_hole circle (at 11.43 -3.81) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 7 "OUT2") (pinfunction "IO21") (pintype "bidirectional") (tstamp 312ca2f0-c42e-4ddd-9127-e8b4179718f3))
(pad "25" thru_hole circle (at 11.43 -1.27) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 6 "PWM1") (pinfunction "IO17") (pintype "bidirectional") (tstamp 087c1b51-b9f8-45dc-9cb8-d6c1057c4d76))
(pad "26" thru_hole circle (at 11.43 1.27) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 5 "OUT1") (pinfunction "IO16") (pintype "bidirectional") (tstamp dde09fa2-e440-4caf-942e-c819286e0cfc))
(pad "27" thru_hole circle (at 11.43 3.81) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 62fce800-b2a7-47c4-8a72-542538a12643))
(pad "28" thru_hole circle (at 11.43 6.35) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 9 "+5V") (pinfunction "5V") (pintype "power_in") (tstamp e63233c2-ed53-4e15-832d-27e2ff94e58b))
(pad "29" thru_hole circle (at 11.43 8.89) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "TD0") (pintype "bidirectional") (tstamp b23b1182-9290-42b5-9fc2-9038a4342ee7))
(pad "30" thru_hole circle (at 11.43 11.43) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "SD0") (pintype "bidirectional") (tstamp 108bdbb7-8c7d-4ec5-9bfe-27a8d4ec138d))
(pad "31" thru_hole circle (at 13.97 -11.43) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 0bbe6912-e2e1-487a-85d9-902ceeb6fea8))
(pad "32" thru_hole circle (at 13.97 -8.89) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "IO27") (pintype "bidirectional") (tstamp cd44d514-541f-43aa-b109-a631b541f0c4))
(pad "33" thru_hole circle (at 13.97 -6.35) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "IO25") (pintype "bidirectional") (tstamp ece93e96-86c8-4ccd-a854-88d2f8b17d40))
(pad "34" thru_hole circle (at 13.97 -3.81) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "IO32") (pintype "bidirectional") (tstamp d92b0d00-9b89-4aa0-a211-1a1ac25b5f34))
(pad "35" thru_hole circle (at 13.97 -1.27) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "TDI") (pintype "bidirectional") (tstamp 91c477f8-6e0a-4476-af24-31214067c8bc))
(pad "36" thru_hole circle (at 13.97 1.27) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "IO4") (pintype "bidirectional") (tstamp e91c7f3f-ef38-42d0-93de-5c42399f3708))
(pad "37" thru_hole circle (at 13.97 3.81) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "IO0") (pintype "bidirectional") (tstamp 8e0489a3-51e9-4964-a324-5a55d41e9274))
(pad "38" thru_hole circle (at 13.97 6.35) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "IO2") (pintype "bidirectional") (tstamp 48e5ed9b-8f72-4e67-8271-aa7bf02db449))
(pad "39" thru_hole circle (at 13.97 8.89) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "SD1") (pintype "bidirectional") (tstamp e933014d-c9ca-4d12-a461-00a110f6daed))
(pad "40" thru_hole circle (at 13.97 11.43) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(pinfunction "CLK") (pintype "bidirectional") (tstamp c12e2e69-9c75-46f1-9626-ae786273d054))
(model "${KIPRJMOD}/3d-packages/MH-ET-LIVE-ESP32.step"
(offset (xyz -20 37.5 -27.5))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 16790ba5-6b95-4730-bc46-9a251085d034)
(at 90 72 -90)
(descr "SMD pad as test Point, diameter 2.0mm")
(tags "test point SMD pad")
(property "Sheetfile" "FanController.kicad_sch")
(property "Sheetname" "")
(path "/1b45e9a6-7a8e-4948-9ff6-63b2a30835fb")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "TP8" (at -1.894 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a91cecde-24f9-40ae-bbf1-cb7b208859b3)
)
(fp_text value "TestPoint" (at 0 2.05 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b066819-7b88-4980-8010-57effaf33b5e)
)
(fp_text user "${REFERENCE}" (at 0 -2 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c1629fd-2b00-49d2-81bc-529e16163820)
)
(fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 73b82fa6-6647-41d4-86a9-c62688e26f93))
(fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp a4865892-9468-4704-baa6-6e0d431630bc))
(pad "1" smd circle locked (at 0 0 270) (size 2 2) (layers "F.Cu" "F.Mask")
(net 11 "PWR2") (pinfunction "1") (pintype "passive") (tstamp eeb9b882-7e91-4bd8-915f-87b059a05162))
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 326a349d-1650-4ebf-b828-aaf2df814579)
(at 91 61.5)
(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 "LCSC" "C17414")
(property "Sheetfile" "FanController.kicad_sch")
(property "Sheetname" "")
(path "/d28b6a71-0ef0-44bf-b8ee-928e9147bc9e")
(attr smd exclude_from_pos_files exclude_from_bom)
(fp_text reference "R2" (at 0 -1.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp be789241-20d8-41ff-ba21-accf85c9a5c8)
)
(fp_text value "10k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da01302e-7aea-44df-9f21-1690d5359a34)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 38e69bb6-06a1-40b4-a1b5-90a1e8a08084)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 0eaa60aa-cf7d-42aa-984e-ab140b6d13f9))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp b224dce2-6820-4aab-9728-cb2487d15222))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 61b9a6b6-2918-43b1-a00a-ab995c18ce40))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp be267542-8cd1-4e7f-8895-2b9ebfb51c39))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp e0877956-6c34-4067-877e-c87aa312e57d))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp e8960786-3e20-438d-ab5a-b120a9d3bc8b))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 03e0dba8-365c-4a1d-86d4-f461800a9655))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 163c3dd6-db17-4aef-b533-28debce5efe9))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 5a5fb07e-c202-455f-8618-4c8b6db999ea))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 8ce59ee0-a52a-450e-9bad-c2619f30c5ad))
(pad "1" smd roundrect locked (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 2 "GND") (tstamp 56d4bd39-d968-4278-8f55-6d5b6416a898))
(pad "2" smd roundrect locked (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 6 "PWM1") (tstamp 5a3a1509-eaea-4051-98d7-ee5e4644bde3))
(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 "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5FA16958) (tstamp 3a5d65d7-6ddf-4904-aeac-ac43ed94eeff)
(at 95 64.5 -90)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "LCSC" "C20917")
(property "Sheetfile" "FanController.kicad_sch")
(property "Sheetname" "")
(path "/f0630d1f-3dd1-4601-9838-2ad8ec67b75f")
(attr smd)
(fp_text reference "Q3" (at 2.5 0 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b5219aae-a22f-4391-aef3-c39edbfc8f19)
)
(fp_text value "AO3400A" (at 0 2.4 -270) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9063d621-d6b6-4e5e-bbdb-5584868c191e)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "F.Fab")
(effects (font (size 0.32 0.32) (thickness 0.05)))
(tstamp 265e9685-d9fe-4440-aaaf-e31d0fc8d227)
)
(fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 02f4b80a-b2f3-40af-a5c3-78dfb68fcaf7))
(fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 8cfee56a-31dd-4af2-83e1-135ffca72b46))
(fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp aabb7177-454a-4a25-94b6-36a528198c2d))
(fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp af8566c4-6d2a-4281-a915-731ae94afe11))
(fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 23580b54-5007-4427-89da-ab8f7cd65fd0))
(fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 97059a66-4af2-47fc-9b82-8bb45768c6c8))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 9ba32d76-7613-4b82-afea-e600c6cda730))
(fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp dc86ea6f-10df-49fe-9633-11dd4611662f))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp 05dbab40-75a7-4b50-bd6d-5bd91e5787cc))
(fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 0618f905-790a-4de7-baf3-e94e98569b29))
(fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 46171748-ea3e-409f-bda2-1c119e3aef35))
(fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp 91db68f3-2bfc-47f1-afc8-37ca3bd98d33))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp a34057e3-dd51-40bc-9a21-b86bedbad93b))
(pad "1" smd roundrect locked (at -0.9375 -0.95 270) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "OUT2") (pinfunction "G") (tstamp 835c4ab5-f8a6-438c-90c9-5bc8d04971cb))
(pad "2" smd roundrect locked (at -0.9375 0.95 270) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "S") (tstamp bb0ff24f-68c6-48e6-9a7b-42ac22b7f229))
(pad "3" smd roundrect locked (at 0.9375 0 270) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "PWR2") (pinfunction "D") (tstamp f5c3d255-9b7f-4850-9aac-d3f758058c47))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 3e213a8c-0d7b-436a-80e0-7b32e9ecf63e)
(at 115 44.5 180)
(descr "SMD pad as test Point, diameter 2.0mm")
(tags "test point SMD pad")
(property "Sheetfile" "FanController.kicad_sch")
(property "Sheetname" "")
(path "/c7ac48c1-9fb7-4c26-aafd-095f5c80f700")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "TP1" (at 0 -1.998) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3c2bf883-856a-4b60-9c4b-ece2a39b5ced)
)
(fp_text value "TestPoint" (at 0 2.05) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b7b3c097-e063-49e4-a738-cec345fdc34f)
)
(fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2f48737e-8928-46ea-b856-60abfe4d48f9)
)
(fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 4413178a-3c34-4d9b-8e08-dba207a8ab82))
(fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 3c2fa840-0004-4381-b1e1-85b2df591966))
(pad "1" smd circle locked (at 0 0 180) (size 2 2) (layers "F.Cu" "F.Mask")
(net 1 "+12V") (pinfunction "1") (pintype "passive") (tstamp 1df3f6ef-0633-4ffe-b8f3-f86a75140404))
)
(footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 3edb1bb2-e1fa-4bb6-b467-6ea7e74c78e8)
(at 111.5 60.5)
(descr "SMD pad as test Point, diameter 2.0mm")
(tags "test point SMD pad")
(property "Sheetfile" "FanController.kicad_sch")
(property "Sheetname" "")
(path "/4165cf20-5e32-40c8-90ae-49d81970e15b")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "TP4" (at 0 -1.826) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 656bff17-9dca-4226-b606-bc43a06204f0)
)
(fp_text value "TestPoint" (at 0 2.05) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 011747e7-919d-4871-8923-7db107c07d17)
)
(fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5ef0de54-0c94-4498-bbbb-64a0b8381a75)
)
(fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 53b35e41-59b7-402d-8848-69fec284adca))
(fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp ab5836c1-c83d-4406-85ea-1010747e3106))
(pad "1" smd circle locked (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask")
(net 2 "GND") (pinfunction "1") (pintype "passive") (tstamp afddb504-56f6-4449-8fa8-b8745bcc99e7))
)
(footprint "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 4e9e9b99-390b-43f1-84ac-d62acf58fe04)
(at 111.5 44.5 180)
(descr "SMD pad as test Point, diameter 2.0mm")
(tags "test point SMD pad")
(property "Sheetfile" "FanController.kicad_sch")
(property "Sheetname" "")
(path "/67b5a519-a018-46c9-a860-dd36a1b5417c")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "TP2" (at 0 -1.998) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3610a26d-3a5d-4e58-8604-7b919e42d8ac)
)
(fp_text value "TestPoint" (at 0 2.05) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8b743d31-31fa-46e2-a4d9-d326edd84458)
)
(fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f740ea7f-0422-47ed-9c1a-ea20fa84c58d)
)
(fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 67f20790-e3fb-4058-8fe0-e85cf01d9acb))
(fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp fb59e2a6-994b-4b4f-9644-6b5d8b935f6f))
(pad "1" smd circle locked (at 0 0 180) (size 2 2) (layers "F.Cu" "F.Mask")
(net 2 "GND") (pinfunction "1") (pintype "passive") (tstamp 475b2f80-b4b9-4f8a-8b79-864bcd1f9081))
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 57ab426d-f795-4317-b18b-32f0c530d7cd)
(at 117 72)
(descr "Mounting Hole 3.2mm, no annular, M3, DIN965")
(tags "mounting hole 3.2mm no annular m3 din965")
(property "Sheetfile" "FanController.kicad_sch")
(property "Sheetname" "")
(path "/c5c3e0ce-5091-4698-b159-1a0242ffe82a")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H4" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cfe44fda-12d9-4875-b673-089be0b1cb3b)
)
(fp_text value "MountingHole" (at 0 3.8) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 354ec50d-533c-4895-9083-a88a323cc546)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a8c431d8-33b5-45f0-b01b-fee2f26cae83)
)
(fp_circle (center 0 0) (end 2.8 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 8a610355-2c2a-422c-a865-966e1268e868))
(fp_circle (center 0 0) (end 3.05 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 6195684a-430f-497e-81fc-9ed20c85d734))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp acdd3dab-8e42-484c-95a0-1f6ec8e3ad2a))
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 8e0b0a23-775e-4019-83c2-272051281d52)
(at 99 61.5)
(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 "LCSC" "C17414")
(property "Sheetfile" "FanController.kicad_sch")
(property "Sheetname" "")
(path "/970c10eb-65ce-4bdf-901b-1dd68174fa30")
(attr smd exclude_from_pos_files exclude_from_bom)
(fp_text reference "R4" (at 0 -1.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aeb7278b-ef07-4858-95ac-abb71ce80033)
)
(fp_text value "10k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ae3fc70d-698c-406d-8868-b5bb622167ad)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp e6ec86f8-b04b-4724-825b-eab755cc1c31)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 3c61bd4c-1bb5-4a6a-8356-09cb818b6e6c))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 52e145a4-6cda-425a-a94b-b517098cda68))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4244fe19-995c-49b5-968b-18dacca73cd5))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 55945849-58d7-4127-9759-ab4895dac16a))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8b5cd325-4ac2-4092-9150-78d410c2e271))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp dfdcb4ae-933a-4a54-ac74-5b1db6addbbd))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 480e9fc6-260b-4037-ab06-74152c187f96))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 782ea88f-ba42-4816-a699-cf7eae4ee42d))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 7d4f409c-879a-4c66-8d25-72c89cb53c4e))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp b928d3fb-01dc-4039-92c4-e594ce55b86c))
(pad "1" smd roundrect locked (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 2 "GND") (tstamp dc2471e8-1203-463e-9f21-1b1750adbeca))
(pad "2" smd roundrect locked (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 8 "PWM2") (tstamp 5037d239-c17a-4425-bf9a-20b7ed4eaf26))
(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 "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 99ed0414-fe9d-4b3c-8e5b-df2910d4738a)
(at 95 61.5)
(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 "LCSC" "C17414")
(property "Sheetfile" "FanController.kicad_sch")
(property "Sheetname" "")
(path "/df6538d5-ac4d-4cf5-b450-f34f4b168bf0")
(attr smd exclude_from_pos_files exclude_from_bom)
(fp_text reference "R3" (at 0 -1.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 62faf30a-ee21-4c5a-b14d-ac986b69aa55)
)
(fp_text value "10k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 94ca4f93-cdfc-44c9-abb4-75df2ca44a02)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp d6ef2239-68db-4161-aea0-eff30d5e3bbf)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 28310cf0-d037-4d18-b240-10f4d180bf12))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp d91d95d0-2590-4c5d-80e2-1ab7514789b1))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 1fc8db24-c6b8-4953-9f5b-945ff8b4e417))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 28b60ab8-0fec-4e1b-b3eb-91e8c59d41c8))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 77e4bf0f-311a-4b06-be38-832ff2936ce4))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp d2a46369-ceae-48ca-ada5-2a75a036265b))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 2c27a063-e63b-4178-9834-164dd7a3b0f5))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 7074975d-f66d-4c96-8e67-dc41709d7910))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 82ee34cc-f290-451f-82a7-97fe16b9edcc))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 84b5a5f2-d481-4607-9670-8cc030047f73))
(pad "1" smd roundrect locked (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 2 "GND") (tstamp ea8e4385-302e-4472-8cc4-46867e201208))
(pad "2" smd roundrect locked (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 7 "OUT2") (tstamp ed861cc4-7c68-4af8-9d2f-fae00c28360f))
(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 "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5FA16958) (tstamp 9fd6ed0a-f86b-4b09-971c-5bc8c49440f5)
(at 91 64.5 -90)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "LCSC" "C20917")
(property "Sheetfile" "FanController.kicad_sch")
(property "Sheetname" "")
(path "/051a990e-1949-48d6-8713-696fa4755b26")
(attr smd)
(fp_text reference "Q2" (at 2.5 0 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 333475d1-3e71-48b7-9699-ce50464d36d1)
)
(fp_text value "AO3400A" (at 0 2.4 -270) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 00ce4df2-6c8d-4881-93e2-01205c75cbf0)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "F.Fab")
(effects (font (size 0.32 0.32) (thickness 0.05)))
(tstamp 0fba06ca-63be-445b-b877-b66ae2546738)
)
(fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 495e081b-4eec-4a82-829e-0a4638b99477))
(fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 7b2ae3d7-883d-478a-aec3-9083a17d5e38))
(fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp b96c73db-0a45-4032-ac8e-b65eefc1d3dd))
(fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp d90420f5-ae91-4ad2-9cfd-e24379ccc350))
(fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp b392631c-b220-4245-a0a5-8f92e5124767))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp c9ab8558-e05e-4dd6-87c8-e0caedeea07f))
(fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp cfc80bff-ab63-4510-8be5-f21c73e1a962))
(fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp fb1e04ea-1e0f-45cd-baab-ff81ae60ad81))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp 378a7221-1e93-49b1-ab2b-13e6e97399bc))
(fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp 854fbabc-90fb-4d36-a60d-2029167ec5ea))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp b0e4fee3-6ef3-450c-ba4b-f2e849d62f6c))
(fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp d5d2e9b5-fc0d-4fe9-9e4c-543055476b61))
(fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp f0d44c07-6edd-4328-9735-42f7c921b22d))
(pad "1" smd roundrect locked (at -0.9375 -0.95 270) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "PWM1") (pinfunction "G") (tstamp 4b28fa3e-b47a-42d4-9abc-a9a9f0fe73b2))
(pad "2" smd roundrect locked (at -0.9375 0.95 270) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "S") (tstamp 00be94d0-2b5a-4170-b34e-ebd8bfe8fce0))
(pad "3" smd roundrect locked (at 0.9375 0 270) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "FAN1") (pinfunction "D") (tstamp 589cb2e4-6401-4f6f-aeff-507516eb3956))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.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 ba9a86d6-3313-4ecb-8609-b96c0c2e96c2)
(at 87 61.5)
(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 "LCSC" "C17414")
(property "Sheetfile" "FanController.kicad_sch")
(property "Sheetname" "")
(path "/af04e865-0b11-4d50-9748-55cf586efdca")
(attr smd exclude_from_pos_files exclude_from_bom)
(fp_text reference "R1" (at 0 -1.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8eb819b7-0427-431d-ab28-99fcc93ae42c)
)
(fp_text value "10k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 423995b9-2b7c-407b-a40c-fba8794c3eeb)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp aa74ea9d-6397-4d9d-8df9-79f2673e924a)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 11db46ff-dfa6-4350-ad3f-60b72f2dbf1e))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 6c276ae9-5056-4f68-abe8-cbc3df17b1d1))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 791e4fa7-b8b4-4e77-89e0-fdf607d6bf69))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp cacbfbf0-b158-426c-88d9-387afa4d30c1))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp d5b1bdd0-b3e6-4673-a03e-f08e85f54b26))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp fe64e0c6-196b-4bf9-8a6b-13d4d0f911eb))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 0d8f985a-8c2f-4ca4-966b-07d705a4ce8c))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 18f6b137-a7be-4f19-a463-75a8d41b785d))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 2c6c98bb-5b71-471d-9748-b4de6695c4ae))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp b5c3fc29-f051-4514-93f3-7659fad47558))
(pad "1" smd roundrect locked (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 2 "GND") (tstamp 650058ae-8ad0-478d-bfad-80b6377020af))
(pad "2" smd roundrect locked (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 5 "OUT1") (tstamp 264c0d6d-7afd-4b84-8fee-9016529054cd))
(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 "TestPoint:TestPoint_Pad_D2.0mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp be8b3e54-26c9-4bb2-bea8-2d580123da56)
(at 93.5 72 180)
(descr "SMD pad as test Point, diameter 2.0mm")
(tags "test point SMD pad")
(property "Sheetfile" "FanController.kicad_sch")
(property "Sheetname" "")
(path "/0362860f-7e44-49c0-a5b8-2e4f660bf82a")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "TP7" (at 0 1.896) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp edbd395c-59ef-4dea-96ab-0c839625cbb2)
)
(fp_text value "TestPoint" (at -11 12.05) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 52c0240d-ef4f-4ed7-b5e6-107c2e9debff)
)
(fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 194e989a-197a-4f9c-8ec8-59867e653715)
)
(fp_circle (center 0 0) (end 0 1.2) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 29e67f6a-1b8b-45b2-baff-e3fa78ce7505))
(fp_circle (center 0 0) (end 1.5 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 88282e1c-c982-4447-b2be-87a60be73720))
(pad "1" smd circle locked (at 0 0 180) (size 2 2) (layers "F.Cu" "F.Mask")
(net 4 "FAN2") (pinfunction "1") (pintype "passive") (tstamp 60186c0b-dcfd-45b4-8555-63d9916391c6))
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp bea8f513-67d9-4288-a946-83e3b4b230ae)
(at 69 72)
(descr "Mounting Hole 3.2mm, no annular, M3, DIN965")
(tags "mounting hole 3.2mm no annular m3 din965")
(property "Sheetfile" "FanController.kicad_sch")
(property "Sheetname" "")
(path "/a61f40c1-5a84-41c2-a65b-98fac756643e")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H1" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d840b23f-327f-4237-b6e9-2933d796ea4b)
)
(fp_text value "MountingHole" (at 0 3.8) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 16ed5623-b24c-4723-b315-3daa41fb3d86)
)
(fp_text user "${REFERENCE}" (at -0.2 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b34c6ff2-29d5-4b4f-803e-5914171ea077)
)
(fp_circle (center 0 0) (end 2.8 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 095b1176-7cbf-4dd7-83b8-2041cacc81cb))
(fp_circle (center 0 0) (end 3.05 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 85773d3e-6fe9-42f8-acd8-dd42e555cd85))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp b9adadd5-d4e9-4e0f-816b-31501b0e4640))
)
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal" (layer "F.Cu")
(tedit 5B294EBC) (tstamp c4fa720f-01fd-4c31-9989-54cb3940b772)
(at 115 55.045 90)
(descr "Terminal Block Phoenix MKDS-1,5-2-5.08, 2 pins, pitch 5.08mm, size 10.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MKDS-1,5-2-5.08 pitch 5.08mm size 10.2x9.8mm^2 drill 1.3mm pad 2.6mm")
(property "Sheetfile" "FanController.kicad_sch")
(property "Sheetname" "")
(path "/f1035565-1cf6-4a36-9a02-99ff2512f2e9")
(attr through_hole exclude_from_pos_files exclude_from_bom)
(fp_text reference "J1" (at -3.455 4 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bb9b7f56-905e-49b9-beea-b0e806c8dffd)
)
(fp_text value "Conn_01x02_Female" (at 2.54 5.66 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 48c8dfe9-0f40-4089-a4f7-20cf89f0c2ad)
)
(fp_text user "${REFERENCE}" (at 2.54 3.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 06982654-9e14-4a2d-8d3c-cdc15fb0899d)
)
(fp_line (start 4.046 1.239) (end 4.011 1.274) (layer "F.SilkS") (width 0.12) (tstamp 11291a6c-4161-4665-a9e2-c303ece61ed7))