-
Notifications
You must be signed in to change notification settings - Fork 0
/
fan_controller.kicad_pcb
10643 lines (10603 loc) · 429 KB
/
fan_controller.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "PWR_IN")
(net 2 "GND")
(net 3 "Net-(U1-BS)")
(net 4 "Net-(U1-LX)")
(net 5 "5.2V_Buck")
(net 6 "Net-(U1-FB)")
(net 7 "Vin")
(net 8 "Net-(D1-A)")
(net 9 "Net-(U2-VIN)")
(net 10 "Net-(U2-ISET)")
(net 11 "Net-(U2-VSET)")
(net 12 "Net-(U1-EN)")
(net 13 "Net-(U2-D+)")
(net 14 "Net-(U2-D-)")
(net 15 "Net-(J1-CC1)")
(net 16 "Net-(J1-CC2)")
(net 17 "unconnected-(U2-SDA-Pad6)")
(net 18 "unconnected-(U2-SCL-Pad7)")
(net 19 "unconnected-(U2-Gate-Pad10)")
(net 20 "unconnected-(J1-SBU1-PadA8)")
(net 21 "unconnected-(J1-SBU2-PadB8)")
(net 22 "Net-(U3-VIN)")
(net 23 "unconnected-(H1-Pad1)")
(net 24 "fan_pwm")
(net 25 "unconnected-(H6-Pad1)")
(net 26 "Net-(JP1-A)")
(net 27 "Net-(JP1-C)")
(net 28 "Net-(JP1-B)")
(net 29 "unconnected-(U3-NC-Pad1)")
(net 30 "unconnected-(U3-NC-Pad2)")
(net 31 "unconnected-(U3-NC-Pad4)")
(net 32 "unconnected-(RV1-Pad1)")
(net 33 "unconnected-(RV1-Pad2)")
(net 34 "unconnected-(RV1-Pad3)")
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 0622c7d6-d1d5-447f-bd29-f5207a6c5d2b)
(at 181.53 120.125 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "Sheetfile" "fan_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/1e53bd32-243b-42d1-991b-753612112617")
(attr smd)
(fp_text reference "R5" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba8698bb-ec7e-447d-a01d-bb0455b62ba1)
)
(fp_text value "53.6k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6f298b1d-5c0f-417f-b347-23c7ad5e8641)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 65dea60e-f9fd-4572-aa42-9a0a093ab5b4)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3eb496f8-0809-4623-b3ec-6cf8a1d88f95))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae7ec07f-ae4e-4e23-89e3-01224092385c))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3a0aa65b-0f8a-48f5-978f-d84759a2dc47))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f2340aa6-bcb8-4ba1-8505-39ee69f8f080))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8b9b01ce-9326-46eb-944e-b7a525bffa4a))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9e9cae7b-e52c-4792-9f4a-149f803c29f9))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 90029dd3-e0cd-4b8f-91a3-26ae6090098e))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7b5fb251-1960-49d2-ab81-995ad137f075))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 98892b42-d2c8-4dd3-9876-aa6f606cc01a))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3c7f1328-d6f6-4645-8917-60e54029f2c8))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "5.2V_Buck") (pintype "passive") (tstamp 318fa3b5-1baf-4fa3-bd0c-9562fa298d46))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(U1-FB)") (pintype "passive") (tstamp b7a83f59-41aa-4b90-952a-90c8e4a136d9))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_4.5mm_Pad_Via" (layer "F.Cu")
(tstamp 085828bb-2cb7-48aa-92bf-67c10a48cc2e)
(at 175.375 140.5 180)
(descr "Mounting Hole 4.5mm")
(tags "mounting hole 4.5mm")
(property "Sheetfile" "fan_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/a019bba2-bd47-4dc4-bda5-6a4eeaa0009e")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -5.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 07bb0171-db23-4135-84c4-a19f890091c5)
)
(fp_text value "MountingHole_Pad" (at -0.125 -1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 81559ab4-79b6-417d-bff8-b66ba4b0a25d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c09a4096-4b9c-4a6a-adb7-29cc5a7f4be8)
)
(fp_circle (center 0 0) (end 4.5 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 10ada301-1fea-4ae8-a9c5-8ba19f703d94))
(fp_circle (center 0 0) (end 4.75 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 6c6b4fcc-e365-4e66-94af-fa0f0439888f))
(pad "1" thru_hole circle (at -3.375 0 180) (size 0.9 0.9) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 23 "unconnected-(H1-Pad1)") (pinfunction "1") (pintype "input+no_connect") (tstamp 1f4d48ac-0c3b-4877-a5bb-3d356233978f))
(pad "1" thru_hole circle (at -2.386485 -2.386485 180) (size 0.9 0.9) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 23 "unconnected-(H1-Pad1)") (pinfunction "1") (pintype "input+no_connect") (tstamp e7e784f4-4327-4b1f-b290-d2fd9d7889e8))
(pad "1" thru_hole circle (at -2.386485 2.386485 180) (size 0.9 0.9) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 23 "unconnected-(H1-Pad1)") (pinfunction "1") (pintype "input+no_connect") (tstamp e1f1bb4b-e333-4263-a74e-87f1c36c12a4))
(pad "1" thru_hole circle (at 0 -3.375 180) (size 0.9 0.9) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 23 "unconnected-(H1-Pad1)") (pinfunction "1") (pintype "input+no_connect") (tstamp f0f2b673-905d-4aa0-bec7-10b3972bbbd0))
(pad "1" thru_hole circle (at 0 0 180) (size 9 9) (drill 4.5) (layers "*.Cu" "*.Mask")
(net 23 "unconnected-(H1-Pad1)") (pinfunction "1") (pintype "input+no_connect") (tstamp 88a6f9ac-97b0-46f8-8096-f9758c729b4c))
(pad "1" thru_hole circle (at 0 3.375 180) (size 0.9 0.9) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 23 "unconnected-(H1-Pad1)") (pinfunction "1") (pintype "input+no_connect") (tstamp 7a60ac7e-fcc3-4133-9db8-3d5b974bbdbd))
(pad "1" thru_hole circle (at 2.386485 -2.386485 180) (size 0.9 0.9) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 23 "unconnected-(H1-Pad1)") (pinfunction "1") (pintype "input+no_connect") (tstamp 227c8e8f-1253-455d-b4a7-1ad3f4949fe1))
(pad "1" thru_hole circle (at 2.386485 2.386485 180) (size 0.9 0.9) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 23 "unconnected-(H1-Pad1)") (pinfunction "1") (pintype "input+no_connect") (tstamp 4f1114c8-05ea-434a-9c09-82824bb1078c))
(pad "1" thru_hole circle (at 3.375 0 180) (size 0.9 0.9) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 23 "unconnected-(H1-Pad1)") (pinfunction "1") (pintype "input+no_connect") (tstamp 5170c778-5834-4e38-bc54-eee398eaa6db))
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 0b9fd4f0-1c5f-4aec-9d75-16391024c547)
(at 184.25 120.15 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "Sheetfile" "fan_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/780968f6-fcfe-4e11-a01f-f52171448938")
(attr smd)
(fp_text reference "R7" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 43a99c95-d7db-4ebe-9133-3463c9adfc92)
)
(fp_text value "10R" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1ff594dd-e516-412f-bc5d-ae5bdae02460)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 601357ef-a118-45ef-a43f-2cce95f845a2)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5413ae4a-5bf3-4498-a73b-cf2b3d7f23f4))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3daed0ea-2233-4612-9440-6a6d6a2465e6))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 74bf1deb-ecf9-4f83-a3e9-dd41af2530e4))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 057d29d7-260e-4333-a11b-d9874351dc40))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4b385e31-8c60-4271-ae7a-7b9c82b355ca))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d20cd0e1-8de8-43ce-9069-38ca444fe301))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ff6ef13c-af35-489f-bf58-875d9e29e78e))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b5de983a-2f80-4cee-a729-09813310d4ee))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6b9a47d0-89bf-4b14-93e5-3b35a0aec405))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 33b515a9-1bd8-4df9-a3ce-1eed9cc15f53))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "Net-(JP1-C)") (pintype "passive") (tstamp d176980e-4e49-458f-bb35-66e726e3e31a))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "fan_pwm") (pintype "passive") (tstamp 34ff0075-b71e-4318-bf3a-f8d4186ee0ae))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_C_Receptacle_Palconn_UTC16-G" (layer "F.Cu")
(tstamp 0df53495-0e6a-4e7e-8297-17195490049e)
(at 189.475 100.85 90)
(descr "http://www.palpilot.com/wp-content/uploads/2017/05/UTC027-GKN-OR-Rev-A.pdf")
(tags "USB C Type-C Receptacle USB2.0")
(property "Sheetfile" "fan_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "USB 2.0-only Type-C Receptacle connector")
(property "ki_keywords" "usb universal serial bus type-C USB2.0")
(path "/37d912cc-b533-4f8e-a0ab-da2a5a95ad26")
(attr smd)
(fp_text reference "J1" (at 0 -4.58 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa3399f6-3fef-457c-9978-dc4cd4a01d17)
)
(fp_text value "USB_C_Receptacle_USB2.0" (at -9.465 -3.76 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a12e24e5-e23c-46cf-831d-59b79316a4bd)
)
(fp_text user "PCB Edge" (at 0 3.43 90) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f1653713-640e-47ae-8bff-d1969dd2eaa1)
)
(fp_text user "${REFERENCE}" (at 0 1.18 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fb93ee22-e4c4-4c82-a70b-055244deec22)
)
(fp_line (start -4.47 -0.67) (end -4.47 1.13)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 57509c1d-0e65-43d5-a912-ce125ec8f966))
(fp_line (start -4.47 4.84) (end -4.47 3.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 70cb727f-acd0-46e1-a61d-ddd2b11b39f6))
(fp_line (start 4.47 -0.67) (end 4.47 1.13)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f07800f4-942f-402e-b7f7-b13eca34fa4a))
(fp_line (start 4.47 4.84) (end -4.47 4.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f5e9c10-2f02-43e3-a698-06d0ba207cda))
(fp_line (start 4.47 4.84) (end 4.47 3.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 14770fc4-c2f9-4c55-bf62-5f8cbfd2fe82))
(fp_line (start -4.47 4.34) (end 4.47 4.34)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 99e5d00b-51a3-482d-8581-bf2de7480f04))
(fp_line (start -5.27 -3.59) (end -5.27 5.34)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a72a5e80-abf6-454f-b05f-0197fda8df8e))
(fp_line (start -5.27 5.34) (end 5.27 5.34)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 39cbcd7d-7f23-424b-bd00-f086fcd7eac5))
(fp_line (start 5.27 -3.59) (end -5.27 -3.59)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83dc4422-26a7-4df9-ace7-f3da3dc53943))
(fp_line (start 5.27 5.34) (end 5.27 -3.59)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a54098e0-5dc5-497b-b2e0-9ab04c5b2dda))
(fp_line (start -4.47 -2.48) (end -4.47 4.84)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a87dc415-523b-438e-9fb4-41054955f67a))
(fp_line (start -4.47 -2.48) (end 4.47 -2.48)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a8bcdaca-9d31-4b43-b6fc-9f0c125f58c0))
(fp_line (start 4.47 -2.48) (end 4.47 4.84)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 92c4550e-b039-435d-9696-a7051c5a9a35))
(fp_line (start 4.47 4.84) (end -4.47 4.84)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1d8173db-9fd4-4c7c-8733-62b9b31668e9))
(pad "" np_thru_hole circle (at -2.89 -1.45 270) (size 0.6 0.6) (drill 0.6) (layers "*.Cu" "*.Mask") (tstamp afaea8c2-fe3c-4d49-a580-da5a288a610d))
(pad "" np_thru_hole circle (at 2.89 -1.45 270) (size 0.6 0.6) (drill 0.6) (layers "*.Cu" "*.Mask") (tstamp 8226b93c-fb40-47a5-81cf-364dd3763d0d))
(pad "A1" smd rect (at -3.2 -2.51 90) (size 0.6 1.16) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp d406d25a-006f-44d2-b820-5a87ccce2757))
(pad "A4" smd rect (at -2.4 -2.51 90) (size 0.6 1.16) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(D1-A)") (pinfunction "VBUS") (pintype "passive") (tstamp 38816516-5931-4e74-8a60-5857c30e2f56))
(pad "A5" smd rect (at -1.25 -2.51 270) (size 0.3 1.16) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "Net-(J1-CC1)") (pinfunction "CC1") (pintype "bidirectional") (tstamp fd0c4656-202f-498d-a4a7-a878a140e783))
(pad "A6" smd rect (at -0.25 -2.51 270) (size 0.3 1.16) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "Net-(U2-D+)") (pinfunction "D+") (pintype "bidirectional") (tstamp 43bdefb6-d48d-4db2-a8dd-c7924053a8df))
(pad "A7" smd rect (at 0.25 -2.51 270) (size 0.3 1.16) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "Net-(U2-D-)") (pinfunction "D-") (pintype "bidirectional") (tstamp d870f284-9ea8-4680-89eb-cbc36faaeb74))
(pad "A8" smd rect (at 1.25 -2.51 270) (size 0.3 1.16) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "unconnected-(J1-SBU1-PadA8)") (pinfunction "SBU1") (pintype "bidirectional+no_connect") (tstamp 6a5faffc-7d0f-4543-9a58-258f0cdd4d38))
(pad "A9" smd rect (at 2.4 -2.51 90) (size 0.6 1.16) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(D1-A)") (pinfunction "VBUS") (pintype "passive") (tstamp 882e9df5-f058-4cdd-bf9c-ef556c4531c2))
(pad "A12" smd rect (at 3.2 -2.51 90) (size 0.6 1.16) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp b333da8e-586e-4768-ab00-0c71cf4ab457))
(pad "B1" smd rect (at 3.2 -2.51 90) (size 0.6 1.16) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp b510eeff-0b54-42ff-9517-2ec331c37c09))
(pad "B4" smd rect (at 2.4 -2.51 90) (size 0.6 1.16) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(D1-A)") (pinfunction "VBUS") (pintype "passive") (tstamp 4c096ac8-06a7-413c-a0b4-eed04d2530cf))
(pad "B5" smd rect (at 1.75 -2.51 270) (size 0.3 1.16) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "Net-(J1-CC2)") (pinfunction "CC2") (pintype "bidirectional") (tstamp 15faadfe-0e2d-4b17-b455-f1af39929512))
(pad "B6" smd rect (at 0.75 -2.51 270) (size 0.3 1.16) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "Net-(U2-D+)") (pinfunction "D+") (pintype "bidirectional") (tstamp 36b3638a-f64e-4f0f-ac2e-3390cfcdb8a6))
(pad "B7" smd rect (at -0.75 -2.51 270) (size 0.3 1.16) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "Net-(U2-D-)") (pinfunction "D-") (pintype "bidirectional") (tstamp f13c3795-3c02-41c1-9192-a3378a1d46f5))
(pad "B8" smd rect (at -1.75 -2.51 270) (size 0.3 1.16) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "unconnected-(J1-SBU2-PadB8)") (pinfunction "SBU2") (pintype "bidirectional+no_connect") (tstamp 7899341d-f223-44bf-abaa-49badb9b44e2))
(pad "B9" smd rect (at -2.4 -2.51 90) (size 0.6 1.16) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(D1-A)") (pinfunction "VBUS") (pintype "passive") (tstamp 8beaa743-a6d9-4596-9d92-b9d5e8e19b0d))
(pad "B12" smd rect (at -3.2 -2.51 90) (size 0.6 1.16) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 1c69a585-6237-4b19-959f-c0ccdf3d73b2))
(pad "S1" thru_hole oval (at -4.32 -1.93 180) (size 2 0.9) (drill oval 1.7 0.6) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp d7f2e6a0-0189-4eca-bfc8-9adb154861c0))
(pad "S1" thru_hole oval (at -4.32 2.24 180) (size 1.7 0.9) (drill oval 1.4 0.6) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 46c49771-37ee-4188-83cb-5ce4b986f50b))
(pad "S1" thru_hole oval (at 4.32 -1.93 180) (size 2 0.9) (drill oval 1.7 0.6) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 423eae65-acb7-4196-bfaa-a71218527ec9))
(pad "S1" thru_hole oval (at 4.32 2.24 180) (size 1.7 0.9) (drill oval 1.4 0.6) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 74969631-6385-4ed9-a78f-c1992000aeac))
(model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_C_Receptacle_Palconn_UTC16-G.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 19180c74-6e26-4e41-8c38-f164361c0c91)
(at 182.49 115.965 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "Sheetfile" "fan_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/5f1688fb-e3c6-46fa-9b6f-13ffb1a116c9")
(attr smd)
(fp_text reference "R4" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 10c82f2e-24d6-4060-a54a-4e8dd2f718a5)
)
(fp_text value "10k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c4857c06-582c-48da-9552-fe9171f8f256)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 9ba857b3-d9f7-4637-a706-f99cc00bf191)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1ce5e6e2-db2d-4f56-9b7f-b8185ddb5a85))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 519fe6dd-2acf-4002-8c8e-145556a1fa2b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5099c028-61c0-4c70-bfd1-f07345afef3e))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 23dc89f4-cd02-463e-9542-d2fb84278e42))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0177978e-17a8-4e78-a2a3-08f771b0839d))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7f7632f7-ee78-442c-b859-11231899596d))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b8ebc25-8153-443f-bd4c-b8f304d8ea72))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5f068e9c-1b3c-47f0-916e-b248dcd45441))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7ad92360-05e5-4b83-8e9e-833be256c8ed))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 76b194fd-c713-457e-b57a-e64991470d5a))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "PWR_IN") (pintype "passive") (tstamp b99d99a3-61a2-44ee-88db-7d40c3ef3e65))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(U1-EN)") (pintype "passive") (tstamp 5a1f7727-4324-46ce-b244-d43b42524e32))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Potentiometer_THT:Potentiometer_Alps_RK097_Dual_Horizontal" (layer "F.Cu")
(tstamp 19c4b83b-53b8-435e-ac6e-208c46532231)
(at 192.9 113.65 180)
(descr "1210, Dual Pot, Horizontal, Alps RK097 Dual, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk097/rk097.pdf")
(tags "Potentiometer horizontal Alps RK097 Dual")
(property "Sheetfile" "fan_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Dual potentiometer")
(property "ki_keywords" "resistor variable")
(path "/a9c9fb8e-4aee-423d-a355-33b7a62dabb6")
(attr through_hole)
(fp_text reference "RV1" (at 0 8.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e6863d05-b3da-473d-8460-73774e96847b)
)
(fp_text value "R_Potentiometer_Dual" (at 19.735 -9.27 270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3463d34f-b076-44a2-b5df-b858334d63b1)
)
(fp_text user "${REFERENCE}" (at -0.225 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 936925d7-2367-4957-a50b-5feab070fa90)
)
(fp_line (start -25.1 5.62) (end -25.1 -0.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae3320b7-0c42-42d0-8b80-9cf74cbfe4cb))
(fp_line (start -12.12 -0.62) (end -25.1 -0.62)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 87c715f5-4e67-4928-beba-05e3ce96e982))
(fp_line (start -12.12 5.62) (end -25.1 5.62)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 29481a06-ad16-4e53-a642-8d4644c1f07f))
(fp_line (start -12.12 6.12) (end -12.12 -1.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1ed21942-a356-4c95-bb22-13b492118460))
(fp_line (start -5.12 -1.12) (end -12.12 -1.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 125a75f3-3268-4fe4-9777-13e4b058d991))
(fp_line (start -5.12 6.12) (end -12.12 6.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc42d61c-8a81-4635-b8cc-5ce6b13c7e94))
(fp_line (start -5.12 7.37) (end -5.12 -2.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e17082b-1328-4a3a-8462-c95df48d31e7))
(fp_line (start 4.671 -2.37) (end -5.12 -2.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e3eaac3-f237-4934-a921-ffa632fd2384))
(fp_line (start 4.671 7.37) (end -5.12 7.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b27b367b-c39b-4c0f-9729-2d6fac1dc662))
(fp_line (start 4.671 7.37) (end 4.671 -2.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c20a73d2-e133-4ef6-bd9c-4040f483f694))
(fp_line (start -5 -2.7) (end -5 7.7)
(stroke (width 0.1) (type solid)) (layer "Edge.Cuts") (tstamp 4dd1fb36-0ec7-4edd-8a3a-c333d3095547))
(fp_line (start -25.25 -2.5) (end -25.25 7.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp deca946b-1dba-45d9-aaf8-d21b735a10a9))
(fp_line (start -25.25 7.5) (end 4.8 7.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6361f0a1-f145-4072-8ebf-62a02ed6273d))
(fp_line (start 4.8 -2.5) (end -25.25 -2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3805971a-1d93-49a6-8c75-1c72957ccd61))
(fp_line (start 4.8 7.5) (end 4.8 -2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cc245515-9383-4b15-8534-2526f7e95415))
(fp_line (start -25 -0.5) (end -25 5.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9477c127-ccbe-4282-a578-8f23ec7203a9))
(fp_line (start -25 5.5) (end -12 5.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c3873fb3-23e3-46ca-82fa-7b851e14e15f))
(fp_line (start -12 -1) (end -12 6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 75904c0c-f512-4804-bc0b-7c7bd1b118cd))
(fp_line (start -12 -0.5) (end -25 -0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a38a5252-5022-4319-a0db-4abfddf352c2))
(fp_line (start -12 6) (end -5 6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 466c4acc-5e85-4543-88ae-f317650fab5a))
(fp_line (start -5 -2.25) (end -5 7.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cca46e14-f331-4867-8b61-d090876da2c1))
(fp_line (start -5 -1) (end -12 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 58a68196-0d47-4d6c-affe-2eb85bebf699))
(fp_line (start -5 7.25) (end 4.55 7.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 47f4d4a6-5eac-4b98-b4a1-a698adc582f9))
(fp_line (start 4.55 -2.25) (end -5 -2.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 919a010a-21eb-450b-b311-57f2dc97d643))
(fp_line (start 4.55 7.25) (end 4.55 -2.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1a63d931-ea3c-4cda-a390-021096b3c22e))
(pad "1" thru_hole roundrect (at 0 0) (size 1.8 1.8) (drill 1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 32 "unconnected-(RV1-Pad1)") (pinfunction "1") (pintype "passive+no_connect") (tstamp 35b24c47-5c44-43e2-a02a-7614e5813f2e))
(pad "2" thru_hole circle (at 0 2.5) (size 1.8 1.8) (drill 1) (layers "*.Cu" "*.Mask")
(net 33 "unconnected-(RV1-Pad2)") (pinfunction "2") (pintype "passive+no_connect") (tstamp c2b2e060-0b49-4731-9dc0-60e79c07fc1b))
(pad "3" thru_hole circle (at 0 5) (size 1.8 1.8) (drill 1) (layers "*.Cu" "*.Mask")
(net 34 "unconnected-(RV1-Pad3)") (pinfunction "3") (pintype "passive+no_connect") (tstamp 14db4623-4441-4676-bba5-6dfc95204040))
(pad "4" thru_hole circle (at 2.5 0) (size 1.8 1.8) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "5.2V_Buck") (pinfunction "4") (pintype "passive") (tstamp 47860449-7098-4de9-b2a1-2d1804afd433))
(pad "5" thru_hole circle (at 2.5 2.5) (size 1.8 1.8) (drill 1) (layers "*.Cu" "*.Mask")
(net 22 "Net-(U3-VIN)") (pinfunction "5") (pintype "passive") (tstamp f564c726-6b20-4b83-9f21-bc30f53eab42))
(pad "6" thru_hole circle (at 2.5 5) (size 1.8 1.8) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "6") (pintype "passive") (tstamp 109be851-8892-4c44-b7e1-fa96c1162b6c))
(model "${KICAD6_3DMODEL_DIR}/Potentiometer_THT.3dshapes/Potentiometer_Alps_RK097_Dual_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu")
(tstamp 1d34719b-bbe8-4935-b3de-c0b7bf485413)
(at 175.93 120.615 180)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "fan_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/35a7f0ee-3847-47e5-8c7f-7021fd80b6c3")
(attr smd)
(fp_text reference "C9" (at 0 -1.85) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 83c6d72c-9c72-4444-bc13-3d27de584414)
)
(fp_text value "~" (at 0 1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp edacc70b-c84a-4ad2-9386-80b967ac7ec3)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 4e4359de-a70e-4a3c-a83d-02592bc0080c)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5a2a73ff-ca21-4ea7-ba76-90743c801165))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 783bdc3b-645c-4eb0-8f40-eda9b14c1fe0))
(fp_line (start -2.3 -1.15) (end 2.3 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1b33cddf-280f-4597-a9fc-1e7e3b8537b8))
(fp_line (start -2.3 1.15) (end -2.3 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 220037ac-6569-4979-be8f-43a82960b0c2))
(fp_line (start 2.3 -1.15) (end 2.3 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ac3de994-8089-4daa-926e-935ad607d7b0))
(fp_line (start 2.3 1.15) (end -2.3 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fedc10d0-1dd5-4f93-a718-c1b87cabc54e))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d120d099-21ee-47f2-801d-48564761b997))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a2b871e9-68a1-420d-8e91-427c4fa9fb18))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6869d62b-9a35-425d-a5b7-1acce8b8920c))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cbb6ae05-4670-4573-845d-9d8d2847032c))
(pad "1" smd roundrect (at -1.475 0 180) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 5 "5.2V_Buck") (pintype "passive") (tstamp 9fc2d57a-b26e-43c8-bc17-0fcec45568e7))
(pad "2" smd roundrect (at 1.475 0 180) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 2 "GND") (pintype "passive") (tstamp ed2db7b4-e1a5-440f-b826-c5973c2ac37a))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu")
(tstamp 1f338721-6f2d-4c3b-b1cf-d76ececc90ea)
(at 175.88 122.815 180)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "fan_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/f592c9ad-4aa3-4372-b283-161e56b11ee5")
(attr smd)
(fp_text reference "C10" (at 0 -1.85) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 15a5d85f-0d9d-4c1b-aead-0278e236b194)
)
(fp_text value "~" (at 0 1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c5a14988-df50-4870-8de0-ad7ba9bdda48)
)
(fp_text user "${REFERENCE}" (at 0.18 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 9ba1acb2-8734-46f2-b791-bc79315859dc)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc96795a-63bf-4030-a953-6a56d6b2777f))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0f8b677-1135-46f2-8530-52acc63b9959))
(fp_line (start -2.3 -1.15) (end 2.3 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1d374e30-48ec-4877-b328-1ef1b2900ea6))
(fp_line (start -2.3 1.15) (end -2.3 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp df8c3c29-c6e6-49f3-84ad-b9c69e2fb723))
(fp_line (start 2.3 -1.15) (end 2.3 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b4c6a950-24f1-4f1d-94e5-5290dd8681f0))
(fp_line (start 2.3 1.15) (end -2.3 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 24f28fb4-eb74-459e-ada3-470dcafe0725))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4203d1c1-b58d-4816-b2c6-48f745bb9dbc))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 73394ceb-13f8-4bfb-9dad-56993a4183a7))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 03c68299-3e60-4953-b471-5a2d0e643356))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 453e93c4-9e03-4d52-83ae-9a8065da0de7))
(pad "1" smd roundrect (at -1.475 0 180) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 5 "5.2V_Buck") (pintype "passive") (tstamp 36ff5029-ca44-4703-8285-c4c4018a29e3))
(pad "2" smd roundrect (at 1.475 0 180) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 2 "GND") (pintype "passive") (tstamp 578cca3d-d246-49f8-acd9-bb753e88466a))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu")
(tstamp 23088145-c717-4986-a144-e0c3bae04274)
(at 175.98 113.125 180)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "fan_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/a4452ce2-b9c2-45e6-9169-f772e0f67bc1")
(attr smd)
(fp_text reference "C4" (at 0 -1.85) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b810c877-c43a-432a-9dc2-ca872032bc77)
)
(fp_text value "47u" (at 0 1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 27a29e5c-d7d0-4ced-bd1c-4fc3cc480e0a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp fd652881-4dc8-4877-9b51-e984e2a96a2b)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3e84ffc8-4dfb-4430-b4d0-362b51f61c0b))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 370c7cb9-12f7-4991-b228-230af9df4fbb))
(fp_line (start -2.3 -1.15) (end 2.3 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5288e42c-716d-49b2-a2a3-0f279075d069))
(fp_line (start -2.3 1.15) (end -2.3 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1329ed13-6882-4c8c-9a72-bb88e8c2af11))
(fp_line (start 2.3 -1.15) (end 2.3 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c221dd56-9698-45ac-bb57-5f16a7ef3aa1))
(fp_line (start 2.3 1.15) (end -2.3 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 34046e4b-0d3d-423a-973c-10553fd0dd6f))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 14644b08-3bcb-4828-b760-c4c6af0077af))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 67add395-d49d-46ff-af0d-04ed6f002f92))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c5b75ac8-c70e-455a-858d-aa30122684e0))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 958f8973-c2fb-4f6e-b933-8ef24088e96d))
(pad "1" smd roundrect (at -1.475 0 180) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 1 "PWR_IN") (pintype "passive") (tstamp 9bf6e723-6b3f-4a81-8ca8-403b2f9b634b))
(pad "2" smd roundrect (at 1.475 0 180) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 2 "GND") (pintype "passive") (tstamp 2d9b21d4-9188-4503-a7fb-1fc675f05857))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:SOP-8_3.9x4.9mm_P1.27mm" (layer "F.Cu")
(tstamp 324c360f-a659-46f8-a4f1-004f6f43af76)
(at 191.25 119.285 180)
(descr "SOP, 8 Pin (http://www.macronix.com/Lists/Datasheet/Attachments/7534/MX25R3235F,%20Wide%20Range,%2032Mb,%20v1.6.pdf#page=79), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOP SO")
(property "Sheetfile" "fan_controller.kicad_sch")
(property "Sheetname" "")
(path "/1fd3998b-9eec-4445-8cc7-f08c79d71ba1")
(attr smd)
(fp_text reference "U3" (at 0 -3.4) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b5cae2e7-9236-447b-98c7-5175f5711af6)
)
(fp_text value "~" (at -0.6 -0.115) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 73f0c3d6-6c03-43a6-85de-6648a32a615c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.98 0.98) (thickness 0.15)))
(tstamp b52e7231-ad51-40a8-8b28-a4b7b9559cbd)
)
(fp_line (start 0 -2.56) (end -3.45 -2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fba5373c-9e66-4dcb-800e-7dbee14dc1f2))
(fp_line (start 0 -2.56) (end 1.95 -2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 10b2ad2d-5190-464a-8aa2-c210cfbac12f))
(fp_line (start 0 2.56) (end -1.95 2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f15aae34-a7b6-4438-a464-df02b2124641))
(fp_line (start 0 2.56) (end 1.95 2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1bfba3af-5c9d-4ad0-b6fb-504322aa3f35))
(fp_line (start -3.7 -2.7) (end -3.7 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2220ba3a-6af3-445f-92bf-582f01197db5))
(fp_line (start -3.7 2.7) (end 3.7 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e8baaa73-ed97-4edb-924c-c0832779b017))
(fp_line (start 3.7 -2.7) (end -3.7 -2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e30d267e-690c-4533-b346-2d41c53c51cc))
(fp_line (start 3.7 2.7) (end 3.7 -2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e17e68fd-359c-42da-96a1-69b89e1472fe))
(fp_line (start -1.95 -1.475) (end -0.975 -2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a4bf9abf-6bc1-40e9-b41e-3b3937c23341))
(fp_line (start -1.95 2.45) (end -1.95 -1.475)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 75073440-139c-4a9e-8cdb-dadaed3a362b))
(fp_line (start -0.975 -2.45) (end 1.95 -2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c62ffac8-90ea-4eda-9193-2aef58d9eb78))
(fp_line (start 1.95 -2.45) (end 1.95 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8bca83b4-f708-46db-bf90-69b3a0fb1936))
(fp_line (start 1.95 2.45) (end -1.95 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9f119d2f-5c97-4ef9-9762-f6a6029d429b))
(pad "1" smd roundrect (at -2.625 -1.905 180) (size 1.65 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "unconnected-(U3-NC-Pad1)") (pinfunction "NC") (pintype "input+no_connect") (tstamp 30908006-4a80-4795-a821-8d3debb1c03b))
(pad "2" smd roundrect (at -2.625 -0.635 180) (size 1.65 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "unconnected-(U3-NC-Pad2)") (pinfunction "NC") (pintype "input+no_connect") (tstamp a0418517-b893-4b7a-bab9-eb80637420aa))
(pad "3" smd roundrect (at -2.625 0.635 180) (size 1.65 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "Net-(U3-VIN)") (pinfunction "VIN") (pintype "input") (tstamp adab07e6-3840-45b5-a3fe-fc855630edc1))
(pad "4" smd roundrect (at -2.625 1.905 180) (size 1.65 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "unconnected-(U3-NC-Pad4)") (pinfunction "NC") (pintype "input+no_connect") (tstamp dad6de7a-f96e-473a-a565-67656a356954))
(pad "5" smd roundrect (at 2.625 1.905 180) (size 1.65 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "input") (tstamp 9e46fd4f-feb1-4037-8f62-55fd8722335f))
(pad "6" smd roundrect (at 2.625 0.635 180) (size 1.65 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "Net-(JP1-A)") (pinfunction "PWM") (pintype "input") (tstamp 273a47d5-093e-4e05-ad9c-81049bd57c8a))
(pad "7" smd roundrect (at 2.625 -0.635 180) (size 1.65 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "Net-(JP1-B)") (pinfunction "PWMB") (pintype "input") (tstamp 3440e5f8-495f-4951-a74e-bbd4357b5680))
(pad "8" smd roundrect (at 2.625 -1.905 180) (size 1.65 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "5.2V_Buck") (pinfunction "VCC") (pintype "input") (tstamp 3d4a32b5-3bad-40c0-8360-281bb20f1fe6))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOP-8_3.9x4.9mm_P1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "0_fan:pad" (layer "F.Cu")
(tstamp 39c2a460-8098-421c-93f3-4eee11761500)
(at 178 130)
(property "Sheetfile" "fan_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/baf07a3f-3401-40df-91aa-23cefab8eba8")
(attr smd)
(fp_text reference "H3" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 05aabbcc-ccf7-4334-a459-fc0196028d4c)
)
(fp_text value "MountingHole_Pad" (at -0.3 0.8 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b414c9f2-9ae9-4e34-bd3c-57cc8574f0fb)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c3dc7c56-aa74-4ec9-90cf-101ceaffae55)
)
(pad "1" smd roundrect (at 0 0.1) (size 5 2.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "PWR_IN") (pinfunction "1") (pintype "input") (thermal_bridge_angle 45) (tstamp 59efc50c-3ce0-400d-85e0-65f9d9ba2889))
)
(footprint "Fuse:Fuse_1210_3225Metric" (layer "F.Cu")
(tstamp 4020ca11-b9d7-40a3-977d-941c1fa46f63)
(at 180.65 112.6 180)
(descr "Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "fuse")
(property "Sheetfile" "fan_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Fuse")
(property "ki_keywords" "fuse")
(path "/a3adaa6d-61a0-462a-85ed-c85323667f79")
(attr smd)
(fp_text reference "F1" (at 0 -2.28) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e7a044bb-9c96-46a4-a7a5-32e3a1be74b6)
)
(fp_text value "Fuse" (at 0 2.28) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp baa7d696-9266-474d-adbc-cc9d256bdb2b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 66a1e58d-dcf1-4f8f-a9d0-b9d4b06c4b0e)
)
(fp_line (start -0.602064 -1.36) (end 0.602064 -1.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12125a0b-e33f-4e47-8657-c0a670812857))
(fp_line (start -0.602064 1.36) (end 0.602064 1.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f7742a94-13a0-4988-8499-c5eb1c8209bb))
(fp_line (start -2.28 -1.58) (end 2.28 -1.58)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dbea939b-1947-4011-9d5d-aa1828c88914))
(fp_line (start -2.28 1.58) (end -2.28 -1.58)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5fdef163-6af7-408a-9819-8c94a1acdeea))
(fp_line (start 2.28 -1.58) (end 2.28 1.58)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c9fa1a8b-5840-4718-846c-3cbdf448c479))
(fp_line (start 2.28 1.58) (end -2.28 1.58)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4ac04b4b-45c7-4912-803c-ece6694aa159))
(fp_line (start -1.6 -1.25) (end 1.6 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c0810dec-b2c8-4b4d-9bbc-9923d88a049d))
(fp_line (start -1.6 1.25) (end -1.6 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 482a9c8b-6100-4b9c-bdf4-54f2493fe9c7))
(fp_line (start 1.6 -1.25) (end 1.6 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a743f36e-830f-43a8-8532-a83d3bbaa487))
(fp_line (start 1.6 1.25) (end -1.6 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 823386ec-1e37-45df-8002-fab1db813f7e))
(pad "1" smd roundrect (at -1.4 0 180) (size 1.25 2.65) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 7 "Vin") (pintype "passive") (tstamp ba91d493-0755-4779-907a-a6688e176c3c))
(pad "2" smd roundrect (at 1.4 0 180) (size 1.25 2.65) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 1 "PWR_IN") (pintype "passive") (tstamp 88399866-9e65-405a-b51e-edd9bdb19525))
(model "${KICAD6_3DMODEL_DIR}/Fuse.3dshapes/Fuse_1210_3225Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 4ba24a2e-1290-4636-aeb2-573612173b69)
(at 177.19 101.35 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "Sheetfile" "fan_controller.kicad_sch")
(property "Sheetname" "")
(property "dnp" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/b2473d09-f186-4d8e-9e61-27909ad9d3d9")
(attr smd)
(fp_text reference "R3" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e72db00-62c4-4114-9faf-d778dcd69575)
)
(fp_text value "10k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0e70cee3-5f3d-48a2-9a44-7a86bbf69c1c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 7569319a-2679-4c99-8fd0-1edd5f3965cd)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 74894dd0-1820-470e-9eda-da768ddcddd3))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ff39379-7a1f-45e4-93a9-da4110981f6e))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5b256339-02d4-408a-93ef-58f6983797dd))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 13bec4c6-4bb8-4328-add0-c669c278dd0d))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9eeb40e6-6f22-4310-819c-a32ae0fc7a68))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bbcb421a-5aa9-40d6-b6f8-79da8337c836))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cdbec894-afc6-44d8-a16f-0dc879a3d5c2))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b743bf13-230c-48b5-b14d-64558cc8b951))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a0aaffa5-2af2-4f96-a677-41650110d871))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 82748918-3de9-4019-8f7a-ce97323035fc))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(U2-VSET)") (pintype "passive") (tstamp 0b94383d-04e6-46ad-84d3-87fd481487a7))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 25d428f2-8ea1-47e4-81e8-8b665d6265a2))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 4fee64e2-8b03-4dca-a7e7-c16050df0696)
(at 178.65 101.45 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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")
(property "Sheetfile" "fan_controller.kicad_sch")
(property "Sheetname" "")
(property "dnp" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/0435da17-da9b-4453-92dd-ef55078a26cf")
(attr smd)
(fp_text reference "R2" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 805ba498-b52e-421f-862a-e38bc7fe9fab)
)
(fp_text value "10.5" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 697970c9-6317-49c8-a2dc-c5ed53691796)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp c58ab3c0-3d9f-4064-ac1c-9dd4cdb82214)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9ae94f52-1793-47f4-8b73-e0a0a24cff17))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a94d7d64-c7cb-4d1f-b6c7-0b27efd6b0fa))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d247a2e9-6837-4eba-96d8-1ed772ef5daa))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 127c0a47-6e20-46aa-a1ed-0b1c3b27a458))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2c133a32-17b6-457d-a273-24958b5756bb))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ee4076e9-cfef-4f56-91cb-d9291885fd4e))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp de1b116b-4309-4b01-98d0-f9abb562024c))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 11b2d203-6787-4ce7-9f92-29d39bc46f2f))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 08cf3672-ff30-4bd3-99bb-fe9daaab7469))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 521843e2-ef53-4442-b75b-dec822fd8fd5))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(U2-ISET)") (pintype "passive") (tstamp f38ece70-bff6-4f99-a597-8461057da289))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 54d621c0-f287-488a-8f0c-839235bf9109))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 5032fa99-03ae-4488-b214-d6a93183720c)
(at 193.35 122.885 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "fan_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/b1890046-988c-462b-a2a1-62f7f4c0dfd2")
(attr smd)
(fp_text reference "C8" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 231919e0-3825-4fa3-bf7a-1e44f81240b2)
)
(fp_text value "~" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ed844c81-9697-44a1-bffa-0359ff533682)
)
(fp_text user "${REFERENCE}" (at 0.8 0.4) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 58742c3e-5305-4b0b-9b51-26b11a24deb9)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp df86f765-de0c-487a-afdf-e1334cdf4c7b))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 30e69623-c0d8-4a8b-b08b-fa97e7235e48))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e82e7644-f3c9-4eda-88ee-bdbf57cb8b60))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 99cd17af-d261-4318-8d9d-598a6c6a46f0))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fb569079-4026-4a6f-a8ab-e332bccd822e))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 58a4e803-48f1-487c-8196-7d06c85f49f9))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 97b3618e-a8ba-454d-a42d-034d2394c46a))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2f62d135-a5e5-460e-b72b-b6abb7253831))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 989b00aa-641c-4d20-9266-e782b5640fd4))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 47bb0fcf-b06a-4d0c-a46d-c702d509436f))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "Net-(U3-VIN)") (pintype "passive") (tstamp f77eebe2-fe7a-4dd7-9904-e554fc9d2757))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 5c5233f2-a471-4341-9a6e-5f1dd2206ebf))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"