-
Notifications
You must be signed in to change notification settings - Fork 0
/
Fan hub v0.1.kicad_pcb
6767 lines (6745 loc) · 266 KB
/
Fan hub v0.1.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "Fan hub")
(date "2023-05-21")
(rev "V0.1")
)
(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.05)
(aux_axis_origin 50 100)
(grid_origin 50 100)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "GBR/")
)
)
(net 0 "")
(net 1 "/FAN_GND")
(net 2 "/+12V")
(net 3 "/Fan_s")
(net 4 "/Fan_PWM")
(net 5 "unconnected-(Fan2-Pad3)")
(net 6 "unconnected-(Fan3-Pad3)")
(net 7 "unconnected-(Fan4-Pad3)")
(net 8 "unconnected-(Fan5-Pad3)")
(net 9 "unconnected-(Fan6-Pad3)")
(net 10 "unconnected-(Fan7-Pad3)")
(net 11 "unconnected-(Fan8-Pad3)")
(net 12 "unconnected-(Fan9-Pad3)")
(footprint "Connector_Molex:Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5EA53D3B) (tstamp 19aebe76-297a-4f88-b968-074020a6ffca)
(at 82.385 86.665 90)
(descr "Molex KK-254 Interconnect System, old/engineering part number: AE-6410-04A example for new part number: 22-27-2041, 4 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex KK-254 vertical")
(property "Sheetfile" "Fan hub v0.1.kicad_sch")
(property "Sheetname" "")
(path "/bf619855-95b5-4bfa-b59c-5398d914b2be")
(attr through_hole)
(fp_text reference "Fan8" (at 3.81 -4.12 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5cb7159a-2088-4f09-9501-535a66bf3112)
)
(fp_text value "Conn_01x04_Male" (at 3.81 4.08 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2b3b5235-9a3b-4275-8dbe-ba1856f65de9)
)
(fp_text user "${REFERENCE}" (at 3.81 -2.22 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 43dceda5-711e-4186-b30a-176809318e93)
)
(fp_line (start 9 2.99) (end 9 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 09b3aa77-b0cf-4f4e-ac6e-edd1901e62a5))
(fp_line (start 0.25 2.99) (end 0.25 1.99) (layer "F.SilkS") (width 0.12) (tstamp 1be5121d-4e6b-449b-8be8-211e2b4ec10f))
(fp_line (start 0 1.99) (end 0.25 1.46) (layer "F.SilkS") (width 0.12) (tstamp 212ac656-5e11-4621-a597-16c68a89c888))
(fp_line (start 7.37 1.46) (end 7.62 1.99) (layer "F.SilkS") (width 0.12) (tstamp 27327eb9-8afd-4283-8504-ffce9e2cce10))
(fp_line (start -0.8 -2.43) (end 0.8 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 3bce9ade-513a-4700-9953-4dbf7f6754b9))
(fp_line (start 0.25 1.46) (end 7.37 1.46) (layer "F.SilkS") (width 0.12) (tstamp 48961caa-e32b-4c6f-b2ef-6fcc09bd8d31))
(fp_line (start 7.37 2.99) (end 7.37 1.99) (layer "F.SilkS") (width 0.12) (tstamp 48bb5a82-1193-4edd-b7c8-a309d0fee710))
(fp_line (start 5.88 -2.43) (end 5.88 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 5074329f-5c23-4313-a3ff-15524de289f3))
(fp_line (start -1.38 2.99) (end 9 2.99) (layer "F.SilkS") (width 0.12) (tstamp 79f208ca-38ca-4305-9ac0-e73a484496d9))
(fp_line (start 7.62 1.99) (end 7.62 2.99) (layer "F.SilkS") (width 0.12) (tstamp 7b69cf92-f8d0-4270-99e6-97230d5915b7))
(fp_line (start -1.38 -3.03) (end -1.38 2.99) (layer "F.SilkS") (width 0.12) (tstamp 8609a58c-da02-4f0c-9923-514c684def15))
(fp_line (start 0 1.99) (end 7.62 1.99) (layer "F.SilkS") (width 0.12) (tstamp 878ae194-fb5a-45d8-9fdf-ab71473e189c))
(fp_line (start 6.82 -3.03) (end 6.82 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 96facdd5-9f08-46b4-af26-d868273aa5ff))
(fp_line (start 4.28 -3.03) (end 4.28 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 976b8b1a-3735-497c-95b7-48b742b2218a))
(fp_line (start 1.74 -3.03) (end 1.74 -2.43) (layer "F.SilkS") (width 0.12) (tstamp a0299b62-c831-4ab2-b413-a96cbdb7770d))
(fp_line (start 6.82 -2.43) (end 8.42 -2.43) (layer "F.SilkS") (width 0.12) (tstamp a474aba8-ed6c-4268-8c72-3c1b9785d95f))
(fp_line (start 3.34 -2.43) (end 3.34 -3.03) (layer "F.SilkS") (width 0.12) (tstamp a8ac72ee-5823-4503-bf8a-54517fed150a))
(fp_line (start 8.42 -2.43) (end 8.42 -3.03) (layer "F.SilkS") (width 0.12) (tstamp af2ead54-7dfe-48f6-bfaa-65ef36d9b408))
(fp_line (start 1.74 -2.43) (end 3.34 -2.43) (layer "F.SilkS") (width 0.12) (tstamp b64f7aa7-e92f-4b5a-b4a0-e7371003a056))
(fp_line (start 4.28 -2.43) (end 5.88 -2.43) (layer "F.SilkS") (width 0.12) (tstamp bab53064-8517-4c57-9f98-7e52274c222d))
(fp_line (start 9 -3.03) (end -1.38 -3.03) (layer "F.SilkS") (width 0.12) (tstamp e6f16862-044f-4dce-957e-90634d7ed6e8))
(fp_line (start -0.8 -3.03) (end -0.8 -2.43) (layer "F.SilkS") (width 0.12) (tstamp edf6418a-94dd-40af-9190-91b1fef328ea))
(fp_line (start 0.8 -2.43) (end 0.8 -3.03) (layer "F.SilkS") (width 0.12) (tstamp f23c9934-b7e8-4edf-8371-bed52231f299))
(fp_line (start 0 2.99) (end 0 1.99) (layer "F.SilkS") (width 0.12) (tstamp f8adcc45-a81f-4efa-a349-18074efbfb92))
(fp_line (start -1.67 -2) (end -1.67 2) (layer "F.SilkS") (width 0.12) (tstamp ff8b5675-dfb6-49c3-861d-d5fbc9e621ff))
(fp_line (start -1.77 -3.42) (end -1.77 3.38) (layer "F.CrtYd") (width 0.05) (tstamp 5f9eeffd-0f83-4b0a-8537-eb41deb9cd3c))
(fp_line (start 9.39 -3.42) (end -1.77 -3.42) (layer "F.CrtYd") (width 0.05) (tstamp 6773eaff-3dcb-4c74-ae29-0c0672043fae))
(fp_line (start -1.77 3.38) (end 9.39 3.38) (layer "F.CrtYd") (width 0.05) (tstamp aa6d27fb-070c-4f98-9246-28854aa247b8))
(fp_line (start 9.39 3.38) (end 9.39 -3.42) (layer "F.CrtYd") (width 0.05) (tstamp faf5dc82-39bb-44cf-aa85-008dc28ee714))
(fp_line (start -0.562893 0) (end -1.27 0.5) (layer "F.Fab") (width 0.1) (tstamp 5af0f9a3-3d17-4048-b14f-f58c81552975))
(fp_line (start 8.89 2.88) (end 8.89 -2.92) (layer "F.Fab") (width 0.1) (tstamp 5e6d172a-adeb-436b-9d75-9dacea63ff89))
(fp_line (start -1.27 2.88) (end 8.89 2.88) (layer "F.Fab") (width 0.1) (tstamp 72fe4019-4e79-41f9-a3bb-3f509df0ac73))
(fp_line (start -1.27 -2.92) (end -1.27 2.88) (layer "F.Fab") (width 0.1) (tstamp e6fa37c5-506e-4824-9930-03a27c4f9822))
(fp_line (start 8.89 -2.92) (end -1.27 -2.92) (layer "F.Fab") (width 0.1) (tstamp f15be52f-c317-498a-b771-95e82b929c29))
(fp_line (start -1.27 -0.5) (end -0.562893 0) (layer "F.Fab") (width 0.1) (tstamp f5bc932e-8b27-4fd0-a5b9-7d93d017ed6d))
(pad "1" thru_hole roundrect (at 0 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask) (roundrect_rratio 0.1436781609)
(net 1 "/FAN_GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 6552db3c-99a0-43cc-803d-4f661ad812a0))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 2 "/+12V") (pinfunction "Pin_2") (pintype "passive") (tstamp fecbc95b-9704-4ae3-8a83-7300289beb33))
(pad "3" thru_hole oval (at 5.08 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 11 "unconnected-(Fan8-Pad3)") (pinfunction "Pin_3") (pintype "passive+no_connect") (tstamp 3fdd22b5-9756-4830-a474-5c3ac773cd65))
(pad "4" thru_hole oval (at 7.62 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 4 "/Fan_PWM") (pinfunction "Pin_4") (pintype "passive") (tstamp f3a70cc5-da03-40c4-bc34-ace7c6bdd86f))
(model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Molex:Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5EA53D3B) (tstamp 1b985be8-250a-49d6-931c-4714ef3bf00d)
(at 61.43 86.665 90)
(descr "Molex KK-254 Interconnect System, old/engineering part number: AE-6410-04A example for new part number: 22-27-2041, 4 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex KK-254 vertical")
(property "Sheetfile" "Fan hub v0.1.kicad_sch")
(property "Sheetname" "")
(path "/100f18fa-a03d-4653-9e89-dbdd242d3565")
(attr through_hole)
(fp_text reference "Fan2" (at 3.81 -4.12 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 70c1ca81-5031-45f2-9d38-3eeee3ab5c00)
)
(fp_text value "Conn_01x04_Male" (at 3.81 4.08 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5cc9e58c-b3a6-4197-be31-7d419aab07a1)
)
(fp_text user "${REFERENCE}" (at 3.81 -2.22 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6e0df89e-88be-4e85-865f-3c3bde6f6bd3)
)
(fp_line (start 0 2.99) (end 0 1.99) (layer "F.SilkS") (width 0.12) (tstamp 02f2a0bd-d9c3-4dfa-9836-5128707fcb6c))
(fp_line (start 4.28 -2.43) (end 5.88 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 048775ef-475f-49ae-b3e4-75945b53ccec))
(fp_line (start 0.25 2.99) (end 0.25 1.99) (layer "F.SilkS") (width 0.12) (tstamp 09a75733-c3be-402d-8c7b-916c7e8b003a))
(fp_line (start 0 1.99) (end 0.25 1.46) (layer "F.SilkS") (width 0.12) (tstamp 11811a12-02c8-4541-bd23-1c2a72caca58))
(fp_line (start 6.82 -2.43) (end 8.42 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 1a811180-a38d-4be3-a40c-e86cf323949b))
(fp_line (start 7.37 2.99) (end 7.37 1.99) (layer "F.SilkS") (width 0.12) (tstamp 20039274-3e32-4f28-bdae-d86fed2cef36))
(fp_line (start 9 2.99) (end 9 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 2c7a8ba2-2f00-4d15-9066-c5b7531fdc7f))
(fp_line (start 0 1.99) (end 7.62 1.99) (layer "F.SilkS") (width 0.12) (tstamp 3c6c4e80-abfe-4228-a227-01f977c76b10))
(fp_line (start 7.37 1.46) (end 7.62 1.99) (layer "F.SilkS") (width 0.12) (tstamp 5479f3dc-5105-49c6-bc13-f8af849e4077))
(fp_line (start 4.28 -3.03) (end 4.28 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 57e0090e-e46e-4da9-97f9-a6124e5e39ab))
(fp_line (start -1.67 -2) (end -1.67 2) (layer "F.SilkS") (width 0.12) (tstamp 6afcd86b-083e-454d-b6d7-bf16da95ba85))
(fp_line (start 1.74 -3.03) (end 1.74 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 6d3be8c9-852b-44b9-9ef7-d13455fa515e))
(fp_line (start 3.34 -2.43) (end 3.34 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 77e6495a-9ced-4ce7-8e45-11e8569139b6))
(fp_line (start -0.8 -3.03) (end -0.8 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 7988b49a-a997-4a98-8f89-471f0d90ff0e))
(fp_line (start 7.62 1.99) (end 7.62 2.99) (layer "F.SilkS") (width 0.12) (tstamp 89c0f67e-dec7-4171-a5cf-020860e3c228))
(fp_line (start 8.42 -2.43) (end 8.42 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 989a8c84-4196-4f0d-8495-fe1dba4d16b8))
(fp_line (start 5.88 -2.43) (end 5.88 -3.03) (layer "F.SilkS") (width 0.12) (tstamp aa3d089c-3715-4bcb-9d37-2ad7424d969b))
(fp_line (start 6.82 -3.03) (end 6.82 -2.43) (layer "F.SilkS") (width 0.12) (tstamp b381af40-df43-40f9-86c5-9ddff7e7e81e))
(fp_line (start 0.8 -2.43) (end 0.8 -3.03) (layer "F.SilkS") (width 0.12) (tstamp b3bc666d-b160-461f-9f0a-15c012e66458))
(fp_line (start -0.8 -2.43) (end 0.8 -2.43) (layer "F.SilkS") (width 0.12) (tstamp cbf797cf-31d2-4e39-98b0-a1171417f586))
(fp_line (start 9 -3.03) (end -1.38 -3.03) (layer "F.SilkS") (width 0.12) (tstamp cf2c1769-4701-4f5c-806a-09a74457e09d))
(fp_line (start 1.74 -2.43) (end 3.34 -2.43) (layer "F.SilkS") (width 0.12) (tstamp df95f97c-01ac-45d8-b421-9e599a809621))
(fp_line (start 0.25 1.46) (end 7.37 1.46) (layer "F.SilkS") (width 0.12) (tstamp e071e015-51df-4479-a42e-6066f9c64a66))
(fp_line (start -1.38 2.99) (end 9 2.99) (layer "F.SilkS") (width 0.12) (tstamp e108538c-ab83-4f13-b5c1-c1d492dba92c))
(fp_line (start -1.38 -3.03) (end -1.38 2.99) (layer "F.SilkS") (width 0.12) (tstamp efc82917-aa48-49f0-b8a6-85b7768d9915))
(fp_line (start -1.77 -3.42) (end -1.77 3.38) (layer "F.CrtYd") (width 0.05) (tstamp 09409310-fbde-410a-9dfc-1b6038f556fa))
(fp_line (start 9.39 3.38) (end 9.39 -3.42) (layer "F.CrtYd") (width 0.05) (tstamp 2be21f22-b2e1-41b2-ba28-7f04226ecfa4))
(fp_line (start -1.77 3.38) (end 9.39 3.38) (layer "F.CrtYd") (width 0.05) (tstamp 6ed51f6b-f82c-436c-8a09-a0c768e310e3))
(fp_line (start 9.39 -3.42) (end -1.77 -3.42) (layer "F.CrtYd") (width 0.05) (tstamp d90ec165-e86a-4bb7-8a36-1ecc17847f34))
(fp_line (start -0.562893 0) (end -1.27 0.5) (layer "F.Fab") (width 0.1) (tstamp 07881cba-1a47-4cf9-867a-65686b37a509))
(fp_line (start 8.89 2.88) (end 8.89 -2.92) (layer "F.Fab") (width 0.1) (tstamp 6ad89048-3c16-4558-b187-32c96ac6e784))
(fp_line (start -1.27 -2.92) (end -1.27 2.88) (layer "F.Fab") (width 0.1) (tstamp 6b1dbf4e-2b12-4d63-9fde-a557d2491061))
(fp_line (start -1.27 2.88) (end 8.89 2.88) (layer "F.Fab") (width 0.1) (tstamp 7998895a-290a-400e-a9d0-f41a8220bdf4))
(fp_line (start 8.89 -2.92) (end -1.27 -2.92) (layer "F.Fab") (width 0.1) (tstamp 95a81c8e-024e-4e8b-a199-529b4b50df9e))
(fp_line (start -1.27 -0.5) (end -0.562893 0) (layer "F.Fab") (width 0.1) (tstamp c30525ba-105e-4df0-8f73-4df8852510a9))
(pad "1" thru_hole roundrect (at 0 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask) (roundrect_rratio 0.1436781609)
(net 1 "/FAN_GND") (pinfunction "Pin_1") (pintype "passive") (tstamp d894f936-a037-4564-a555-06cd7947772e))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 2 "/+12V") (pinfunction "Pin_2") (pintype "passive") (tstamp 9c0e9325-c15b-4961-a9bd-86a81e339891))
(pad "3" thru_hole oval (at 5.08 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 5 "unconnected-(Fan2-Pad3)") (pinfunction "Pin_3") (pintype "passive+no_connect") (tstamp 42c4ad1b-2e92-4775-9423-e82e7a349722))
(pad "4" thru_hole oval (at 7.62 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 4 "/Fan_PWM") (pinfunction "Pin_4") (pintype "passive") (tstamp d54e74f4-518b-4086-883a-f9e63f22a140))
(model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Molex:Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5EA53D3B) (tstamp 1eb4749d-ede4-43be-8cd9-334fad67eeef)
(at 54.445 92.38 90)
(descr "Molex KK-254 Interconnect System, old/engineering part number: AE-6410-04A example for new part number: 22-27-2041, 4 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex KK-254 vertical")
(property "Sheetfile" "Fan hub v0.1.kicad_sch")
(property "Sheetname" "")
(path "/cb718774-5d71-44e0-afcd-a64f49a44006")
(attr through_hole)
(fp_text reference "Uplink1" (at 3.81 -4.12 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 92672a6c-1ad3-49c1-9c1d-2d0be72ad9f5)
)
(fp_text value "Conn_01x04_Male" (at 3.81 4.08 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 79d08525-927d-4f05-8ae9-e64875c7d359)
)
(fp_text user "${REFERENCE}" (at 3.81 -2.22 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a5e9b83e-f964-4fe0-aa99-f3313d434d1a)
)
(fp_line (start 9 -3.03) (end -1.38 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 018bf5ac-8cee-4e02-8751-4ff39d96ddc5))
(fp_line (start -1.67 -2) (end -1.67 2) (layer "F.SilkS") (width 0.12) (tstamp 01928570-1796-42de-93af-fcd27579aff7))
(fp_line (start 0.8 -2.43) (end 0.8 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 10f3ba7c-21ff-4ac9-a1fd-f4708bb665e4))
(fp_line (start -0.8 -3.03) (end -0.8 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 11108218-c586-4965-b978-56861e3db155))
(fp_line (start -1.38 2.99) (end 9 2.99) (layer "F.SilkS") (width 0.12) (tstamp 230e3670-16fa-4c7e-a3d5-b0806ad14fc5))
(fp_line (start 1.74 -3.03) (end 1.74 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 2544fc12-55c4-4e83-9180-0a0e41bf5e92))
(fp_line (start 6.82 -2.43) (end 8.42 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 28fbe4c1-0565-4447-bb14-d34b64fc0cc1))
(fp_line (start 8.42 -2.43) (end 8.42 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 2fd4eb0b-02c1-4a0d-be22-342ab7ade280))
(fp_line (start 3.34 -2.43) (end 3.34 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 3b0c8556-1b73-4122-bbaa-e1558f66e8f7))
(fp_line (start 4.28 -3.03) (end 4.28 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 3df7ebcb-2d38-41be-91eb-3cec6390e4ad))
(fp_line (start 0 1.99) (end 7.62 1.99) (layer "F.SilkS") (width 0.12) (tstamp 4a666771-1a36-47f0-b116-d76ae2fb6fef))
(fp_line (start 7.62 1.99) (end 7.62 2.99) (layer "F.SilkS") (width 0.12) (tstamp 4ac72bcf-c863-470b-81ba-d7b63c4bce84))
(fp_line (start 7.37 2.99) (end 7.37 1.99) (layer "F.SilkS") (width 0.12) (tstamp 7705e22f-2a18-4553-ab7b-821a20aebb7a))
(fp_line (start -0.8 -2.43) (end 0.8 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 7923e70d-02e7-437a-accd-93cfa387f33e))
(fp_line (start 0.25 1.46) (end 7.37 1.46) (layer "F.SilkS") (width 0.12) (tstamp 8590c2a2-f703-4688-a032-4b50eacb9890))
(fp_line (start 0 1.99) (end 0.25 1.46) (layer "F.SilkS") (width 0.12) (tstamp 8dc8dc74-0007-489d-8068-fdc18a1ff88d))
(fp_line (start 6.82 -3.03) (end 6.82 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 9cf138ce-c84e-4abf-ac0f-7324e6b19feb))
(fp_line (start 0.25 2.99) (end 0.25 1.99) (layer "F.SilkS") (width 0.12) (tstamp ab50c4a1-fcbb-49e5-8091-cadd4095f02a))
(fp_line (start 7.37 1.46) (end 7.62 1.99) (layer "F.SilkS") (width 0.12) (tstamp ad613da4-f32b-4c65-940d-84814f7f0bce))
(fp_line (start 1.74 -2.43) (end 3.34 -2.43) (layer "F.SilkS") (width 0.12) (tstamp c33da03d-ee95-4971-9d13-7101d58dd1a8))
(fp_line (start 9 2.99) (end 9 -3.03) (layer "F.SilkS") (width 0.12) (tstamp cdd640bc-e0cc-4292-9ed3-0c1eb174262a))
(fp_line (start 4.28 -2.43) (end 5.88 -2.43) (layer "F.SilkS") (width 0.12) (tstamp dd588b59-e6e4-4a68-9597-048d67e278d2))
(fp_line (start 0 2.99) (end 0 1.99) (layer "F.SilkS") (width 0.12) (tstamp e5292c34-5cac-4adf-b8a9-99c77002f92a))
(fp_line (start -1.38 -3.03) (end -1.38 2.99) (layer "F.SilkS") (width 0.12) (tstamp e7275e1f-b3c5-404a-80db-9be6a9893350))
(fp_line (start 5.88 -2.43) (end 5.88 -3.03) (layer "F.SilkS") (width 0.12) (tstamp f8e4b283-5e35-4381-8295-23901445a2f0))
(fp_line (start 9.39 3.38) (end 9.39 -3.42) (layer "F.CrtYd") (width 0.05) (tstamp 3e3ab36a-6aad-49cd-9b57-c093e3ed22dc))
(fp_line (start -1.77 -3.42) (end -1.77 3.38) (layer "F.CrtYd") (width 0.05) (tstamp d7d19bb6-0b36-4f41-a824-4c6d9cd95f76))
(fp_line (start -1.77 3.38) (end 9.39 3.38) (layer "F.CrtYd") (width 0.05) (tstamp e46681ae-aa35-4422-acb5-276b9a3cc8c8))
(fp_line (start 9.39 -3.42) (end -1.77 -3.42) (layer "F.CrtYd") (width 0.05) (tstamp e809c46b-d864-4578-829d-044b0fcd794f))
(fp_line (start -1.27 -2.92) (end -1.27 2.88) (layer "F.Fab") (width 0.1) (tstamp 2bab88f7-afda-48e5-aa35-7a993ef5fdfa))
(fp_line (start 8.89 2.88) (end 8.89 -2.92) (layer "F.Fab") (width 0.1) (tstamp 3634c90c-71dc-417a-9788-caf1a27efdbf))
(fp_line (start -1.27 2.88) (end 8.89 2.88) (layer "F.Fab") (width 0.1) (tstamp 7dbb4e8a-3a64-4cff-b230-4a2c453ec06d))
(fp_line (start 8.89 -2.92) (end -1.27 -2.92) (layer "F.Fab") (width 0.1) (tstamp 97b13837-3347-4b9c-945e-89b78c06b5b7))
(fp_line (start -1.27 -0.5) (end -0.562893 0) (layer "F.Fab") (width 0.1) (tstamp 9c1d2c94-b791-4e09-a76e-a2cbafe96d88))
(fp_line (start -0.562893 0) (end -1.27 0.5) (layer "F.Fab") (width 0.1) (tstamp b2f089c2-1d84-4ef1-8757-d1881da7c433))
(pad "1" thru_hole roundrect (at 0 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask) (roundrect_rratio 0.1436781609)
(net 1 "/FAN_GND") (pinfunction "Pin_1") (pintype "passive") (tstamp c78cd3d8-d4b3-4193-80dc-8c441aee1b61))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 2 "/+12V") (pinfunction "Pin_2") (pintype "passive") (tstamp a770f0cc-a8c5-4ef0-9f9f-a0b5ac0ec2eb))
(pad "3" thru_hole oval (at 5.08 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 3 "/Fan_s") (pinfunction "Pin_3") (pintype "passive") (tstamp 64b7a4e0-68c0-44cc-9a17-015b42a3ba39))
(pad "4" thru_hole oval (at 7.62 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 4 "/Fan_PWM") (pinfunction "Pin_4") (pintype "passive") (tstamp 9867071a-0dcd-4381-9db0-30a2d373e0ff))
(model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.5mm" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 32ca795e-b3f8-44f2-91fd-9f7d82b95269)
(at 53 97)
(descr "Mounting Hole 3.5mm, no annular")
(tags "mounting hole 3.5mm no annular")
(property "Sheetfile" "Fan hub v0.1.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/78041512-578c-4323-b03b-452b958f8045")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H1" (at 0 -4.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b258765a-6c3d-4e64-8df3-c067cef7fea6)
)
(fp_text value "MountingHole" (at 0 4.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8834239b-f0dc-4378-ac79-b755b8a73457)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c59e215c-e611-42f1-8169-205514cdabe6)
)
(fp_circle (center 0 0) (end 3.5 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 45f82ea9-852e-4ac7-9fe6-8668735fde6e))
(fp_circle (center 0 0) (end 3.75 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 127e59f0-4682-4776-b1cf-b7c470db88c2))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.5 3.5) (drill 3.5) (layers *.Cu *.Mask) (tstamp c0f98384-85e8-4269-8027-e08d0f1701f8))
)
(footprint "MountingHole:MountingHole_3.5mm" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 3e26b494-e974-4029-bad8-cbeffbfc01de)
(at 53 80)
(descr "Mounting Hole 3.5mm, no annular")
(tags "mounting hole 3.5mm no annular")
(property "Sheetfile" "Fan hub v0.1.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/f91d3077-025f-4c29-92d3-941c173238ac")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H3" (at 0 -4.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8090140b-39f7-4b45-b9ec-92c2fb636d16)
)
(fp_text value "MountingHole" (at 0 4.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd913252-889a-4c49-92ea-8dc5bc6a9f2f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ace9d31a-1b87-4354-a75c-304d069777bb)
)
(fp_circle (center 0 0) (end 3.5 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 4ca80893-6d13-444b-81a8-9dc3620c6f7b))
(fp_circle (center 0 0) (end 3.75 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 849720b1-04f5-46e7-924d-f700fbb18864))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.5 3.5) (drill 3.5) (layers *.Cu *.Mask) (tstamp 03339f37-6f12-4c43-a2ea-e42a874d11b2))
)
(footprint "Connector_Molex:Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5EA53D3B) (tstamp 3ef3a6f8-1bd5-40a2-a906-c88316019be9)
(at 82.385 98.095 90)
(descr "Molex KK-254 Interconnect System, old/engineering part number: AE-6410-04A example for new part number: 22-27-2041, 4 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex KK-254 vertical")
(property "Sheetfile" "Fan hub v0.1.kicad_sch")
(property "Sheetname" "")
(path "/b153e83f-9f6b-4452-9dfd-abc5f85627e9")
(attr through_hole)
(fp_text reference "Fan7" (at 3.81 -4.12 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e5f42c4e-9687-4f37-93af-00aaac98db79)
)
(fp_text value "Conn_01x04_Male" (at 3.81 4.08 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 74f186e0-8ee6-4352-a209-5b2d113d82f4)
)
(fp_text user "${REFERENCE}" (at 3.81 -2.22 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 390cf686-52c7-49bc-aaf8-46585728da91)
)
(fp_line (start -0.8 -3.03) (end -0.8 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 088e14f9-6c8e-484e-90e4-fe633a0994dd))
(fp_line (start -1.38 2.99) (end 9 2.99) (layer "F.SilkS") (width 0.12) (tstamp 10854d1e-7a0a-47bd-a5c4-8b37382d4886))
(fp_line (start 4.28 -3.03) (end 4.28 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 1d2930bb-43bf-4e7d-bbbd-a31999233121))
(fp_line (start 4.28 -2.43) (end 5.88 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 2a9ff3d1-6b55-4c83-8aed-bcd09dade02d))
(fp_line (start -1.67 -2) (end -1.67 2) (layer "F.SilkS") (width 0.12) (tstamp 30f9b8b3-eda5-4554-88dd-a2cda654e2ab))
(fp_line (start 7.37 1.46) (end 7.62 1.99) (layer "F.SilkS") (width 0.12) (tstamp 5092c5a8-9cbd-41be-87aa-19613457f6d3))
(fp_line (start 1.74 -3.03) (end 1.74 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 54bdb2e4-1d5b-457c-870f-71391e4992a7))
(fp_line (start 6.82 -3.03) (end 6.82 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 58b20b77-3f95-415f-8820-1f102984418a))
(fp_line (start 0.25 2.99) (end 0.25 1.99) (layer "F.SilkS") (width 0.12) (tstamp 68808f2d-6a3d-4de3-94bb-14b668d43c65))
(fp_line (start 1.74 -2.43) (end 3.34 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 6aacc792-8c5a-42aa-b58f-48f3bc1faa79))
(fp_line (start 0 1.99) (end 7.62 1.99) (layer "F.SilkS") (width 0.12) (tstamp 6b567603-32de-4ba3-a263-aa7813f2c8ab))
(fp_line (start 0 1.99) (end 0.25 1.46) (layer "F.SilkS") (width 0.12) (tstamp 6e9120b6-49b8-450c-98af-017482e4e7b5))
(fp_line (start 9 2.99) (end 9 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 7665f003-f0d2-472a-90e1-6576cd060fb7))
(fp_line (start 7.37 2.99) (end 7.37 1.99) (layer "F.SilkS") (width 0.12) (tstamp 7af21d65-c331-41b4-adaf-1e6292482a34))
(fp_line (start 7.62 1.99) (end 7.62 2.99) (layer "F.SilkS") (width 0.12) (tstamp 84580b49-c4eb-4dca-8a23-b2d9acebfe18))
(fp_line (start 6.82 -2.43) (end 8.42 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 89429263-eb2b-4f37-8fcc-125756418b78))
(fp_line (start 3.34 -2.43) (end 3.34 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 8a9bbb4c-2b79-49e0-a9a3-8aada568c948))
(fp_line (start 5.88 -2.43) (end 5.88 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 9cc6aeea-f0a0-42c1-82db-9b22f559e48e))
(fp_line (start 9 -3.03) (end -1.38 -3.03) (layer "F.SilkS") (width 0.12) (tstamp a574885a-deb5-4bfe-9842-03f49550d2be))
(fp_line (start -1.38 -3.03) (end -1.38 2.99) (layer "F.SilkS") (width 0.12) (tstamp bae9d4ba-1ba8-4c6e-b254-2faf85f5e761))
(fp_line (start 8.42 -2.43) (end 8.42 -3.03) (layer "F.SilkS") (width 0.12) (tstamp c5380362-3435-4380-a69c-d2782f347974))
(fp_line (start -0.8 -2.43) (end 0.8 -2.43) (layer "F.SilkS") (width 0.12) (tstamp d15acd3a-7b49-4d06-8f2b-9ba773df18a9))
(fp_line (start 0.25 1.46) (end 7.37 1.46) (layer "F.SilkS") (width 0.12) (tstamp efff6915-ec63-4c8a-845f-91805243fb2f))
(fp_line (start 0 2.99) (end 0 1.99) (layer "F.SilkS") (width 0.12) (tstamp f14de382-f5f9-4465-ba04-595b4d67dc71))
(fp_line (start 0.8 -2.43) (end 0.8 -3.03) (layer "F.SilkS") (width 0.12) (tstamp f2e49d33-91a4-4c16-9c8d-7e83c4084073))
(fp_line (start 9.39 3.38) (end 9.39 -3.42) (layer "F.CrtYd") (width 0.05) (tstamp 209fdf67-6a69-4793-8b9f-92ab49203424))
(fp_line (start 9.39 -3.42) (end -1.77 -3.42) (layer "F.CrtYd") (width 0.05) (tstamp 59d76d97-a3bb-42bc-8e03-42f03ad95f33))
(fp_line (start -1.77 -3.42) (end -1.77 3.38) (layer "F.CrtYd") (width 0.05) (tstamp d160cfec-27fc-4142-bc55-074028d8fb28))
(fp_line (start -1.77 3.38) (end 9.39 3.38) (layer "F.CrtYd") (width 0.05) (tstamp ed82b578-6739-41be-9f58-efdf72dcde25))
(fp_line (start -1.27 -2.92) (end -1.27 2.88) (layer "F.Fab") (width 0.1) (tstamp 08ee7c01-97d1-4c5c-8cfd-69e25d725a0f))
(fp_line (start -1.27 -0.5) (end -0.562893 0) (layer "F.Fab") (width 0.1) (tstamp 174f3556-dbd7-47bb-aac4-7eae93f99d40))
(fp_line (start 8.89 2.88) (end 8.89 -2.92) (layer "F.Fab") (width 0.1) (tstamp 5d5098ec-0234-4605-97bc-566976fdd5c7))
(fp_line (start 8.89 -2.92) (end -1.27 -2.92) (layer "F.Fab") (width 0.1) (tstamp 62c0f49f-9f21-45dc-b23f-e9a21ab95887))
(fp_line (start -0.562893 0) (end -1.27 0.5) (layer "F.Fab") (width 0.1) (tstamp aabce7c7-d0bb-40ef-877e-e498bb6ecc15))
(fp_line (start -1.27 2.88) (end 8.89 2.88) (layer "F.Fab") (width 0.1) (tstamp cef40403-2787-44d1-aa4f-c3977a381afa))
(pad "1" thru_hole roundrect (at 0 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask) (roundrect_rratio 0.1436781609)
(net 1 "/FAN_GND") (pinfunction "Pin_1") (pintype "passive") (tstamp b7be5699-a30d-4225-8951-633b28ddf104))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 2 "/+12V") (pinfunction "Pin_2") (pintype "passive") (tstamp 35553ec3-d467-4e7a-91df-0d359ac1e7d8))
(pad "3" thru_hole oval (at 5.08 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 10 "unconnected-(Fan7-Pad3)") (pinfunction "Pin_3") (pintype "passive+no_connect") (tstamp f7a7d66a-3ffc-4230-9bfc-ece524b20f3c))
(pad "4" thru_hole oval (at 7.62 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 4 "/Fan_PWM") (pinfunction "Pin_4") (pintype "passive") (tstamp 2da55a6c-d822-482d-8c23-94a9e6fab30e))
(model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Molex:Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5EA53D3B) (tstamp 4140e6ad-70f9-43dc-998d-7a9f437b9f2e)
(at 68.415 86.665 90)
(descr "Molex KK-254 Interconnect System, old/engineering part number: AE-6410-04A example for new part number: 22-27-2041, 4 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex KK-254 vertical")
(property "Sheetfile" "Fan hub v0.1.kicad_sch")
(property "Sheetname" "")
(path "/229a594b-a233-429e-9b17-dc9bbaea24c8")
(attr through_hole)
(fp_text reference "Fan4" (at 3.81 -4.12 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5b7895ad-b008-4108-80cf-83025820574e)
)
(fp_text value "Conn_01x04_Male" (at 3.81 4.08 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 866e1951-5570-40eb-b61c-30cff65f58f7)
)
(fp_text user "${REFERENCE}" (at 3.81 -2.22 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 20099436-7126-4210-b09d-bfcd3b6e02cc)
)
(fp_line (start 7.62 1.99) (end 7.62 2.99) (layer "F.SilkS") (width 0.12) (tstamp 0139752f-3d89-45f7-a88b-3016e4ced72a))
(fp_line (start -0.8 -2.43) (end 0.8 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 1796bc20-1d94-4b67-8e99-3e132d46b6d1))
(fp_line (start -0.8 -3.03) (end -0.8 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 1a012ca0-9a48-4b2b-8253-79b7c80e23b7))
(fp_line (start 8.42 -2.43) (end 8.42 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 1df29e5a-7e1e-4318-999f-d36bc17b5e90))
(fp_line (start 9 2.99) (end 9 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 2e3801ef-abef-4fd1-80cd-38b81c437fc4))
(fp_line (start 1.74 -3.03) (end 1.74 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 36ec132a-2a28-4325-9e74-19f0cfb9b36d))
(fp_line (start 0.25 2.99) (end 0.25 1.99) (layer "F.SilkS") (width 0.12) (tstamp 38800419-3f9e-4a0b-a4dc-d2b35e970448))
(fp_line (start 3.34 -2.43) (end 3.34 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 3e750abd-3592-453c-ba23-d3f2e1d40b54))
(fp_line (start 0.8 -2.43) (end 0.8 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 473f80a1-e85c-4df1-a83f-a36c3a1f4af7))
(fp_line (start 4.28 -3.03) (end 4.28 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 4a22764f-88ce-4d1f-85d9-da34bc2bdca4))
(fp_line (start 1.74 -2.43) (end 3.34 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 4cecd079-c813-4eba-a579-2ea9f35cb571))
(fp_line (start -1.38 2.99) (end 9 2.99) (layer "F.SilkS") (width 0.12) (tstamp 4e6c450f-335a-4499-9bae-536e96d67b23))
(fp_line (start 0.25 1.46) (end 7.37 1.46) (layer "F.SilkS") (width 0.12) (tstamp 5eaa49cd-8066-4d97-b275-4d9a177dd391))
(fp_line (start 6.82 -3.03) (end 6.82 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 6702a22a-21eb-46eb-b8c4-83302b0f9efe))
(fp_line (start -1.67 -2) (end -1.67 2) (layer "F.SilkS") (width 0.12) (tstamp 68d943b5-6350-44b0-8faa-e5f453047769))
(fp_line (start 4.28 -2.43) (end 5.88 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 744c5e25-c541-4884-8564-36857e206a9c))
(fp_line (start 6.82 -2.43) (end 8.42 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 7de923fe-a7bd-4ce3-904d-1583bba7e4e7))
(fp_line (start 9 -3.03) (end -1.38 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 8008e24f-5da9-4c16-8cfe-75b57c472ed9))
(fp_line (start 0 1.99) (end 0.25 1.46) (layer "F.SilkS") (width 0.12) (tstamp 8b9ee99d-1343-47a2-978a-76a2c4ca49d3))
(fp_line (start 0 1.99) (end 7.62 1.99) (layer "F.SilkS") (width 0.12) (tstamp 8f05dc3a-72a6-4e19-a924-1776113049e6))
(fp_line (start 7.37 2.99) (end 7.37 1.99) (layer "F.SilkS") (width 0.12) (tstamp 906e0c49-5831-4ab4-9f66-ffafd8b79e06))
(fp_line (start 7.37 1.46) (end 7.62 1.99) (layer "F.SilkS") (width 0.12) (tstamp 9a97c47a-4bfa-4f96-889a-b2d1047f6d6d))
(fp_line (start -1.38 -3.03) (end -1.38 2.99) (layer "F.SilkS") (width 0.12) (tstamp c696f939-36b9-418f-8db7-63db314c242e))
(fp_line (start 0 2.99) (end 0 1.99) (layer "F.SilkS") (width 0.12) (tstamp f0d53d46-15e1-462c-a1d4-da54abe8dec9))
(fp_line (start 5.88 -2.43) (end 5.88 -3.03) (layer "F.SilkS") (width 0.12) (tstamp fc9cf2bd-920d-4914-8945-e0e0a4c7a00d))
(fp_line (start -1.77 3.38) (end 9.39 3.38) (layer "F.CrtYd") (width 0.05) (tstamp 1fa321a6-bf72-441f-acc4-175ee24484e8))
(fp_line (start 9.39 3.38) (end 9.39 -3.42) (layer "F.CrtYd") (width 0.05) (tstamp 224544d4-21da-4f12-a166-e683ff4cf7ff))
(fp_line (start 9.39 -3.42) (end -1.77 -3.42) (layer "F.CrtYd") (width 0.05) (tstamp acaee728-2f00-4cdd-a65a-a71c03375dc8))
(fp_line (start -1.77 -3.42) (end -1.77 3.38) (layer "F.CrtYd") (width 0.05) (tstamp e6bf8a06-d225-484a-9a83-85ee0362cdd1))
(fp_line (start -1.27 -2.92) (end -1.27 2.88) (layer "F.Fab") (width 0.1) (tstamp 2cde5724-4632-4eac-8089-85e098f09e39))
(fp_line (start -1.27 -0.5) (end -0.562893 0) (layer "F.Fab") (width 0.1) (tstamp 347bd113-e460-4995-a213-b3dae5804395))
(fp_line (start 8.89 -2.92) (end -1.27 -2.92) (layer "F.Fab") (width 0.1) (tstamp 565206ac-60de-47b2-863f-79c747b76d30))
(fp_line (start -0.562893 0) (end -1.27 0.5) (layer "F.Fab") (width 0.1) (tstamp b756e721-71ac-4078-ba25-a80102b342e9))
(fp_line (start 8.89 2.88) (end 8.89 -2.92) (layer "F.Fab") (width 0.1) (tstamp cbe29ee5-0550-4e29-8e6a-ccd34c4df045))
(fp_line (start -1.27 2.88) (end 8.89 2.88) (layer "F.Fab") (width 0.1) (tstamp da5cf558-c063-4910-8b7a-acc47e2a757d))
(pad "1" thru_hole roundrect (at 0 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask) (roundrect_rratio 0.1436781609)
(net 1 "/FAN_GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 9677002f-db61-42ca-a147-b148a78526db))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 2 "/+12V") (pinfunction "Pin_2") (pintype "passive") (tstamp 5dc5f108-a5b9-4da1-a894-f036f9f9f4e9))
(pad "3" thru_hole oval (at 5.08 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 7 "unconnected-(Fan4-Pad3)") (pinfunction "Pin_3") (pintype "passive+no_connect") (tstamp c4ee7dc6-4760-48ea-8f70-3ffd504dd7db))
(pad "4" thru_hole oval (at 7.62 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 4 "/Fan_PWM") (pinfunction "Pin_4") (pintype "passive") (tstamp e5cbd768-9f83-442f-af95-3dcf6cdfc1aa))
(model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.5mm" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 50b00a8f-e490-4901-a7b1-9f436c06db2f)
(at 92 80)
(descr "Mounting Hole 3.5mm, no annular")
(tags "mounting hole 3.5mm no annular")
(property "Sheetfile" "Fan hub v0.1.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/ebe1c6be-59ff-42d9-bd29-40ff3db06702")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H4" (at 0 -4.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a59e87fe-0b97-48a4-81ed-a9f555acb954)
)
(fp_text value "MountingHole" (at 0 4.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6fa83788-225f-4eb5-b51a-d998b25c2e41)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d0ef5495-bf59-4b3c-82eb-0e6e0312d165)
)
(fp_circle (center 0 0) (end 3.5 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 4693c75b-8940-4543-aa70-94a270760ba3))
(fp_circle (center 0 0) (end 3.75 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 08b37862-62d0-4651-889c-f4abb1326a36))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.5 3.5) (drill 3.5) (layers *.Cu *.Mask) (tstamp 45dc518d-1e25-466b-b29b-c963725c9c7e))
)
(footprint "MountingHole:MountingHole_3.5mm" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 8b9e655c-ee86-42cc-9ae3-95c24cbd024d)
(at 92 97)
(descr "Mounting Hole 3.5mm, no annular")
(tags "mounting hole 3.5mm no annular")
(property "Sheetfile" "Fan hub v0.1.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/314e79ac-fd6e-48d3-a58c-08a12555b2fd")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H2" (at 0 -4.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 65efbb27-7d65-43fa-b162-efeacf847054)
)
(fp_text value "MountingHole" (at 0 4.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 49ace857-0c60-4144-a889-d50e58f3f465)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 91cab2bb-a858-4f2a-a816-147b7f8af355)
)
(fp_circle (center 0 0) (end 3.5 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp b12c00d8-68f1-4b41-9e14-6f680fdabca8))
(fp_circle (center 0 0) (end 3.75 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp f1fb3223-da23-4ca0-9f0f-ff3025aa22e9))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.5 3.5) (drill 3.5) (layers *.Cu *.Mask) (tstamp 133c7081-dfb5-4991-9a96-3ee026ba43cf))
)
(footprint "Connector_Molex:Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5EA53D3B) (tstamp 8c7c7c5c-446b-4e83-8e97-37bc01732371)
(at 61.43 98.095 90)
(descr "Molex KK-254 Interconnect System, old/engineering part number: AE-6410-04A example for new part number: 22-27-2041, 4 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex KK-254 vertical")
(property "Sheetfile" "Fan hub v0.1.kicad_sch")
(property "Sheetname" "")
(path "/1f1c381a-5058-4fc2-9791-4ebdae259db9")
(attr through_hole)
(fp_text reference "Fan1" (at 3.81 -4.12 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 45a45150-b478-42e7-9556-4a4e649437df)
)
(fp_text value "Conn_01x04_Male" (at 3.81 4.08 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ccd187b7-de73-43d4-9d19-febd4e8d9e0f)
)
(fp_text user "${REFERENCE}" (at 3.81 -2.22 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e83986e3-90cc-4541-a3e8-7bed296ef053)
)
(fp_line (start -0.8 -3.03) (end -0.8 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 02b81250-8c16-484b-aecf-e50be575dc1a))
(fp_line (start -0.8 -2.43) (end 0.8 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 3bbe8e82-4814-4cb9-9e6c-2caf3583d9f2))
(fp_line (start 6.82 -3.03) (end 6.82 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 4188c265-189f-4253-8908-3d9ac3d63531))
(fp_line (start 9 2.99) (end 9 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 445b1f42-ddd5-42bc-b215-2b6738aaa3b7))
(fp_line (start 5.88 -2.43) (end 5.88 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 4c4c35cd-40dd-4b55-b88f-4ae0c5741442))
(fp_line (start 7.37 2.99) (end 7.37 1.99) (layer "F.SilkS") (width 0.12) (tstamp 4e22d5b8-9e99-4db7-8937-ab988445b26a))
(fp_line (start 0 2.99) (end 0 1.99) (layer "F.SilkS") (width 0.12) (tstamp 529f2c81-a785-4863-a2e4-5fd911d330ea))
(fp_line (start -1.38 2.99) (end 9 2.99) (layer "F.SilkS") (width 0.12) (tstamp 56bf5524-114a-4749-afc5-f4cb2fdeebc9))
(fp_line (start 3.34 -2.43) (end 3.34 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 63bdd500-cb24-451a-90da-cae45f60c32f))
(fp_line (start 0 1.99) (end 7.62 1.99) (layer "F.SilkS") (width 0.12) (tstamp 6d4ad448-373b-4fb0-ac7a-f203c509613d))
(fp_line (start 0.25 2.99) (end 0.25 1.99) (layer "F.SilkS") (width 0.12) (tstamp 861d354c-6110-40c3-8588-2230b4c64f14))
(fp_line (start -1.67 -2) (end -1.67 2) (layer "F.SilkS") (width 0.12) (tstamp 8dffcf90-ada9-49d1-8ce1-98690b894b24))
(fp_line (start 0.8 -2.43) (end 0.8 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 9f314e05-4607-423a-8eec-fdafe818de0d))
(fp_line (start -1.38 -3.03) (end -1.38 2.99) (layer "F.SilkS") (width 0.12) (tstamp b5659151-90d7-4942-89cb-dc0249e8fc74))
(fp_line (start 0 1.99) (end 0.25 1.46) (layer "F.SilkS") (width 0.12) (tstamp bfbfbdea-0fdd-4cc1-9c90-9b95870bf0ee))
(fp_line (start 4.28 -2.43) (end 5.88 -2.43) (layer "F.SilkS") (width 0.12) (tstamp c48d4ff8-9bb0-47f8-91a0-9bc7889ef659))
(fp_line (start 4.28 -3.03) (end 4.28 -2.43) (layer "F.SilkS") (width 0.12) (tstamp ca647719-8995-4aab-a745-d198b998dcc0))
(fp_line (start 9 -3.03) (end -1.38 -3.03) (layer "F.SilkS") (width 0.12) (tstamp cf6ff4ec-c02f-430e-ba81-92b653925fa5))
(fp_line (start 7.62 1.99) (end 7.62 2.99) (layer "F.SilkS") (width 0.12) (tstamp d7786646-6f5b-4384-bd34-b2c1d6774d7d))
(fp_line (start 7.37 1.46) (end 7.62 1.99) (layer "F.SilkS") (width 0.12) (tstamp de9f5326-5fdc-4457-be48-b564c3ee8723))
(fp_line (start 1.74 -3.03) (end 1.74 -2.43) (layer "F.SilkS") (width 0.12) (tstamp e46a2bcc-6439-4cd8-9fd1-bc599fc9f81b))
(fp_line (start 6.82 -2.43) (end 8.42 -2.43) (layer "F.SilkS") (width 0.12) (tstamp f20a8289-0891-4ae0-ad74-28729c27111f))
(fp_line (start 1.74 -2.43) (end 3.34 -2.43) (layer "F.SilkS") (width 0.12) (tstamp f5a2985c-8167-420f-ac5d-4cfb8c60d50e))
(fp_line (start 0.25 1.46) (end 7.37 1.46) (layer "F.SilkS") (width 0.12) (tstamp f8f69589-289c-4f09-b780-5703498f90b9))
(fp_line (start 8.42 -2.43) (end 8.42 -3.03) (layer "F.SilkS") (width 0.12) (tstamp f9957b4c-59b7-4652-8aa2-cf6a0ebdac4c))
(fp_line (start 9.39 3.38) (end 9.39 -3.42) (layer "F.CrtYd") (width 0.05) (tstamp 29529130-de58-4836-806b-168c3079f130))
(fp_line (start -1.77 -3.42) (end -1.77 3.38) (layer "F.CrtYd") (width 0.05) (tstamp 39716858-f380-4c5b-9f54-00ae1e50f7ec))
(fp_line (start -1.77 3.38) (end 9.39 3.38) (layer "F.CrtYd") (width 0.05) (tstamp df3904e1-89c3-44e9-9d0b-810c2ff8b1db))
(fp_line (start 9.39 -3.42) (end -1.77 -3.42) (layer "F.CrtYd") (width 0.05) (tstamp f29a58e7-b547-4ca8-b391-a4398d756b6c))
(fp_line (start 8.89 -2.92) (end -1.27 -2.92) (layer "F.Fab") (width 0.1) (tstamp 14f50e36-6dad-4df2-b42f-5f8aa8ad7ffa))
(fp_line (start -1.27 2.88) (end 8.89 2.88) (layer "F.Fab") (width 0.1) (tstamp 8b04fba2-7e9d-41a8-a35d-71e3f8a8abbe))
(fp_line (start -0.562893 0) (end -1.27 0.5) (layer "F.Fab") (width 0.1) (tstamp 9910a0c5-5d20-4926-a3d0-5704ed2a0b57))
(fp_line (start 8.89 2.88) (end 8.89 -2.92) (layer "F.Fab") (width 0.1) (tstamp cb438a6a-a10e-4ad0-ba73-6777ebcba118))
(fp_line (start -1.27 -0.5) (end -0.562893 0) (layer "F.Fab") (width 0.1) (tstamp ceef5ba1-4e18-4b33-95af-7e3928cf4d80))
(fp_line (start -1.27 -2.92) (end -1.27 2.88) (layer "F.Fab") (width 0.1) (tstamp d3f07f06-56f7-4f59-bf7e-53dacc036fa4))
(pad "1" thru_hole roundrect (at 0 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask) (roundrect_rratio 0.1436781609)
(net 1 "/FAN_GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 69cfe392-3f1f-455e-aaa0-e611eb1bf57e))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 2 "/+12V") (pinfunction "Pin_2") (pintype "passive") (tstamp 738442ef-fad6-42b1-bd4f-dbc47082b2db))
(pad "3" thru_hole oval (at 5.08 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 3 "/Fan_s") (pinfunction "Pin_3") (pintype "passive") (tstamp 222520f5-b83d-40ca-a5bf-93d7c0e5802c))
(pad "4" thru_hole oval (at 7.62 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 4 "/Fan_PWM") (pinfunction "Pin_4") (pintype "passive") (tstamp bed16605-325b-4f4e-9a70-1cfb390d549b))
(model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Molex:Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5EA53D3B) (tstamp 9674ee2d-570f-421e-970c-c39d030b8d84)
(at 89.37 92.38 90)
(descr "Molex KK-254 Interconnect System, old/engineering part number: AE-6410-04A example for new part number: 22-27-2041, 4 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex KK-254 vertical")
(property "Sheetfile" "Fan hub v0.1.kicad_sch")
(property "Sheetname" "")
(path "/de8a66bf-9158-453c-b578-1a442895c4b5")
(attr through_hole)
(fp_text reference "Fan9" (at 3.81 -4.12 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb796704-83b9-48ad-a8b9-7e53a152872d)
)
(fp_text value "Conn_01x04_Male" (at 3.81 4.08 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp febdbe01-98dc-4ffe-983d-1b4750bd4095)
)
(fp_text user "${REFERENCE}" (at 3.81 -2.22 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp be112c86-fb60-4809-b5dd-2ab13a8b5cbb)
)
(fp_line (start 9 -3.03) (end -1.38 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 0c228c75-9ec4-4c83-8f55-e1bbc147c99a))
(fp_line (start 6.82 -3.03) (end 6.82 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 178d7e2f-7ff4-41c5-b760-8ca92a896f6e))
(fp_line (start -0.8 -2.43) (end 0.8 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 2840aeef-9993-4258-9fe7-ae72bd7c5399))
(fp_line (start 0.8 -2.43) (end 0.8 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 438faa8e-20de-4aaa-b492-c4ffeeea15da))
(fp_line (start 6.82 -2.43) (end 8.42 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 4c76de3e-3bd3-47a3-a4a3-168663cbad6e))
(fp_line (start 9 2.99) (end 9 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 5036f95e-a7a3-45ec-9812-9de03ccdc69b))
(fp_line (start 4.28 -2.43) (end 5.88 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 5131d055-e34a-4d5c-a363-806c484def23))
(fp_line (start 0 1.99) (end 0.25 1.46) (layer "F.SilkS") (width 0.12) (tstamp 5fc21883-1fdb-417f-a1f3-51bf7ceb63e4))
(fp_line (start 4.28 -3.03) (end 4.28 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 6759649c-51f5-4749-a786-2174c5ca6e30))
(fp_line (start -1.38 2.99) (end 9 2.99) (layer "F.SilkS") (width 0.12) (tstamp 69ae7337-f2cf-4ce2-9e07-2bab2cc6f33b))
(fp_line (start 1.74 -2.43) (end 3.34 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 6e071a55-4183-4ca9-912e-2d5bb37ea462))
(fp_line (start 0 1.99) (end 7.62 1.99) (layer "F.SilkS") (width 0.12) (tstamp 7275ff6f-ec47-465d-9504-54fb9aba5578))
(fp_line (start 5.88 -2.43) (end 5.88 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 7c15c413-c9d2-4252-9116-1dd0dba73a4c))
(fp_line (start 7.37 1.46) (end 7.62 1.99) (layer "F.SilkS") (width 0.12) (tstamp 7f255403-16ab-4eb4-90cd-52248d3c931c))
(fp_line (start -0.8 -3.03) (end -0.8 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 821e0ca2-a9cb-449d-acb0-594d405b7871))
(fp_line (start -1.67 -2) (end -1.67 2) (layer "F.SilkS") (width 0.12) (tstamp 83d538de-f4a3-42ef-9a75-becb5074f009))
(fp_line (start -1.38 -3.03) (end -1.38 2.99) (layer "F.SilkS") (width 0.12) (tstamp 8c16a263-8e40-4b8f-8b8e-12ebe91f84ae))
(fp_line (start 7.37 2.99) (end 7.37 1.99) (layer "F.SilkS") (width 0.12) (tstamp 9838b30b-39ca-43d1-ab72-c27bddd5dc3b))
(fp_line (start 0 2.99) (end 0 1.99) (layer "F.SilkS") (width 0.12) (tstamp a52ede80-024a-4a6c-8df5-8a055bb6b063))
(fp_line (start 8.42 -2.43) (end 8.42 -3.03) (layer "F.SilkS") (width 0.12) (tstamp b4157e04-d28a-444b-9d52-9b56ef623e76))
(fp_line (start 0.25 2.99) (end 0.25 1.99) (layer "F.SilkS") (width 0.12) (tstamp b4774558-f166-47c1-b18f-8bfdc355430a))
(fp_line (start 1.74 -3.03) (end 1.74 -2.43) (layer "F.SilkS") (width 0.12) (tstamp b6601651-add4-4275-974f-e8a7553ac919))
(fp_line (start 3.34 -2.43) (end 3.34 -3.03) (layer "F.SilkS") (width 0.12) (tstamp b7250568-a407-4961-8ba9-662c2d4709e5))
(fp_line (start 0.25 1.46) (end 7.37 1.46) (layer "F.SilkS") (width 0.12) (tstamp b819ec9c-af76-4362-8dd4-a17eb956feb0))
(fp_line (start 7.62 1.99) (end 7.62 2.99) (layer "F.SilkS") (width 0.12) (tstamp e1a82727-6f02-4e01-943d-afb71998e78b))
(fp_line (start 9.39 -3.42) (end -1.77 -3.42) (layer "F.CrtYd") (width 0.05) (tstamp 10a7750b-d6af-4070-ae95-6625130e65a7))
(fp_line (start -1.77 3.38) (end 9.39 3.38) (layer "F.CrtYd") (width 0.05) (tstamp 3a82278f-de3b-4120-96a5-da1a0d7dfe94))
(fp_line (start 9.39 3.38) (end 9.39 -3.42) (layer "F.CrtYd") (width 0.05) (tstamp 51944a6e-053b-425b-b365-ae76fcad43de))
(fp_line (start -1.77 -3.42) (end -1.77 3.38) (layer "F.CrtYd") (width 0.05) (tstamp d559b15a-81fd-4e82-b203-ef3f412db64d))
(fp_line (start 8.89 2.88) (end 8.89 -2.92) (layer "F.Fab") (width 0.1) (tstamp 247b2e50-0c8d-43bf-b5f4-a6f45e13019c))
(fp_line (start -1.27 -0.5) (end -0.562893 0) (layer "F.Fab") (width 0.1) (tstamp 44845827-cf25-4675-b8df-f068e95c1bfa))
(fp_line (start -1.27 -2.92) (end -1.27 2.88) (layer "F.Fab") (width 0.1) (tstamp 6b18748c-0b06-4486-82b0-5418bb7dd783))
(fp_line (start -0.562893 0) (end -1.27 0.5) (layer "F.Fab") (width 0.1) (tstamp 9efd12d4-387c-4290-b493-3ffec5195889))
(fp_line (start 8.89 -2.92) (end -1.27 -2.92) (layer "F.Fab") (width 0.1) (tstamp dbf3dc35-f60c-4892-8a49-3bde1f1e4cf8))
(fp_line (start -1.27 2.88) (end 8.89 2.88) (layer "F.Fab") (width 0.1) (tstamp e68453b7-5e07-4a9d-ba03-d43b671d41c9))
(pad "1" thru_hole roundrect (at 0 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask) (roundrect_rratio 0.1436781609)
(net 1 "/FAN_GND") (pinfunction "Pin_1") (pintype "passive") (tstamp c2639427-b777-46f1-b9de-f520be004813))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 2 "/+12V") (pinfunction "Pin_2") (pintype "passive") (tstamp ca525232-883a-4c76-b818-71ab81d6a93c))
(pad "3" thru_hole oval (at 5.08 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 12 "unconnected-(Fan9-Pad3)") (pinfunction "Pin_3") (pintype "passive+no_connect") (tstamp 54f3bc1b-9731-4d94-ab7c-bf8172985c05))
(pad "4" thru_hole oval (at 7.62 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 4 "/Fan_PWM") (pinfunction "Pin_4") (pintype "passive") (tstamp 4c0de471-ddc5-4e15-8d83-0582c3f73c50))
(model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Molex:Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5EA53D3B) (tstamp a40b980a-6e71-463c-83be-1878a36943e1)
(at 68.415 98.095 90)
(descr "Molex KK-254 Interconnect System, old/engineering part number: AE-6410-04A example for new part number: 22-27-2041, 4 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex KK-254 vertical")
(property "Sheetfile" "Fan hub v0.1.kicad_sch")
(property "Sheetname" "")
(path "/ce746883-c0e8-4bc5-b469-aafc06709f8e")
(attr through_hole)
(fp_text reference "Fan3" (at 3.81 -4.12 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f5909a6a-f20d-4452-a0be-ba1a18ecef7d)
)
(fp_text value "Conn_01x04_Male" (at 3.81 4.08 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c950180a-8858-42c2-ba14-a7a3bf2d5fcf)
)
(fp_text user "${REFERENCE}" (at 3.81 -2.22 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1de710b9-6809-45e0-932c-6736a412a568)
)
(fp_line (start 1.74 -3.03) (end 1.74 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 03514edb-e5bc-426f-892a-6fb3d98ba7ea))
(fp_line (start -0.8 -3.03) (end -0.8 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 0d655ab0-1894-4fae-b2e0-701e640cec64))
(fp_line (start 0.8 -2.43) (end 0.8 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 14a22897-4bbb-458d-9dfc-b1a86578b24e))
(fp_line (start 1.74 -2.43) (end 3.34 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 29390c1b-b49b-41a0-9f60-c0306dd1af25))
(fp_line (start 0 1.99) (end 7.62 1.99) (layer "F.SilkS") (width 0.12) (tstamp 2950814a-c0a7-4c69-9e24-3d94d0c07327))
(fp_line (start 0.25 2.99) (end 0.25 1.99) (layer "F.SilkS") (width 0.12) (tstamp 3853df6b-9024-4265-a8b5-6bd20af88797))
(fp_line (start 8.42 -2.43) (end 8.42 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 49a53b99-a71b-4844-ad1b-d64e8da7eec2))
(fp_line (start 7.62 1.99) (end 7.62 2.99) (layer "F.SilkS") (width 0.12) (tstamp 4b062e52-316f-4f99-b2eb-ac643e272fff))
(fp_line (start 5.88 -2.43) (end 5.88 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 55186244-0d1f-4c6a-ae79-f32c852a5e53))
(fp_line (start 0.25 1.46) (end 7.37 1.46) (layer "F.SilkS") (width 0.12) (tstamp 58c34c78-44dd-4b28-a01e-de72784b0384))
(fp_line (start 6.82 -2.43) (end 8.42 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 76b10415-29b0-494c-8c54-ebadb83f6e37))
(fp_line (start -1.38 2.99) (end 9 2.99) (layer "F.SilkS") (width 0.12) (tstamp 78e95c64-621f-459d-bae4-1400c00e1836))
(fp_line (start -1.38 -3.03) (end -1.38 2.99) (layer "F.SilkS") (width 0.12) (tstamp 7bb114db-098d-4a7b-a299-870b16a39f4e))
(fp_line (start 7.37 1.46) (end 7.62 1.99) (layer "F.SilkS") (width 0.12) (tstamp 7d10642e-63b1-4ed9-9087-bcf9abf65177))
(fp_line (start 9 -3.03) (end -1.38 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 8464aceb-6bb0-4eac-a4f4-a589a8999d8e))
(fp_line (start 7.37 2.99) (end 7.37 1.99) (layer "F.SilkS") (width 0.12) (tstamp a49f7b36-47f8-4e2a-9f3f-fa08f764a024))
(fp_line (start -0.8 -2.43) (end 0.8 -2.43) (layer "F.SilkS") (width 0.12) (tstamp ae569315-1e58-4c26-8401-568e4f4b14ed))
(fp_line (start 4.28 -2.43) (end 5.88 -2.43) (layer "F.SilkS") (width 0.12) (tstamp ae9d38e7-bd56-4695-bcaa-b15b9e859e7d))
(fp_line (start 6.82 -3.03) (end 6.82 -2.43) (layer "F.SilkS") (width 0.12) (tstamp c528280c-b8bd-471e-bfd2-e89bdc43f9b9))
(fp_line (start 0 2.99) (end 0 1.99) (layer "F.SilkS") (width 0.12) (tstamp d48882c8-4a41-4ece-ab5a-a2a1aec11357))
(fp_line (start 3.34 -2.43) (end 3.34 -3.03) (layer "F.SilkS") (width 0.12) (tstamp dc351c62-0cfc-4ab4-b092-f762742303ef))
(fp_line (start 9 2.99) (end 9 -3.03) (layer "F.SilkS") (width 0.12) (tstamp df1a5aae-1205-4720-a987-dd7d664dafd0))
(fp_line (start -1.67 -2) (end -1.67 2) (layer "F.SilkS") (width 0.12) (tstamp df21002a-5add-4979-9139-0ff05f70b566))
(fp_line (start 0 1.99) (end 0.25 1.46) (layer "F.SilkS") (width 0.12) (tstamp e29926c7-db61-4c0f-856e-079b795d2abf))
(fp_line (start 4.28 -3.03) (end 4.28 -2.43) (layer "F.SilkS") (width 0.12) (tstamp e7c7eba3-53bc-467d-8f0b-791028f61fbb))
(fp_line (start -1.77 -3.42) (end -1.77 3.38) (layer "F.CrtYd") (width 0.05) (tstamp 0d0e6a71-cce2-447f-ab38-f06ad5041fe7))
(fp_line (start -1.77 3.38) (end 9.39 3.38) (layer "F.CrtYd") (width 0.05) (tstamp 20c21bb9-50c6-44b4-96e5-758f6cba2c79))
(fp_line (start 9.39 3.38) (end 9.39 -3.42) (layer "F.CrtYd") (width 0.05) (tstamp b9f1e0ee-2d0e-48e9-b8cd-b3528835d1db))
(fp_line (start 9.39 -3.42) (end -1.77 -3.42) (layer "F.CrtYd") (width 0.05) (tstamp e60c49a7-45e1-4f42-9f01-b6a2b78b3ce1))
(fp_line (start -1.27 2.88) (end 8.89 2.88) (layer "F.Fab") (width 0.1) (tstamp 289bcde9-f96c-41f9-9a27-fe86cd13252b))
(fp_line (start -1.27 -2.92) (end -1.27 2.88) (layer "F.Fab") (width 0.1) (tstamp 63801a11-1a21-448a-a414-bfd189e5f19a))
(fp_line (start 8.89 -2.92) (end -1.27 -2.92) (layer "F.Fab") (width 0.1) (tstamp 73b24683-023f-465a-b3fa-c7bb31a392e7))
(fp_line (start -0.562893 0) (end -1.27 0.5) (layer "F.Fab") (width 0.1) (tstamp a2662792-6c92-440d-ad98-419cf2f4bd25))
(fp_line (start -1.27 -0.5) (end -0.562893 0) (layer "F.Fab") (width 0.1) (tstamp a782ddd7-98d9-4648-a966-c2101665538f))
(fp_line (start 8.89 2.88) (end 8.89 -2.92) (layer "F.Fab") (width 0.1) (tstamp f418a854-566a-4002-afd7-ec36e5a48851))
(pad "1" thru_hole roundrect (at 0 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask) (roundrect_rratio 0.1436781609)
(net 1 "/FAN_GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 9ac40621-e20d-4b9d-b2e8-9c6a82595feb))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 2 "/+12V") (pinfunction "Pin_2") (pintype "passive") (tstamp 746eb6f6-c758-40aa-bb2c-b381bdb1e236))
(pad "3" thru_hole oval (at 5.08 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 6 "unconnected-(Fan3-Pad3)") (pinfunction "Pin_3") (pintype "passive+no_connect") (tstamp 78b04b02-c1ff-493b-99ad-1c0b52b15e96))
(pad "4" thru_hole oval (at 7.62 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 4 "/Fan_PWM") (pinfunction "Pin_4") (pintype "passive") (tstamp 04c23ceb-e318-421b-bbe5-242893eafb74))
(model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Molex:Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5EA53D3B) (tstamp c866a805-11d7-4256-ab48-81ae0757de98)
(at 75.4 86.665 90)
(descr "Molex KK-254 Interconnect System, old/engineering part number: AE-6410-04A example for new part number: 22-27-2041, 4 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex KK-254 vertical")
(property "Sheetfile" "Fan hub v0.1.kicad_sch")
(property "Sheetname" "")
(path "/7a7e00e5-fe8c-4cd0-b140-50a6281b1117")
(attr through_hole)
(fp_text reference "Fan6" (at 3.81 -4.12 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2b481b12-2ac0-4a0c-ba86-690ba34191c3)
)
(fp_text value "Conn_01x04_Male" (at 3.81 4.08 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 96a1b6b3-fbff-4866-b494-f8745b39ef26)
)
(fp_text user "${REFERENCE}" (at 3.81 -2.22 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c9d1828-6b3b-42cf-b4b9-fa6ee69ff2b5)
)
(fp_line (start 1.74 -2.43) (end 3.34 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 17862007-7119-49b3-8066-00048c0cfa58))
(fp_line (start 6.82 -2.43) (end 8.42 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 17f9a488-9003-4651-801f-a4563955791e))
(fp_line (start 4.28 -3.03) (end 4.28 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 1a1e4d47-a92b-4b55-bd18-e0f2c3d904a7))
(fp_line (start 1.74 -3.03) (end 1.74 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 20f489d3-52e9-4c5e-a263-a1b3a6f0fc5b))
(fp_line (start 0 1.99) (end 7.62 1.99) (layer "F.SilkS") (width 0.12) (tstamp 28259c98-61d7-4abf-aa11-cbed2afb864f))
(fp_line (start 0 2.99) (end 0 1.99) (layer "F.SilkS") (width 0.12) (tstamp 35fb0d66-5e1d-436a-96ea-495d787b77b7))
(fp_line (start 3.34 -2.43) (end 3.34 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 363fe59c-c1fd-4dda-9e5b-b9af2e46ca44))
(fp_line (start 7.62 1.99) (end 7.62 2.99) (layer "F.SilkS") (width 0.12) (tstamp 39b5fd50-cdf8-42d9-bcbf-2814d4ab96ea))
(fp_line (start 0.25 1.46) (end 7.37 1.46) (layer "F.SilkS") (width 0.12) (tstamp 432658d1-fdc0-4ad2-b419-73ff7ba43f8c))
(fp_line (start 0 1.99) (end 0.25 1.46) (layer "F.SilkS") (width 0.12) (tstamp 6cc31161-d6f4-43e2-8935-c7c90cbb6f5b))
(fp_line (start 8.42 -2.43) (end 8.42 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 6edaa10b-7e32-4423-a7e8-2766dbe05318))
(fp_line (start 4.28 -2.43) (end 5.88 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 8093b21c-8f86-42ff-a1da-72e7fa78c2c3))
(fp_line (start 7.37 2.99) (end 7.37 1.99) (layer "F.SilkS") (width 0.12) (tstamp 813c5e4d-6dd2-43df-8624-3999f458f9a6))
(fp_line (start 9 2.99) (end 9 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 814f743c-9a94-4bc8-a924-1dbd149deb44))
(fp_line (start 0.25 2.99) (end 0.25 1.99) (layer "F.SilkS") (width 0.12) (tstamp 821debf0-8f04-479c-9b05-d44f78df5dbd))
(fp_line (start -1.38 -3.03) (end -1.38 2.99) (layer "F.SilkS") (width 0.12) (tstamp 868a4b61-c973-4064-850a-a1c87bc538a1))
(fp_line (start -1.67 -2) (end -1.67 2) (layer "F.SilkS") (width 0.12) (tstamp 8b5379ce-d6fc-4003-adde-c52ab38a6627))
(fp_line (start -0.8 -3.03) (end -0.8 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 9132b210-b5db-48b4-b262-f8bf997edc3f))
(fp_line (start 5.88 -2.43) (end 5.88 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 983ea3e0-c9c7-4e55-94a9-19041ca04d32))
(fp_line (start -1.38 2.99) (end 9 2.99) (layer "F.SilkS") (width 0.12) (tstamp a3fcb3d9-75d3-4af0-bdc2-dd0f8e2a1ed3))
(fp_line (start -0.8 -2.43) (end 0.8 -2.43) (layer "F.SilkS") (width 0.12) (tstamp a560c99e-6f78-470d-bf88-0d96c7a3b6ee))
(fp_line (start 6.82 -3.03) (end 6.82 -2.43) (layer "F.SilkS") (width 0.12) (tstamp ce70e0b2-74a9-4389-ae51-43cea6ab7bc0))
(fp_line (start 9 -3.03) (end -1.38 -3.03) (layer "F.SilkS") (width 0.12) (tstamp d4a4f5d1-69ff-4acf-92c2-32561ac33d15))
(fp_line (start 0.8 -2.43) (end 0.8 -3.03) (layer "F.SilkS") (width 0.12) (tstamp f2a65f0f-8735-4c71-83b6-3a6b1985f6ec))
(fp_line (start 7.37 1.46) (end 7.62 1.99) (layer "F.SilkS") (width 0.12) (tstamp ff745136-a866-40ff-927d-ed994c5d99b7))
(fp_line (start 9.39 -3.42) (end -1.77 -3.42) (layer "F.CrtYd") (width 0.05) (tstamp 4ddfac20-604e-4cd6-a3b8-528b43b296c2))
(fp_line (start 9.39 3.38) (end 9.39 -3.42) (layer "F.CrtYd") (width 0.05) (tstamp 6a11fa1c-56e1-4346-9c03-41af3171441f))
(fp_line (start -1.77 3.38) (end 9.39 3.38) (layer "F.CrtYd") (width 0.05) (tstamp 9121e4d5-96aa-4afe-aa28-b5543b4d2074))
(fp_line (start -1.77 -3.42) (end -1.77 3.38) (layer "F.CrtYd") (width 0.05) (tstamp d57f2fed-06d9-417b-9fc8-540aee16a127))
(fp_line (start -0.562893 0) (end -1.27 0.5) (layer "F.Fab") (width 0.1) (tstamp 18ab83f7-b253-4d7c-b97a-bec4f9f087c8))
(fp_line (start 8.89 2.88) (end 8.89 -2.92) (layer "F.Fab") (width 0.1) (tstamp 45188023-95ea-406f-8206-475ef2a36eee))
(fp_line (start 8.89 -2.92) (end -1.27 -2.92) (layer "F.Fab") (width 0.1) (tstamp 4935e41e-8d38-4236-8a53-bc7b7ff9c856))
(fp_line (start -1.27 2.88) (end 8.89 2.88) (layer "F.Fab") (width 0.1) (tstamp b7a0792c-421d-494a-94ce-78a1bef10a1d))
(fp_line (start -1.27 -2.92) (end -1.27 2.88) (layer "F.Fab") (width 0.1) (tstamp eff078bf-3ec3-40b9-a710-dcc2781e08a9))
(fp_line (start -1.27 -0.5) (end -0.562893 0) (layer "F.Fab") (width 0.1) (tstamp f522198f-cf60-4ced-a9e6-8db793db16af))
(pad "1" thru_hole roundrect (at 0 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask) (roundrect_rratio 0.1436781609)
(net 1 "/FAN_GND") (pinfunction "Pin_1") (pintype "passive") (tstamp e7ba64cc-52ee-45bc-bf11-04d65a5c0026))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 2 "/+12V") (pinfunction "Pin_2") (pintype "passive") (tstamp c0824446-b5b4-4c96-bf1f-b5f9596ed613))
(pad "3" thru_hole oval (at 5.08 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 9 "unconnected-(Fan6-Pad3)") (pinfunction "Pin_3") (pintype "passive+no_connect") (tstamp e02eacb7-56fb-499e-90d9-65e42310e0ee))
(pad "4" thru_hole oval (at 7.62 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 4 "/Fan_PWM") (pinfunction "Pin_4") (pintype "passive") (tstamp a0b2bb13-623d-47ff-a4e1-a6be0ee7f9ba))
(model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Molex:Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5EA53D3B) (tstamp f9786d18-eb4e-485f-bfe3-990766d8ee43)
(at 75.4 98.095 90)
(descr "Molex KK-254 Interconnect System, old/engineering part number: AE-6410-04A example for new part number: 22-27-2041, 4 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex KK-254 vertical")
(property "Sheetfile" "Fan hub v0.1.kicad_sch")
(property "Sheetname" "")
(path "/9898b3f2-5e1a-4d74-9de7-0dcfb511d9ca")
(attr through_hole)
(fp_text reference "Fan5" (at 3.81 -4.12 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 63786b00-2b1c-4116-9d5a-b06419e403b8)
)
(fp_text value "Conn_01x04_Male" (at 3.81 4.08 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eca3ba3a-724d-4413-88c9-2fb36a59ad3e)
)
(fp_text user "${REFERENCE}" (at 3.81 -2.22 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp db52f9c4-defa-4db0-9c66-152597b19273)
)
(fp_line (start -0.8 -3.03) (end -0.8 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 025b4df1-990d-4b03-903b-b93d989a4b5c))
(fp_line (start -1.38 2.99) (end 9 2.99) (layer "F.SilkS") (width 0.12) (tstamp 0427e8d1-9992-4f7a-94a8-ce5ded1676e3))
(fp_line (start 8.42 -2.43) (end 8.42 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 0667a2ff-90ea-402c-bbde-270a2438ad99))
(fp_line (start -1.67 -2) (end -1.67 2) (layer "F.SilkS") (width 0.12) (tstamp 0e6b4dc5-ddb8-460c-993d-868f128f270a))
(fp_line (start -1.38 -3.03) (end -1.38 2.99) (layer "F.SilkS") (width 0.12) (tstamp 2760110d-aea0-4e22-971b-a0d734aa2044))
(fp_line (start 4.28 -3.03) (end 4.28 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 2b0e45d5-5d27-4ab0-9297-5e5c05987791))
(fp_line (start 5.88 -2.43) (end 5.88 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 30113ef9-702a-4e2d-a965-bf240d22a645))
(fp_line (start 1.74 -3.03) (end 1.74 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 30b585c3-4790-42cb-a4d3-748cc108e64b))
(fp_line (start 6.82 -2.43) (end 8.42 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 3f8d1ca8-78f1-44e7-8d85-4cdb71fb7f1e))
(fp_line (start 7.62 1.99) (end 7.62 2.99) (layer "F.SilkS") (width 0.12) (tstamp 45178998-68ad-4b96-aa23-43ded1e29722))
(fp_line (start 1.74 -2.43) (end 3.34 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 464a921d-30f2-4139-afe0-69bb087ffc96))
(fp_line (start 7.37 2.99) (end 7.37 1.99) (layer "F.SilkS") (width 0.12) (tstamp 4c099e1a-a45e-4e27-bb5d-ce4ccbe5c279))
(fp_line (start 0.25 1.46) (end 7.37 1.46) (layer "F.SilkS") (width 0.12) (tstamp 63513907-145d-41af-be57-49d0d356c048))
(fp_line (start 9 -3.03) (end -1.38 -3.03) (layer "F.SilkS") (width 0.12) (tstamp 7dfab402-98a1-4151-aa9e-6c575ac457df))
(fp_line (start 6.82 -3.03) (end 6.82 -2.43) (layer "F.SilkS") (width 0.12) (tstamp 7e4cd738-f366-4c5a-98a4-fe62978c94fc))
(fp_line (start 0 1.99) (end 7.62 1.99) (layer "F.SilkS") (width 0.12) (tstamp 8d2ed651-4a9e-4613-bcc2-2ec2ae075e91))
(fp_line (start 0.25 2.99) (end 0.25 1.99) (layer "F.SilkS") (width 0.12) (tstamp 99f13577-4ce7-4850-8817-7c8f43dfba1f))
(fp_line (start 7.37 1.46) (end 7.62 1.99) (layer "F.SilkS") (width 0.12) (tstamp 9c8318fe-0436-462f-a956-b5bd5855e003))
(fp_line (start -0.8 -2.43) (end 0.8 -2.43) (layer "F.SilkS") (width 0.12) (tstamp c4e39d3a-7efe-4457-b8e8-a0e05babb1d5))
(fp_line (start 0 2.99) (end 0 1.99) (layer "F.SilkS") (width 0.12) (tstamp c9303d29-3d1e-4cee-9e26-caa9c167df29))
(fp_line (start 4.28 -2.43) (end 5.88 -2.43) (layer "F.SilkS") (width 0.12) (tstamp d4f397c4-955e-426f-a2c0-b072135d8cce))
(fp_line (start 0.8 -2.43) (end 0.8 -3.03) (layer "F.SilkS") (width 0.12) (tstamp da27e2c0-c042-4b45-9f8d-230a0f549e58))
(fp_line (start 0 1.99) (end 0.25 1.46) (layer "F.SilkS") (width 0.12) (tstamp e0188c2f-2e54-4311-b500-ca29292716f0))
(fp_line (start 9 2.99) (end 9 -3.03) (layer "F.SilkS") (width 0.12) (tstamp f430c680-281d-43bf-b467-3bbe4b653901))
(fp_line (start 3.34 -2.43) (end 3.34 -3.03) (layer "F.SilkS") (width 0.12) (tstamp fc696641-c43d-4a6c-9e50-9ed46504e1ad))
(fp_line (start 9.39 3.38) (end 9.39 -3.42) (layer "F.CrtYd") (width 0.05) (tstamp 56e6501b-eda4-43fa-999e-bf966f85644c))
(fp_line (start -1.77 3.38) (end 9.39 3.38) (layer "F.CrtYd") (width 0.05) (tstamp 63bb2a6e-5634-409e-89b2-e1d573a30823))
(fp_line (start -1.77 -3.42) (end -1.77 3.38) (layer "F.CrtYd") (width 0.05) (tstamp beed488a-f292-447c-a7a8-fc8dd24caa71))
(fp_line (start 9.39 -3.42) (end -1.77 -3.42) (layer "F.CrtYd") (width 0.05) (tstamp f17d0469-0ab2-4e9f-afcb-64cafc6ac57e))
(fp_line (start 8.89 2.88) (end 8.89 -2.92) (layer "F.Fab") (width 0.1) (tstamp 5abf43e6-d277-478c-9973-bade26732ba5))
(fp_line (start -1.27 -0.5) (end -0.562893 0) (layer "F.Fab") (width 0.1) (tstamp 79ea10c4-6960-4194-922c-e36cbe9f19d3))
(fp_line (start -0.562893 0) (end -1.27 0.5) (layer "F.Fab") (width 0.1) (tstamp a7692549-ef1f-4c78-89f7-cc64c8311259))
(fp_line (start 8.89 -2.92) (end -1.27 -2.92) (layer "F.Fab") (width 0.1) (tstamp c7063404-1116-422f-8d27-48a5fd406f5d))
(fp_line (start -1.27 -2.92) (end -1.27 2.88) (layer "F.Fab") (width 0.1) (tstamp d964d70c-215d-42c5-9649-daab991f3db8))
(fp_line (start -1.27 2.88) (end 8.89 2.88) (layer "F.Fab") (width 0.1) (tstamp eae1bb97-a345-4af7-94b3-3ed559efd87e))
(pad "1" thru_hole roundrect (at 0 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask) (roundrect_rratio 0.1436781609)
(net 1 "/FAN_GND") (pinfunction "Pin_1") (pintype "passive") (tstamp acd13a78-4440-4602-8912-af9ff9c3e79e))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 2 "/+12V") (pinfunction "Pin_2") (pintype "passive") (tstamp d4be18a2-a055-478a-9d46-5e8a4dce396f))
(pad "3" thru_hole oval (at 5.08 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 8 "unconnected-(Fan5-Pad3)") (pinfunction "Pin_3") (pintype "passive+no_connect") (tstamp 42d05b58-840a-4859-9e66-88da3625b98b))
(pad "4" thru_hole oval (at 7.62 0 90) (size 1.74 2.19) (drill 1.19) (layers *.Cu *.Mask)
(net 4 "/Fan_PWM") (pinfunction "Pin_4") (pintype "passive") (tstamp ef3afd69-3c54-458a-aba0-29ce9f33ffdb))
(model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_arc (start 53 100) (mid 50.87868 99.12132) (end 50 97) (layer "Edge.Cuts") (width 0.1) (tstamp 00963df5-2e04-466b-a620-8d1b509a5386))
(gr_line (start 53 100) (end 92 100) (layer "Edge.Cuts") (width 0.1) (tstamp 33ad2ada-2bdb-4f41-9711-9a080e12b9f9))
(gr_arc (start 50 80) (mid 50.87868 77.87868) (end 53 77) (layer "Edge.Cuts") (width 0.1) (tstamp 4210ca96-99a0-4fd6-9e51-6c15172591b5))
(gr_line (start 50 80) (end 50 97) (layer "Edge.Cuts") (width 0.1) (tstamp 48cfed6a-933c-4ea1-a7c7-727c427ca418))
(gr_arc (start 92 77) (mid 94.12132 77.87868) (end 95 80) (layer "Edge.Cuts") (width 0.1) (tstamp a27e2add-05c9-4729-8057-5f3c8e376b81))
(gr_line (start 92 77) (end 53 77) (layer "Edge.Cuts") (width 0.1) (tstamp b1762c0b-b7d8-49f5-8a7f-79a144dc619e))
(gr_line (start 95 97) (end 95 80) (layer "Edge.Cuts") (width 0.1) (tstamp d076fd0e-f000-49d3-baa5-4f8428a96898))
(gr_arc (start 95 97) (mid 94.12132 99.12132) (end 92 100) (layer "Edge.Cuts") (width 0.1) (tstamp e5707a0d-0f03-464e-8164-6f0e1de43b07))
(gr_text "${TITLE} ${REVISION}\n${ISSUE_DATE}" (at 86 88.5 90) (layer "B.SilkS") (tstamp 3382e760-4976-4372-ae69-314689c9585c)
(effects (font (size 1.5 1.5) (thickness 0.3)) (justify mirror))
)
(gr_text "JLCJLCJLC" (at 51.5 88.5 90) (layer "B.SilkS") (tstamp 9cb5d6c2-ff70-4692-8754-c9df67d0c605)
(effects (font (size 1 1) (thickness 0.25)) (justify mirror))
)
(gr_text "PWM" (at 93.561 84.76) (layer "F.SilkS") (tstamp 46f1a2d8-23bd-477c-bfac-a124fec16cc8)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(gr_text "GND" (at 93.561 92.38) (layer "F.SilkS") (tstamp 9c4e512f-5263-41c5-b1da-206b8f8cfa79)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(gr_text "+12V" (at 93.561 89.84) (layer "F.SilkS") (tstamp c7035a73-7ae2-4c54-92ed-e64ec012db5a)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(gr_text "TACH" (at 93.561 87.3) (layer "F.SilkS") (tstamp dd8518a4-2310-4763-8bab-51e88096ba5d)
(effects (font (size 0.75 0.75) (thickness 0.15)))
)
(gr_text "Up" (at 56.985 82.22) (layer "F.SilkS") (tstamp e51f1ce7-372c-4a8b-8b85-d0b3f5ada0a0)
(effects (font (size 1 1) (thickness 0.15)))
)
(dimension (type aligned) (layer "Dwgs.User") (tstamp bf1eee1c-ae5e-477b-880f-ecd7c6cbe4ce)
(pts (xy 50 100) (xy 50 77))
(height -9)
(gr_text "905.5 mils" (at 39.85 88.5 90) (layer "Dwgs.User") (tstamp bf1eee1c-ae5e-477b-880f-ecd7c6cbe4ce)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (units 3) (units_format 1) (precision 1) suppress_zeroes)
(style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(dimension (type aligned) (layer "Dwgs.User") (tstamp fc6adbf2-81a5-49fe-8aae-cf17818a29fc)
(pts (xy 50 100) (xy 95 100))
(height 10)
(gr_text "1771.7 mils" (at 72.5 108.85) (layer "Dwgs.User") (tstamp fc6adbf2-81a5-49fe-8aae-cf17818a29fc)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (units 3) (units_format 1) (precision 1) suppress_zeroes)
(style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(segment (start 68.415 86.665) (end 75.4 86.665) (width 1.27) (layer "F.Cu") (net 1) (tstamp 3ccef9a5-ea87-455e-bfb2-d87abcdaaeff))
(segment (start 75.4 86.665) (end 82.385 86.665) (width 1.27) (layer "F.Cu") (net 1) (tstamp 4a9e53ad-dae0-4d1d-99ab-dc26eaa9664a))
(segment (start 60.16 98.095) (end 61.43 98.095) (width 1.27) (layer "F.Cu") (net 1) (tstamp 4e7cbb3f-9e10-457e-b951-f0c20060990f))
(segment (start 68.415 98.095) (end 75.4 98.095) (width 1.27) (layer "F.Cu") (net 1) (tstamp 63d71c44-85f1-4b4a-87a3-44ece6c9783a))
(segment (start 61.43 98.095) (end 68.415 98.095) (width 1.27) (layer "F.Cu") (net 1) (tstamp 93ee6906-ec84-4a9a-b3ce-1c375ff9e496))
(segment (start 61.43 86.665) (end 68.415 86.665) (width 1.27) (layer "F.Cu") (net 1) (tstamp 949c4ed9-eb1f-4bbe-bbb1-f0d7642a3703))
(segment (start 82.385 98.095) (end 83.655 98.095) (width 1.27) (layer "F.Cu") (net 1) (tstamp 9bd07076-f508-4b09-9ee1-41b268254c5d))
(segment (start 82.385 86.665) (end 88.1 92.38) (width 1.27) (layer "F.Cu") (net 1) (tstamp a6b950db-b8ce-4da7-aff9-f6ba53cf4d26))
(segment (start 83.655 98.095) (end 89.37 92.38) (width 1.27) (layer "F.Cu") (net 1) (tstamp d39dce1b-349a-4886-9424-73b2b295f595))
(segment (start 54.445 92.38) (end 60.16 98.095) (width 1.27) (layer "F.Cu") (net 1) (tstamp e988c49f-b7a2-40d2-9507-5181ce083c29))
(segment (start 75.4 98.095) (end 82.385 98.095) (width 1.27) (layer "F.Cu") (net 1) (tstamp ec3f6310-0d55-4213-85e2-57c181a8f780))
(segment (start 88.1 92.38) (end 89.37 92.38) (width 1.27) (layer "F.Cu") (net 1) (tstamp f761cbf8-5bc1-466b-a8c2-aac3448a2def))
(via (at 79.21 81.585) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 0bafd263-f0d9-4662-9daa-735961337a85))
(via (at 72.225 81.585) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 3101069f-690f-44c7-a2c6-68dbae42ed7b))
(via (at 64.605 81.585) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp a677f223-3bcb-4fe1-8a1b-c79393d86c92))
(segment (start 68.415 98.095) (end 75.4 98.095) (width 1.27) (layer "B.Cu") (net 1) (tstamp 08add889-e105-4b0b-bc40-11bdb1965a6e))
(segment (start 82.385 86.665) (end 83.655 86.665) (width 1.27) (layer "B.Cu") (net 1) (tstamp 23daf777-b04b-4c22-8929-2d466f3936be))
(segment (start 75.4 98.095) (end 82.385 98.095) (width 1.27) (layer "B.Cu") (net 1) (tstamp 33279d4d-7d9a-4ce0-ae73-2752022f4aec))
(segment (start 91.783 83.744) (end 91.783 91.237) (width 1.27) (layer "B.Cu") (net 1) (tstamp 361eb0f5-cd79-47ad-b555-6073eeb6516a))
(segment (start 83.655 98.095) (end 89.37 92.38) (width 1.27) (layer "B.Cu") (net 1) (tstamp 419c3af6-ec07-4371-a89e-291cf88f3931))
(segment (start 61.43 98.095) (end 68.415 98.095) (width 1.27) (layer "B.Cu") (net 1) (tstamp 6af5eb5c-b88a-4846-87dd-a68f55b5fcde))
(segment (start 54.445 92.38) (end 60.16 98.095) (width 1.27) (layer "B.Cu") (net 1) (tstamp 73138416-9293-4d51-82ed-468ec53e6efc))
(segment (start 68.415 86.665) (end 75.4 86.665) (width 1.27) (layer "B.Cu") (net 1) (tstamp 7507d6cb-571f-4f94-b7dd-b8479ef83a0b))