-
Notifications
You must be signed in to change notification settings - Fork 0
/
FanExpander.kicad_pcb
4239 lines (4216 loc) · 177 KB
/
FanExpander.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")
(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
(pad_to_mask_clearance 0)
(grid_origin 100 100)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros true)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Gerbers/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "FanGround")
(net 3 "~{FAIL} Out")
(net 4 "Net-(C3-Pad1)")
(net 5 "Net-(C3-Pad2)")
(net 6 "+3V3")
(net 7 "Net-(D1-Pad2)")
(net 8 "FanEn")
(net 9 "/Vfan")
(net 10 "Net-(D2-Pad2)")
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal" (layer "F.Cu")
(tedit 5B294EBC) (tstamp 22b36c73-46e7-4496-8b98-f69a5955de22)
(at 115.24 102.54 90)
(descr "Terminal Block Phoenix MKDS-1,5-2-5.08, 2 pins, pitch 5.08mm, size 10.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MKDS-1,5-2-5.08 pitch 5.08mm size 10.2x9.8mm^2 drill 1.3mm pad 2.6mm")
(property "Sheetfile" "FanExpander.kicad_sch")
(property "Sheetname" "")
(path "/6f0bf181-b7ac-48a2-905c-c67feeb7d571")
(attr through_hole)
(fp_text reference "J3" (at -1.524 -4.064 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e93b4aa0-7fe2-4b97-9fb5-c5458e04e006)
)
(fp_text value "PowerIn" (at 2.54 5.66 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3487b883-d132-4810-af37-6ee3794b3652)
)
(fp_text user "${REFERENCE}" (at 2.54 3.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2c08dad7-0b97-4355-8528-fd74d397da31)
)
(fp_line (start -2.6 4.66) (end 7.68 4.66) (layer "F.SilkS") (width 0.12) (tstamp 1b27d1c8-f65f-4837-ac2a-4472d56cd4ff))
(fp_line (start -2.84 4.16) (end -2.84 4.9) (layer "F.SilkS") (width 0.12) (tstamp 1fad9050-55c5-4235-9608-ea9460329cdb))
(fp_line (start -2.6 4.1) (end 7.68 4.1) (layer "F.SilkS") (width 0.12) (tstamp 2965d96a-703d-45a6-8083-ee4575c36bb7))
(fp_line (start 4.046 1.239) (end 4.011 1.274) (layer "F.SilkS") (width 0.12) (tstamp 43bdf38e-b010-49fa-901f-90246bfdfc87))
(fp_line (start -2.6 -5.261) (end 7.68 -5.261) (layer "F.SilkS") (width 0.12) (tstamp 520fd06c-b6b9-4c42-9bfc-5c3d2d29f14b))
(fp_line (start 7.68 -5.261) (end 7.68 4.66) (layer "F.SilkS") (width 0.12) (tstamp 6ec4beb8-dbfb-4b48-921c-f98b9d0706b5))
(fp_line (start -2.6 -5.261) (end -2.6 4.66) (layer "F.SilkS") (width 0.12) (tstamp 7bd6fa35-9259-4a2d-8279-ba81ed2069f9))
(fp_line (start 3.853 1.023) (end 3.806 1.069) (layer "F.SilkS") (width 0.12) (tstamp 88c879b0-2510-4f44-a16d-26dd08b3c12a))
(fp_line (start 6.15 -1.275) (end 6.115 -1.239) (layer "F.SilkS") (width 0.12) (tstamp a881fee1-2247-4b84-acc6-5a7e843e2ba6))
(fp_line (start 6.355 -1.069) (end 6.308 -1.023) (layer "F.SilkS") (width 0.12) (tstamp b55f6fd6-b5a9-46c1-9ccf-a9b9dbedb0ae))
(fp_line (start -2.6 2.6) (end 7.68 2.6) (layer "F.SilkS") (width 0.12) (tstamp c623739f-e556-4bf3-bf0d-ea8f14f7750e))
(fp_line (start -2.84 4.9) (end -2.34 4.9) (layer "F.SilkS") (width 0.12) (tstamp d75bbaff-de62-4f47-b2c1-42ba1e99da40))
(fp_line (start -2.6 -2.301) (end 7.68 -2.301) (layer "F.SilkS") (width 0.12) (tstamp e7cc72e9-2528-4173-ac91-2a1600dc3104))
(fp_arc (start -1.535427 0.683042) (mid -1.680501 -0.000524) (end -1.535 -0.684) (layer "F.SilkS") (width 0.12) (tstamp 030f7528-01d8-4f5d-b375-396511a3f702))
(fp_arc (start -0.683042 -1.535427) (mid 0.000524 -1.680501) (end 0.684 -1.535) (layer "F.SilkS") (width 0.12) (tstamp 2ee91d7b-5181-4f17-a629-4c470c00b784))
(fp_arc (start 0.028805 1.680253) (mid -0.335551 1.646659) (end -0.684 1.535) (layer "F.SilkS") (width 0.12) (tstamp 360bedc1-8522-4c8c-bbbd-baca6d69d40e))
(fp_arc (start 0.683318 1.534756) (mid 0.349292 1.643288) (end 0 1.68) (layer "F.SilkS") (width 0.12) (tstamp 4406c962-ad4e-4078-b602-6c519257203f))
(fp_arc (start 1.535427 -0.683042) (mid 1.680501 0.000524) (end 1.535 0.684) (layer "F.SilkS") (width 0.12) (tstamp d3a51349-28f4-4529-a091-383e21c10a0b))
(fp_circle (center 5.08 0) (end 6.76 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 1e2b7ca4-bf12-4484-baf4-f8f4ad434bb3))
(fp_line (start -3.04 5.1) (end 8.13 5.1) (layer "F.CrtYd") (width 0.05) (tstamp 41f99891-7a2b-4f30-b64b-8a3195d07d40))
(fp_line (start 8.13 5.1) (end 8.13 -5.71) (layer "F.CrtYd") (width 0.05) (tstamp 6832f754-a6e6-478a-bd86-858502b6adf6))
(fp_line (start 8.13 -5.71) (end -3.04 -5.71) (layer "F.CrtYd") (width 0.05) (tstamp 73f848b4-ade7-4987-86e9-cda67c99315b))
(fp_line (start -3.04 -5.71) (end -3.04 5.1) (layer "F.CrtYd") (width 0.05) (tstamp 7aafb32f-7d1e-405c-a119-d6e845ab6ed7))
(fp_line (start 7.62 -5.2) (end 7.62 4.6) (layer "F.Fab") (width 0.1) (tstamp 2adbad2b-46af-4caa-a651-e9f024a9fb8b))
(fp_line (start -2.04 4.6) (end -2.54 4.1) (layer "F.Fab") (width 0.1) (tstamp 4cd38139-85d8-4bb0-8ec5-44fb4adb00fa))
(fp_line (start 0.955 -1.138) (end -1.138 0.955) (layer "F.Fab") (width 0.1) (tstamp 5b176ccc-587a-4308-8c95-991bd5be9b68))
(fp_line (start -2.54 -2.3) (end 7.62 -2.3) (layer "F.Fab") (width 0.1) (tstamp 5b6af5a7-591e-4959-8c60-02f298d40677))
(fp_line (start 6.035 -1.138) (end 3.943 0.955) (layer "F.Fab") (width 0.1) (tstamp 6a3fe70d-92b9-4ad1-8a4f-a944ee5522b9))
(fp_line (start 1.138 -0.955) (end -0.955 1.138) (layer "F.Fab") (width 0.1) (tstamp 8ae55606-cfbf-467b-98ad-b305173bd9ee))
(fp_line (start 6.218 -0.955) (end 4.126 1.138) (layer "F.Fab") (width 0.1) (tstamp 9da855b0-f953-4d94-ac15-68c62fcf943f))
(fp_line (start 7.62 4.6) (end -2.04 4.6) (layer "F.Fab") (width 0.1) (tstamp c04e50f2-d5aa-4a23-a606-4b4ca7d7a313))
(fp_line (start -2.54 -5.2) (end 7.62 -5.2) (layer "F.Fab") (width 0.1) (tstamp c221eefe-1cf5-48d5-b941-f08de75c2fe3))
(fp_line (start -2.54 4.1) (end -2.54 -5.2) (layer "F.Fab") (width 0.1) (tstamp cf4ac78b-a9ac-469c-829f-72c6f81e6f21))
(fp_line (start -2.54 4.1) (end 7.62 4.1) (layer "F.Fab") (width 0.1) (tstamp de589fca-e528-4d9d-88c3-9fb59d406d80))
(fp_line (start -2.54 2.6) (end 7.62 2.6) (layer "F.Fab") (width 0.1) (tstamp e254fbf4-1596-4274-a2c3-cd2c87e0c836))
(fp_circle (center 0 0) (end 1.5 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 5dfa8f9a-6e69-407d-b1ae-eb50492ca459))
(fp_circle (center 5.08 0) (end 6.58 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 8231f06e-2ee3-4905-af5e-c0d72e3085eb))
(pad "1" thru_hole rect (at 0 0 90) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 658cbe5a-e7f5-4f80-bc14-54c2ecfeca7c))
(pad "2" thru_hole circle (at 5.08 0 90) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 9 "/Vfan") (pinfunction "Pin_2") (pintype "passive") (tstamp 8198e596-d523-4ba3-91d9-8f9c41f56b37))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 283ed2be-f188-4938-9d07-b9e8bad5f0d4)
(at 106.35 99.68 90)
(descr "Capacitor SMD 0805 (2012 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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "FanExpander.kicad_sch")
(property "Sheetname" "")
(path "/009ee5aa-243c-4613-9570-bf3c1862752e")
(attr smd)
(fp_text reference "C2" (at -2.54 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a82c7da7-6077-4900-b925-87315eda8158)
)
(fp_text value "1 uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 70b53718-ed58-494c-b8a6-19eb974c07c4)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 6213c200-cc8a-481c-883f-35278b9518d8)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 7d595168-bd99-442a-961b-c33b87293e60))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp c0520a89-1ce8-4759-a56c-c54f903f83db))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 13a33b3d-968c-43e3-9f2a-66108de201d4))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 4a1069b5-b54d-43c2-8699-49962b3c7a7c))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 7a86bf7d-69ff-410f-8ee7-d09db8d8408f))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp b9cddc00-5d9b-447c-bc13-6730f163df7a))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 005f6ea1-3526-4e97-86e4-41388e3bc145))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 0eaea668-c353-4e5e-8f10-4648bd7737ed))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp ab276e50-f838-4362-9aac-7d16f40393c4))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp bc3f6e1f-c81e-4889-865a-0e223a5a22e2))
(pad "1" smd roundrect (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "+3V3") (pintype "passive") (tstamp 4b3ca595-07d8-471d-a599-10e87e77b20e))
(pad "2" smd roundrect (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 29c8820e-a6aa-4b1b-a048-868ed62704c1))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 3dd67e23-151f-4030-9f89-07540f8b3bb5)
(at 100 104.191)
(descr "Capacitor SMD 0805 (2012 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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "FanExpander.kicad_sch")
(property "Sheetname" "")
(path "/0838b985-063e-4369-a6c6-14e374fe450e")
(attr smd)
(fp_text reference "C3" (at 0 1.905) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3da2a955-efa4-4cba-97bf-5c3895b6ca21)
)
(fp_text value "0.1 uF" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 784b6458-3ae8-48f4-9482-731714d7927e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp c47c1013-522e-4afa-9dd5-776b2bbec89a)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 1b0f55f9-5fa5-489c-9db2-e63c29ecdd31))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 56ba8f65-c244-4416-8ed2-b5691db880ab))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 44d6780b-0f7d-4066-bfb2-bff50f00afa0))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 95a9cb1b-c155-4d37-a2b5-cecc3f928209))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp eb8e38cd-dc17-4593-889c-e9f58005f6e7))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp f01a08c4-d9f1-4838-af18-b59bca81082c))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 0c83fcb5-bcc7-4f84-8394-d4fc9899e233))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 74d431fd-cb2a-4a57-b8ad-03906426963d))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 92832a32-dcb2-4058-8ad9-237ebe5ab0e8))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp e584f27e-45dd-4fdd-8c50-c7400e4b2ab2))
(pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(C3-Pad1)") (pintype "passive") (tstamp e16db058-fa43-40bf-9cff-c2ed4fab6ab5))
(pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(C3-Pad2)") (pintype "passive") (tstamp 60b868e3-a9f8-4d20-ae5a-40ca53af4adb))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:SO-8_3.9x4.9mm_P1.27mm" (layer "F.Cu")
(tedit 5D9F72B1) (tstamp 462f3238-fbc0-42d6-b76e-a63d29cc32e1)
(at 100 100)
(descr "SO, 8 Pin (https://www.nxp.com/docs/en/data-sheet/PCF8523.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SO SO")
(property "Sheetfile" "FanExpander.kicad_sch")
(property "Sheetname" "")
(path "/9d3545bb-4848-4d9f-a3e2-b087c5a7b710")
(attr smd)
(fp_text reference "U1" (at 0 -3.4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2fdba96d-8ce8-4d3e-9e54-485e4b754b6d)
)
(fp_text value "MAX6684" (at 0 3.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba3030b2-37eb-4eb2-b7ee-c2f135251592)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.98 0.98) (thickness 0.15)))
(tstamp becc5b0d-0352-4ad7-ac5e-da033ca0b239)
)
(fp_line (start 0 2.56) (end -1.95 2.56) (layer "F.SilkS") (width 0.12) (tstamp 1cd4cd25-b3d1-4eb2-9ee3-b812e12c968e))
(fp_line (start 0 -2.56) (end -3.45 -2.56) (layer "F.SilkS") (width 0.12) (tstamp 4d44b129-c661-445a-acd1-16280b0de7da))
(fp_line (start 0 -2.56) (end 1.95 -2.56) (layer "F.SilkS") (width 0.12) (tstamp 68d14432-223b-47bb-bd26-18873cfb3df2))
(fp_line (start 0 2.56) (end 1.95 2.56) (layer "F.SilkS") (width 0.12) (tstamp 81ee098e-cdb0-4a5b-b358-35fb3f1d56ba))
(fp_line (start 3.7 2.7) (end 3.7 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 5351e629-ee47-4afd-b6e5-171421799e39))
(fp_line (start -3.7 2.7) (end 3.7 2.7) (layer "F.CrtYd") (width 0.05) (tstamp 5a1ce9b7-22a6-4b53-b971-3e729d539c8a))
(fp_line (start 3.7 -2.7) (end -3.7 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 5bf810e2-0301-40b2-b0db-351f308659e8))
(fp_line (start -3.7 -2.7) (end -3.7 2.7) (layer "F.CrtYd") (width 0.05) (tstamp fe2c9782-2ff0-473c-98b0-ea9a985143fb))
(fp_line (start 1.95 -2.45) (end 1.95 2.45) (layer "F.Fab") (width 0.1) (tstamp 3a2b4e4a-e4df-4836-8ba6-f50f59704c20))
(fp_line (start -0.975 -2.45) (end 1.95 -2.45) (layer "F.Fab") (width 0.1) (tstamp 50d6612f-7f92-41c4-9e0a-c8c46e77f4d3))
(fp_line (start 1.95 2.45) (end -1.95 2.45) (layer "F.Fab") (width 0.1) (tstamp 97cc39d8-c871-4e37-a9ca-8f3a0ea043e7))
(fp_line (start -1.95 2.45) (end -1.95 -1.475) (layer "F.Fab") (width 0.1) (tstamp c195be24-c988-452d-b72d-6611cbe671f7))
(fp_line (start -1.95 -1.475) (end -0.975 -2.45) (layer "F.Fab") (width 0.1) (tstamp ed2acee5-b6b0-4723-bb74-ad84b2a662e5))
(pad "1" smd roundrect (at -2.575 -1.905) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "FanGround") (pinfunction "Sense") (pintype "input") (tstamp 0887e962-8f08-410d-9589-9308e22a7936))
(pad "2" smd roundrect (at -2.575 -0.635) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "~{FAIL} Out") (pinfunction "~{Fail}") (pintype "output") (tstamp e4d2c258-274a-4398-b6a0-528d81ed8508))
(pad "3" smd roundrect (at -2.575 0.635) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "output") (tstamp 24edf58e-a5f8-4553-99c5-1a11459c3da5))
(pad "4" smd roundrect (at -2.575 1.905) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(C3-Pad1)") (pinfunction "FC-") (pintype "bidirectional") (tstamp dc00fa94-a583-43b2-92cf-d179c920f4b4))
(pad "5" smd roundrect (at 2.575 1.905) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(C3-Pad2)") (pinfunction "FC+") (pintype "bidirectional") (tstamp 159574a9-ecec-48bb-adb0-3dc9e65d4e79))
(pad "6" smd roundrect (at 2.575 0.635) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "+3V3") (pinfunction "VCC") (pintype "input") (tstamp 82a9a530-e248-4dc9-896c-25f6d73fe113))
(pad "7" smd roundrect (at 2.575 -0.635) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "FanEn") (pinfunction "~{OFF}") (pintype "input") (tstamp a5c7f988-1d57-48d4-82d1-1deaeac9e184))
(pad "8" smd roundrect (at 2.575 -1.905) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "PGND") (pintype "output") (tstamp 853b4aa5-bf64-4f10-b1c5-492731c47e3b))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SO-8_3.9x4.9mm_P1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 4fa99099-f9f2-4dd5-ac40-ec35aef9f960)
(at 108.128 108.128 -90)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "FanExpander.kicad_sch")
(property "Sheetname" "")
(path "/78fa9d0a-b319-40f5-af5c-9b67602adf03")
(attr smd)
(fp_text reference "D2" (at 2.54 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 46f1fe2c-bc01-4b14-852f-f73c7cee1411)
)
(fp_text value "Power LED" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp de759948-161e-4bbe-93f4-670a576de500)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp b36ced1f-5291-481a-8fe7-e37301bca3e6)
)
(fp_line (start -1.685 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp 2ac31afe-6dde-403d-bbdc-3366c8b144f8))
(fp_line (start -1.685 -0.96) (end -1.685 0.96) (layer "F.SilkS") (width 0.12) (tstamp 3972d90f-ee24-4cf5-8d82-ff4abccf2f2b))
(fp_line (start 1 -0.96) (end -1.685 -0.96) (layer "F.SilkS") (width 0.12) (tstamp abaf618d-6655-4799-acfb-78bd7f6588da))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 1cf58251-c1b2-4126-887d-6d7eeec86d3e))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 36ab2ee8-a550-4312-900e-fe60a1ab52df))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 906df0a0-5839-47c0-b332-cec00bfc8d50))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 9399a2b1-4c2e-41f3-8f9a-0a23f3b4fe50))
(fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 33529587-bbb4-4ca0-bcdf-15fd64295461))
(fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 345d0db5-afa8-4790-839b-293d8c7171b3))
(fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 907bca71-7218-4f03-b4bd-586121fcf8e0))
(fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp af344df5-f8f1-4300-8c40-51d1681a9cb2))
(fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp c469846c-a104-4bfc-aae8-66d18a7e7de0))
(pad "1" smd roundrect (at -0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "K") (pintype "passive") (tstamp f48f0041-ce42-4bd4-9cbf-e7a61f40b63d))
(pad "2" smd roundrect (at 0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(D2-Pad2)") (pinfunction "A") (pintype "passive") (tstamp bce33354-18a7-44b2-9dba-ee85e434d6ee))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 719303cc-9ddf-4f19-9751-b8db3875f499)
(at 91.872 108.128 -90)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "FanExpander.kicad_sch")
(property "Sheetname" "")
(path "/3c8efb79-0043-42e2-977a-efca00db724c")
(attr smd)
(fp_text reference "D1" (at 2.54 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c6750bbb-1f60-4923-a832-20fb722c1b93)
)
(fp_text value "~{FAIL} LED" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3adb9496-2d9f-40cf-b330-cf802996ea7f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 2b670198-954c-4e3b-b1b0-4485bbd2f4ee)
)
(fp_line (start 1 -0.96) (end -1.685 -0.96) (layer "F.SilkS") (width 0.12) (tstamp 89b81b16-224b-4483-a357-720a8e6eb208))
(fp_line (start -1.685 -0.96) (end -1.685 0.96) (layer "F.SilkS") (width 0.12) (tstamp a43ae97f-ff8c-43dd-8d6d-82a22f1be9b5))
(fp_line (start -1.685 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp e671ffe9-4ebb-42bd-be8d-cda9a798e138))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4126d392-495e-4ef5-9351-6f700c8637bc))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp a092ea0d-146f-427f-adaf-641182334974))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp c77b66c0-41f5-4d31-abb8-e152e2d28a11))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp ff870511-3a90-49f1-9990-5aec7ad35822))
(fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 63a30107-e64a-4f1f-b117-b90cb84b149e))
(fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 6a82e1e6-8e23-40fe-9f7f-da90c0712b96))
(fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp a2c6281c-1798-4c93-a973-786fd5788e7e))
(fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp a43a5da1-e224-4f65-b747-f67973f2af88))
(fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp cacc113d-885e-464c-bed1-96200200e5f6))
(pad "1" smd roundrect (at -0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "~{FAIL} Out") (pinfunction "K") (pintype "passive") (tstamp 202e566d-5dd9-4e58-8d82-bf96da938851))
(pad "2" smd roundrect (at 0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 0c9e7917-e0a0-46fb-b233-2640231d0e2c))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal" (layer "F.Cu")
(tedit 5B294EBC) (tstamp 8f38d61d-85a4-4a20-aa88-865d9c66b0b4)
(at 84.76 97.46 -90)
(descr "Terminal Block Phoenix MKDS-1,5-2-5.08, 2 pins, pitch 5.08mm, size 10.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MKDS-1,5-2-5.08 pitch 5.08mm size 10.2x9.8mm^2 drill 1.3mm pad 2.6mm")
(property "Sheetfile" "FanExpander.kicad_sch")
(property "Sheetname" "")
(path "/43f72311-9d74-4379-aff9-849c5d7414c8")
(attr through_hole)
(fp_text reference "J2" (at 6.477 -4.064) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 806b945e-fc59-4641-ae29-5257d31d3d70)
)
(fp_text value "Fan" (at 2.54 5.66 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5df1d574-4ca4-471a-801a-bb2b89833513)
)
(fp_text user "${REFERENCE}" (at 2.54 3.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 24cb67fc-f0c9-4f6e-88c1-7636ab854c5e)
)
(fp_line (start 6.355 -1.069) (end 6.308 -1.023) (layer "F.SilkS") (width 0.12) (tstamp 0f28d312-e674-493b-bb0d-24fe0fb55a5f))
(fp_line (start -2.6 -2.301) (end 7.68 -2.301) (layer "F.SilkS") (width 0.12) (tstamp 290311ab-2acc-454a-9a59-6cba16c0a08d))
(fp_line (start -2.6 4.66) (end 7.68 4.66) (layer "F.SilkS") (width 0.12) (tstamp 2cad3fe2-0f3b-467e-9c49-f271aa1ec49b))
(fp_line (start -2.6 -5.261) (end -2.6 4.66) (layer "F.SilkS") (width 0.12) (tstamp 347b3477-2f16-4a24-a474-1e5febecef0e))
(fp_line (start -2.84 4.9) (end -2.34 4.9) (layer "F.SilkS") (width 0.12) (tstamp 58eb1f49-1e5e-4c0c-97da-fb971f13fe25))
(fp_line (start -2.6 -5.261) (end 7.68 -5.261) (layer "F.SilkS") (width 0.12) (tstamp 6ae74015-156b-4b08-b0b7-49ff17fb760f))
(fp_line (start -2.6 4.1) (end 7.68 4.1) (layer "F.SilkS") (width 0.12) (tstamp 6ddca9c6-d93f-48af-8707-e3012416640e))
(fp_line (start -2.84 4.16) (end -2.84 4.9) (layer "F.SilkS") (width 0.12) (tstamp 951f92e3-c509-40e8-964b-37dd7e0e82bf))
(fp_line (start 6.15 -1.275) (end 6.115 -1.239) (layer "F.SilkS") (width 0.12) (tstamp b0f642eb-e44e-4747-9d08-48aa7b02d88d))
(fp_line (start -2.6 2.6) (end 7.68 2.6) (layer "F.SilkS") (width 0.12) (tstamp b89754be-9738-4e5f-8e95-e260ee696903))
(fp_line (start 7.68 -5.261) (end 7.68 4.66) (layer "F.SilkS") (width 0.12) (tstamp de6a8a79-ffb1-408e-99f7-331b8dd7ba96))
(fp_line (start 3.853 1.023) (end 3.806 1.069) (layer "F.SilkS") (width 0.12) (tstamp f28095b2-5bdd-4916-8fd7-8ee2cde7e2ae))
(fp_line (start 4.046 1.239) (end 4.011 1.274) (layer "F.SilkS") (width 0.12) (tstamp f711db5e-77b0-4494-90e8-aecb55e572ba))
(fp_arc (start 0.683318 1.534756) (mid 0.349292 1.643288) (end 0 1.68) (layer "F.SilkS") (width 0.12) (tstamp 4df412ae-87c4-4ec7-8738-a6a72291cb75))
(fp_arc (start -0.683042 -1.535427) (mid 0.000524 -1.680501) (end 0.684 -1.535) (layer "F.SilkS") (width 0.12) (tstamp 5c946c69-aabf-45dc-9f47-f37983b2dc53))
(fp_arc (start 0.028805 1.680253) (mid -0.335551 1.646659) (end -0.684 1.535) (layer "F.SilkS") (width 0.12) (tstamp 642badde-3a43-415c-9e9a-0400e9ad9539))
(fp_arc (start 1.535427 -0.683042) (mid 1.680501 0.000524) (end 1.535 0.684) (layer "F.SilkS") (width 0.12) (tstamp 80bbd906-780d-49d4-9591-df6c1a36ee85))
(fp_arc (start -1.535427 0.683042) (mid -1.680501 -0.000524) (end -1.535 -0.684) (layer "F.SilkS") (width 0.12) (tstamp 84ba6563-aa9a-4a44-a402-ba732fd7b0d2))
(fp_circle (center 5.08 0) (end 6.76 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 3c0e161b-77de-41cd-8057-090b9a285b00))
(fp_line (start 8.13 -5.71) (end -3.04 -5.71) (layer "F.CrtYd") (width 0.05) (tstamp 111becb9-cb80-417e-8fbe-97b6e8030333))
(fp_line (start 8.13 5.1) (end 8.13 -5.71) (layer "F.CrtYd") (width 0.05) (tstamp 2ab6f680-d446-4f8f-9f8c-8ce4722c87d3))
(fp_line (start -3.04 5.1) (end 8.13 5.1) (layer "F.CrtYd") (width 0.05) (tstamp 461c24bd-c29b-4d81-bd76-c5414eb04a70))
(fp_line (start -3.04 -5.71) (end -3.04 5.1) (layer "F.CrtYd") (width 0.05) (tstamp 6b065e8e-fef9-4b30-824e-7d9ccd606772))
(fp_line (start 6.035 -1.138) (end 3.943 0.955) (layer "F.Fab") (width 0.1) (tstamp 0c64a8a2-476d-4ce5-9a4f-cce66f41d837))
(fp_line (start -2.04 4.6) (end -2.54 4.1) (layer "F.Fab") (width 0.1) (tstamp 1a8a76a0-6023-468a-bf57-4aeb52d09b1d))
(fp_line (start -2.54 4.1) (end 7.62 4.1) (layer "F.Fab") (width 0.1) (tstamp 1df88bde-ee9c-4b31-90f5-5e91fa88d17a))
(fp_line (start 0.955 -1.138) (end -1.138 0.955) (layer "F.Fab") (width 0.1) (tstamp 2022f2c2-2d52-4762-8871-c3aaafed73b6))
(fp_line (start -2.54 -2.3) (end 7.62 -2.3) (layer "F.Fab") (width 0.1) (tstamp 5fc32f47-b50c-49bd-8a82-dd68c0426109))
(fp_line (start -2.54 2.6) (end 7.62 2.6) (layer "F.Fab") (width 0.1) (tstamp 713f8bf8-d771-4862-bb18-7b6f3b027ba3))
(fp_line (start 7.62 -5.2) (end 7.62 4.6) (layer "F.Fab") (width 0.1) (tstamp 9661476a-e3cc-43ad-bbdf-24b6874ef400))
(fp_line (start 7.62 4.6) (end -2.04 4.6) (layer "F.Fab") (width 0.1) (tstamp b73bc21e-e4fc-434c-9782-67f831579d00))
(fp_line (start -2.54 4.1) (end -2.54 -5.2) (layer "F.Fab") (width 0.1) (tstamp c21b20df-9e93-4f8b-bf07-89242b210ced))
(fp_line (start 6.218 -0.955) (end 4.126 1.138) (layer "F.Fab") (width 0.1) (tstamp c78f65fa-a030-469f-965a-f81d8f3afba6))
(fp_line (start -2.54 -5.2) (end 7.62 -5.2) (layer "F.Fab") (width 0.1) (tstamp cc0d08d7-1c65-4883-9efb-f30fa51da8b0))
(fp_line (start 1.138 -0.955) (end -0.955 1.138) (layer "F.Fab") (width 0.1) (tstamp fec985c7-f284-4d68-8727-af7eebd8b5f8))
(fp_circle (center 5.08 0) (end 6.58 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 165068c6-cae0-4fb2-b201-2f3f8a0b28a0))
(fp_circle (center 0 0) (end 1.5 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 7f5c5a33-bffa-44be-b723-f59e60ea9e4b))
(pad "1" thru_hole rect (at 0 0 270) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 9 "/Vfan") (pinfunction "Pin_1") (pintype "passive") (tstamp b90d0267-ce26-4e19-a4c7-fd16cc7a521c))
(pad "2" thru_hole circle (at 5.08 0 270) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 2 "FanGround") (pinfunction "Pin_2") (pintype "passive") (tstamp a76c0baf-6e69-4f8d-a142-018c46047833))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 91c9976e-33f3-4776-850e-36ee5d251977)
(at 103.81 104.191)
(descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x01 2.54mm single row")
(property "Sheetfile" "FanExpander.kicad_sch")
(property "Sheetname" "")
(path "/6a256a51-7817-4775-9077-a47942a0f113")
(attr through_hole)
(fp_text reference "J5" (at 0 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef36da6c-b409-4756-be92-54a96426032e)
)
(fp_text value "FC+" (at 0 2.33) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8db28752-04fe-4bac-819e-f19842492596)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp db84bba8-3ab8-4ee7-bbef-fc720fdb5fb7)
)
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 2621aeaa-9788-4950-9c8a-57743e174960))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 26c50088-80ff-43fa-a13b-801600e7555b))
(fp_line (start -1.33 1.33) (end 1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp 979784e6-6813-4ec3-b827-3fde402e007b))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b4d5ac25-a764-4661-8e59-75c6a5d8b7e8))
(fp_line (start -1.33 1.27) (end -1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp dad8a6e3-ca6f-4733-9963-045950c983e5))
(fp_line (start 1.33 1.27) (end 1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp edaa690e-7366-4177-92ba-daa3f297ce1e))
(fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 03de85dc-b128-49ac-8b1c-15f0b91dca0a))
(fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer "F.CrtYd") (width 0.05) (tstamp 5af0907a-cc5c-4a2d-827a-e091ca759470))
(fp_line (start -1.8 1.8) (end 1.8 1.8) (layer "F.CrtYd") (width 0.05) (tstamp 62a86672-b56e-46bd-bc25-5c0442dd543c))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp fed927fe-eafb-4471-ac5d-756725ea174d))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 00614f02-5f74-445d-b8a3-482b8dcb3aea))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer "F.Fab") (width 0.1) (tstamp 35318ab5-9d7c-4bdd-a72a-c62185738587))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 39d4d534-3997-4fb4-b0b6-d0e644ff29b2))
(fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer "F.Fab") (width 0.1) (tstamp 51854738-fa9c-4052-b2b8-d2dde367270a))
(fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp c7d063b0-344e-43df-a36a-e52b467e2d0c))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "Net-(C3-Pad2)") (pinfunction "Pin_1") (pintype "passive") (tstamp 97c50482-6541-4532-8eba-6810ebff5ba3))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_JST:JST_XH_B4B-XH-A_1x04_P2.50mm_Vertical" (layer "F.Cu")
(tedit 5C28146C) (tstamp a58b425b-6fc3-4a86-ae11-a84decf83c5a)
(at 103.75 113 180)
(descr "JST XH series connector, B4B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator")
(tags "connector JST XH vertical")
(property "Sheetfile" "FanExpander.kicad_sch")
(property "Sheetname" "")
(path "/7445db70-84aa-4b8f-ac31-dd21ca55d697")
(attr through_hole)
(fp_text reference "J1" (at -0.822 1.824) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a203993-fbf3-470f-ab7c-4d95a24716de)
)
(fp_text value "Conn_01x04" (at 3.75 4.6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 719e34f3-a935-4f7b-982b-9c19691e49e1)
)
(fp_text user "${REFERENCE}" (at 3.75 2.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 619cf9e3-25a5-4699-bab6-469aedc62cab)
)
(fp_line (start -1.8 2.75) (end 3.75 2.75) (layer "F.SilkS") (width 0.12) (tstamp 05bcb62f-e639-408b-893f-71715cd8f94a))
(fp_line (start -2.56 -2.46) (end -2.56 3.51) (layer "F.SilkS") (width 0.12) (tstamp 05bdee95-c42e-4b6f-9645-2ec41619b2fe))
(fp_line (start -2.85 -2.75) (end -2.85 -1.5) (layer "F.SilkS") (width 0.12) (tstamp 0afa5357-c57e-42cd-b476-72d99f39fe9f))
(fp_line (start 6.75 -1.7) (end 6.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 0b2da3ef-2445-490e-b668-8ae41309ee36))
(fp_line (start 10.05 -1.7) (end 10.05 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 0fe73d7c-983e-4368-b1af-2c7091659c0b))
(fp_line (start 9.3 -0.2) (end 9.3 2.75) (layer "F.SilkS") (width 0.12) (tstamp 10a5cee8-0f6f-4aac-80c1-915f5fcf52f0))
(fp_line (start -0.75 -2.45) (end -2.55 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 11d75bf4-5480-4a2f-baa3-58a51cac0470))
(fp_line (start 8.25 -1.7) (end 10.05 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 15fcf661-f7ee-4981-92aa-29fa30316a60))
(fp_line (start 10.05 -2.45) (end 8.25 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 2652ca87-c786-4061-81b7-9315b84b5d2c))
(fp_line (start 8.25 -2.45) (end 8.25 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 36786f1c-5181-4b16-85f0-7a9b5e48989f))
(fp_line (start -2.55 -1.7) (end -0.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 3a13a33d-0399-4bf3-800a-72a2421cb176))
(fp_line (start 0.75 -1.7) (end 6.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 446bf57c-8a66-4199-8c1c-73dc66bbce20))
(fp_line (start 10.06 3.51) (end 10.06 -2.46) (layer "F.SilkS") (width 0.12) (tstamp 55dcb42c-b26a-49b8-8a1f-cc80851d2e4d))
(fp_line (start -1.8 -0.2) (end -1.8 2.75) (layer "F.SilkS") (width 0.12) (tstamp 5e27c7e3-130d-477a-b693-9d7d6d05e3e3))
(fp_line (start 10.05 -0.2) (end 9.3 -0.2) (layer "F.SilkS") (width 0.12) (tstamp 7da9f5c8-a062-40f4-88c6-61890bbc359f))
(fp_line (start 9.3 2.75) (end 3.75 2.75) (layer "F.SilkS") (width 0.12) (tstamp 99772301-d596-41c7-ac2d-d8320c28783c))
(fp_line (start -2.56 3.51) (end 10.06 3.51) (layer "F.SilkS") (width 0.12) (tstamp b3d89762-54ee-4dc0-8c86-98a5d2a2dca5))
(fp_line (start -1.6 -2.75) (end -2.85 -2.75) (layer "F.SilkS") (width 0.12) (tstamp c2288b71-0313-4831-b20b-64c01771a6a6))
(fp_line (start 6.75 -2.45) (end 0.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp c50a4250-2225-4797-b4a1-1bc3d1138c0f))
(fp_line (start 10.06 -2.46) (end -2.56 -2.46) (layer "F.SilkS") (width 0.12) (tstamp cbbec9dc-3ece-41ba-b187-0bad09b173d6))
(fp_line (start -2.55 -0.2) (end -1.8 -0.2) (layer "F.SilkS") (width 0.12) (tstamp df425070-f6bd-4dc2-bc2c-ec8e49ad418d))
(fp_line (start 0.75 -2.45) (end 0.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp e8a669b7-c663-4fa5-9b1f-ce9eb01dc726))
(fp_line (start -0.75 -1.7) (end -0.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp f138c51d-0ee0-424a-a154-6e86a60a846b))
(fp_line (start -2.55 -2.45) (end -2.55 -1.7) (layer "F.SilkS") (width 0.12) (tstamp f8deac2f-522c-4605-b44f-70351a68e5b0))
(fp_line (start -2.95 3.9) (end 10.45 3.9) (layer "F.CrtYd") (width 0.05) (tstamp 4b91a28b-e778-4691-8d2b-bb09bc10e8e8))
(fp_line (start 10.45 3.9) (end 10.45 -2.85) (layer "F.CrtYd") (width 0.05) (tstamp 52194c94-e7df-49ff-beb1-04a1b4f2344e))
(fp_line (start 10.45 -2.85) (end -2.95 -2.85) (layer "F.CrtYd") (width 0.05) (tstamp b867fb16-61a5-4031-9766-9c1c9e8171a2))
(fp_line (start -2.95 -2.85) (end -2.95 3.9) (layer "F.CrtYd") (width 0.05) (tstamp c1d15993-12e6-4c0d-a72e-2f76d98a62f2))
(fp_line (start -0.625 -2.35) (end 0 -1.35) (layer "F.Fab") (width 0.1) (tstamp 6af91ec1-f5c6-4c49-998d-22cb7b1bdc03))
(fp_line (start 9.95 -2.35) (end -2.45 -2.35) (layer "F.Fab") (width 0.1) (tstamp 9d12ed3c-0713-4da7-86c7-5331347f3457))
(fp_line (start -2.45 -2.35) (end -2.45 3.4) (layer "F.Fab") (width 0.1) (tstamp aac506cf-4156-47e4-9980-1111a3bb6bcc))
(fp_line (start 0 -1.35) (end 0.625 -2.35) (layer "F.Fab") (width 0.1) (tstamp ac975f7b-5c1b-42e6-a54b-1829692bd60c))
(fp_line (start -2.45 3.4) (end 9.95 3.4) (layer "F.Fab") (width 0.1) (tstamp df0a2432-7a90-46bd-b54d-8bf995c9c0f2))
(fp_line (start 9.95 3.4) (end 9.95 -2.35) (layer "F.Fab") (width 0.1) (tstamp e92c974a-b07f-4799-a79e-f281f85dbc1a))
(pad "1" thru_hole roundrect (at 0 0 180) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask) (roundrect_rratio 0.1470588235)
(net 6 "+3V3") (pinfunction "Pin_1") (pintype "passive") (tstamp 6e18bff7-8b21-4bb4-8a05-3a319b07518f))
(pad "2" thru_hole oval (at 2.5 0 180) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask)
(net 8 "FanEn") (pinfunction "Pin_2") (pintype "passive") (tstamp 95a40d19-41c6-4680-9b37-9cb1bed1a413))
(pad "3" thru_hole oval (at 5 0 180) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask)
(net 3 "~{FAIL} Out") (pinfunction "Pin_3") (pintype "passive") (tstamp 720f9518-b0d8-4879-8ffc-0a3335e2eb9d))
(pad "4" thru_hole oval (at 7.5 0 180) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp 42f4679b-2c4d-49cf-8f9e-afb5127a3112))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B4B-XH-A_1x04_P2.50mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp b4501435-1b74-4814-ac8d-457d48a8c57b)
(at 89.332 108.128 -90)
(descr "Resistor SMD 0805 (2012 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" "FanExpander.kicad_sch")
(property "Sheetname" "")
(path "/bfe0cc57-3c62-4d4e-b119-5e8302e94e4d")
(attr smd)
(fp_text reference "R2" (at 2.54 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9b7be77a-2656-471e-885e-8c6c59fe59f7)
)
(fp_text value "1K" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f87c0f2d-c04c-46a9-b58e-d24759249a2d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp d039718a-5f93-4d2d-b957-a40b11652989)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 8217ca7d-977c-4985-a684-eea82e5113b4))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp feb38b83-6d1c-4038-a568-147252bfbe12))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4821a0f1-0757-49b5-bc91-a0ccf3e9f548))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 9e50feee-fd1e-48c9-aa44-dd6062da7f84))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp a8f15f81-c64f-4a6a-8184-eabd4f5daa6f))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp bdd60e70-d069-432f-96bc-1e17050cb723))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 150efa79-228d-47e2-89bf-fd8363924d0f))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp c36de2cd-62e2-4141-94ed-8598a4021bc0))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp d0583253-7f1c-498c-afba-93bf9b28c781))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp debb48c2-0606-4abf-b967-c5cd55bd0d6c))
(pad "1" smd roundrect (at -0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 6 "+3V3") (pintype "passive") (tstamp 1f3dd671-b973-4373-871e-23d23284bfad))
(pad "2" smd roundrect (at 0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 7 "Net-(D1-Pad2)") (pintype "passive") (tstamp 51957904-d257-41c5-8124-dcc959977230))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp d8ac61b3-a533-4f15-9856-f7b341d352a1)
(at 118 110)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(property "Sheetfile" "FanExpander.kicad_sch")
(property "Sheetname" "")
(path "/358b64a6-60e7-420f-afcd-fb2559690983")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H2" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c181c82-3856-46b2-8d6b-7ada0b0e0dbd)
)
(fp_text value "MountingHole" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a680daf-5077-4fe1-a6fb-381b32e17c20)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e50812bf-0199-4ce8-96e2-2acd9a19f7c3)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp a39b3356-a010-429a-a766-68905309a2a8))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 95b7f2da-98e3-4cce-ac19-d396a7cb212b))
(pad "" np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 7e469a82-52a7-4eb1-be03-bc9c0642b27e))
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp f352e561-93ae-4eda-af14-a930a36aa74a)
(at 110.668 108.128 -90)
(descr "Resistor SMD 0805 (2012 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" "FanExpander.kicad_sch")
(property "Sheetname" "")
(path "/9d8807e3-f82b-4f8a-8f8e-86296401e24c")
(attr smd)
(fp_text reference "R3" (at 2.54 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df68d577-4fdb-42a9-a618-f997c5cb205b)
)
(fp_text value "1K" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5e79d815-3e66-452c-bc9d-447f9c537736)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 818111a6-1429-497e-b8d7-f2616a7ec373)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 9ab92207-1da7-4613-a632-d3972813f57b))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp dbd136bb-61c9-4567-9827-33a734e5ddcc))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 00036662-fa99-4284-af32-cf49578c390a))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 02b7dc0f-ae19-4a97-a2ae-2d27bb773810))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 7cb6b52f-a428-4a6e-b5b7-84f253789f4d))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp eb8672c1-01f2-4628-93ed-ee7e8695390b))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 0206e765-825a-4e51-9371-9f239143e77c))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 0366978a-3e89-4bad-abec-cf07fade1137))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp c638678c-430a-49cf-a0d4-86651f3fbb2f))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp ff54cdc2-4b40-4994-8140-ac296a31bdc0))
(pad "1" smd roundrect (at -0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 6 "+3V3") (pintype "passive") (tstamp ce5b0dfe-37f0-4d1b-9f56-10ae411d36e6))
(pad "2" smd roundrect (at 0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 10 "Net-(D2-Pad2)") (pintype "passive") (tstamp 875855ef-0e49-4c33-b3c6-eba229f835d9))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp f36426ed-7479-4f20-ba5d-0f7f3108a945)
(at 93.65 98.095)
(descr "Capacitor SMD 0805 (2012 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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "FanExpander.kicad_sch")
(property "Sheetname" "")
(path "/39b5aacc-2a32-4b68-97f2-ffb6c36010a5")
(attr smd)
(fp_text reference "C1" (at 0 -1.817) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd08cf63-80f1-4a88-b3ea-950c9bf1164b)
)
(fp_text value "0.1 uF" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 160cb44e-5e81-454b-9642-f95193231b95)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 556af892-f4e4-492b-b72b-6477c8bec323)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp d5fec05f-99a8-472c-a775-2ec1b2b5bea9))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp f656a274-a08d-4499-8245-beb474616c55))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 2b3bf4ed-88d9-4ab0-910a-0ad2b3b622a5))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 3f72330a-26a9-4809-a923-58f7e3cfd4de))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 4fe3cd02-8864-4b3e-a1a0-2dfa4d191ca2))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 55e351e3-7efa-4d55-acad-86a345fc5120))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 49fbb162-ed97-4907-b60a-506613a9940b))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 790a7af5-fcf5-40e0-b396-fbdab7c5dbb1))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 9d3da282-0e78-426f-87a5-378da2e8e9cf))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp e15d097a-4761-479a-be84-b8e07d19b4c7))
(pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp a2b398e0-0116-42e4-b9c2-9636582e46d5))
(pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "FanGround") (pintype "passive") (tstamp fb66491d-bc49-47b5-a124-d31f60ba1b6d))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp fa5d9c89-54e0-49e6-a404-29eddf2326d4)
(at 96.19 104.191)
(descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x01 2.54mm single row")
(property "Sheetfile" "FanExpander.kicad_sch")
(property "Sheetname" "")
(path "/a48f2661-59b2-458b-b443-d7dfb3f60c5f")
(attr through_hole)
(fp_text reference "J4" (at 0 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ca6bed28-5471-4a76-b6aa-41bb1fbae087)
)
(fp_text value "FC-" (at 0 2.33) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d8e5be0d-d98f-406a-bb3b-e2b68228703b)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 783d99f0-9b1b-482f-8119-337c4a520061)
)
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 1e153892-978d-4400-8801-39c4a5561d8b))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 453a77ad-fac0-4cd4-9fca-6e04f8cfa3e5))
(fp_line (start -1.33 1.27) (end -1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp 5d0be09d-133e-4cac-b0d8-fd336835cc6c))
(fp_line (start -1.33 1.33) (end 1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp 660190eb-2890-4958-8da2-d63590e8e03c))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 8967a184-9ee6-4ceb-8e38-09ca452dd23c))
(fp_line (start 1.33 1.27) (end 1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp ff5ead9b-37b8-4bc9-9ac4-39775f57c6cf))
(fp_line (start -1.8 1.8) (end 1.8 1.8) (layer "F.CrtYd") (width 0.05) (tstamp 25f3023a-0b40-4b57-b672-1aea8836d4eb))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 7a961303-0ee0-4514-9c41-71f7612da80d))
(fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp b217b8c4-9da3-40f9-a62d-8788048abf37))
(fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer "F.CrtYd") (width 0.05) (tstamp b85d8111-c66c-4649-8ef3-173324d8dc2f))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 199f157d-6f84-41da-be4c-6e21ffdc4f00))
(fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 651c91fd-ec54-4600-b738-56cbf235205c))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 8e865536-7e57-40b8-97a2-c3d4b4b14caf))
(fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer "F.Fab") (width 0.1) (tstamp aa1a0bd5-2e16-4ae4-84c6-ff71de2d0c53))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer "F.Fab") (width 0.1) (tstamp acbae352-7edb-481c-9de1-1fbd99403011))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "Net-(C3-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 649e27c1-a08d-4446-a16b-cdabdc592f17))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp fc98aaf7-0aba-4c7e-a96d-56e31c31a588)
(at 93.65 101.778 180)
(descr "Resistor SMD 0805 (2012 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" "FanExpander.kicad_sch")
(property "Sheetname" "")
(path "/44ab2738-42c8-4296-b189-ca4564aa7d7c")
(attr smd)
(fp_text reference "R1" (at 0 -2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 73917165-0d82-4691-91ca-2eb1b8bbe05e)
)
(fp_text value "10K" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2923d83c-3334-4b85-acfa-e9f2eb6f5eb5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 4cdd8415-dbde-4f4a-9692-de5bfb341275)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 87098d73-0d35-4a8f-aa7f-ade9272dc761))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 87e4b1bb-0b21-4bc6-b11f-269a3347496b))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 1d64fb24-a192-4276-96bc-30811b5dbebf))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 6f9df934-4054-4d8a-b681-1657a9279a59))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp ae39d000-e1da-4f40-b995-9482be0f1de9))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp fb847691-a236-48f0-9f44-65a418dab540))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 0270c5c4-c68e-47b7-a6f1-50651981be2d))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 09ab9b2a-26ef-4942-ba61-f8a6673867aa))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 755ad553-6d1c-4617-8f56-6e9d2cd4d51f))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp ff355897-ead3-4120-8dcb-1bb00ca0370c))
(pad "1" smd roundrect (at -0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 3 "~{FAIL} Out") (pintype "passive") (tstamp 372eb80c-116e-4b19-abae-92abb6d35e81))
(pad "2" smd roundrect (at 0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 6 "+3V3") (pintype "passive") (tstamp e4da03fa-98df-4f6e-905c-6338b6b66b7e))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp fdc927f3-9ea5-4abb-b957-1dbde7dca836)
(at 82 110)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(property "Sheetfile" "FanExpander.kicad_sch")
(property "Sheetname" "")
(path "/8026f3b6-9b96-4268-b80a-29bf4249fe41")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H1" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a49b3da8-6010-4095-aa91-6b927d37e1a9)
)
(fp_text value "MountingHole" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9397f066-146e-4896-a893-48ef11276451)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d50411b2-0b2f-41b7-bf8d-fb8f1d6295a1)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 27907456-675f-4372-8456-3255fdd1a95d))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 116dcb13-d6f5-40e1-b835-53753121c5b4))
(pad "" np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp b85d2401-b9b9-4c27-b2e2-c9d9ab116d00))
)
(gr_line (start 118 110) (end 100 110) (layer "Eco1.User") (width 0.15) (tstamp 184d61af-e7d3-4ad9-b061-927cbe78a8b7))
(gr_line (start 115.24 100) (end 100 100) (layer "Eco1.User") (width 0.15) (tstamp 3c470d2a-69a1-4c82-b768-36d9dd03c208))
(gr_line (start 100 100) (end 100 110) (layer "Eco1.User") (width 0.15) (tstamp 8aa9afb7-471d-4cf3-a9a9-43471966b8fc))
(gr_line (start 100 100) (end 84.76 100) (layer "Eco1.User") (width 0.15) (tstamp f5df2f96-0b2b-44c4-a278-36079decc514))
(gr_rect (start 77 92) (end 123 116) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp 2d233d57-736e-4e68-8e1d-101d5cda6c1c))
(gr_text "Fan Power In" (at 115.24 93.65) (layer "F.SilkS") (tstamp 037e79db-99bb-4660-ac0b-2b6bb885fc10)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "POWER\n" (at 111.684 113.716) (layer "F.SilkS") (tstamp 0536edbb-de9a-4d13-80f3-0c494aa5226b)
(effects (font (size 1.75 1.75) (thickness 0.3)))
)
(gr_text "Fan Out" (at 84.76 93.65) (layer "F.SilkS") (tstamp 0d67969d-f2ca-4c8a-9bbb-1c89d07202cf)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "+" (at 78.41 96.19) (layer "F.SilkS") (tstamp 1db83db8-cf6a-4135-9c07-2a2d843dc6ee)
(effects (font (size 2 2) (thickness 0.3)))
)
(gr_text "-" (at 78.41 103.81) (layer "F.SilkS") (tstamp 20f40377-497a-471d-8ef5-782aca326c50)
(effects (font (size 2 2) (thickness 0.3)))
)
(gr_text "Gnd ~{Fail} FanEn 3v3" (at 100 108) (layer "F.SilkS") (tstamp 3dab2395-4d8e-49be-849f-bcadf7f7f4ea)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(gr_text "~{FAIL}\n" (at 89.332 113.716) (layer "F.SilkS") (tstamp 449eb76e-a036-42d4-b334-3eb207ada63e)
(effects (font (size 1.75 1.75) (thickness 0.3)))
)
(gr_text "-" (at 121.59 103.81) (layer "F.SilkS") (tstamp 46f9274e-0643-4702-9de9-74a846ab8027)
(effects (font (size 2 2) (thickness 0.3)))
)
(gr_text "+" (at 121.59 96.19) (layer "F.SilkS") (tstamp 7ed4ef6f-5219-410b-a78f-a27322c389cf)
(effects (font (size 2 2) (thickness 0.3)))
)
(dimension (type aligned) (layer "Eco1.User") (tstamp 4f28e181-b2d5-4e0b-b523-5127e5881964)
(pts (xy 77 92) (xy 123 92))
(height -3)
(gr_text "46.0000 mm" (at 100 87.85) (layer "Eco1.User") (tstamp 4f28e181-b2d5-4e0b-b523-5127e5881964)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (units 3) (units_format 1) (precision 4))
(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 "Eco1.User") (tstamp 9c5d46e8-15b6-4fa5-8b38-7f63347a7f47)
(pts (xy 118 110) (xy 82 110))
(height -6.778)
(gr_text "36.0000 mm" (at 100 118) (layer "Eco1.User") (tstamp 9c5d46e8-15b6-4fa5-8b38-7f63347a7f47)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (units 3) (units_format 1) (precision 4))
(style (thickness 0.15) (arrow_length 1.27) (text_position_mode 2) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(dimension (type aligned) (layer "Eco1.User") (tstamp f4148fcf-d89a-46e0-9b53-4f68f3d1b622)
(pts (xy 77 116) (xy 77 94))
(height -3)
(gr_text "22.0000 mm" (at 72.85 105 90) (layer "Eco1.User") (tstamp f4148fcf-d89a-46e0-9b53-4f68f3d1b622)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (units 3) (units_format 1) (precision 4))
(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 108.128 107.1905) (end 108.128 106.604) (width 0.25) (layer "F.Cu") (net 1) (tstamp 171d3809-7193-4a1d-97d9-b497e023538c))
(segment (start 92.7 98.095) (end 91.11 98.095) (width 0.25) (layer "F.Cu") (net 1) (tstamp 1fe45b04-0f11-4a65-9022-14d1da75276e))
(segment (start 102.575 98.095) (end 105.715 98.095) (width 0.25) (layer "F.Cu") (net 1) (tstamp 2bac8198-4fab-430d-bc10-0be00b66caa6))
(segment (start 102.575 98.095) (end 101.905 98.095) (width 0.25) (layer "F.Cu") (net 1) (tstamp 4b0c811c-d487-494a-bc77-77146e964787))
(segment (start 101.905 98.095) (end 100 100) (width 0.25) (layer "F.Cu") (net 1) (tstamp 68d748f1-157e-4a9a-9ecd-391dffb1d1c0))
(segment (start 105.715 98.095) (end 106.35 98.73) (width 0.25) (layer "F.Cu") (net 1) (tstamp 774433ce-5752-48d9-9abf-1cae845be7bf))
(segment (start 97.425 100.635) (end 99.365 100.635) (width 0.25) (layer "F.Cu") (net 1) (tstamp 7d50e968-11a1-4f93-a0e9-7031cfc8806d))
(segment (start 99.365 100.635) (end 100 100) (width 0.25) (layer "F.Cu") (net 1) (tstamp 87a342fb-4e9f-4e58-8972-965ac8175dbf))
(segment (start 108.128 106.604) (end 109.144 105.588) (width 0.25) (layer "F.Cu") (net 1) (tstamp f7f3b6a1-ab7c-435a-a92c-707f3aac977f))
(via (at 100 100) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 094baeb8-0681-472a-a99f-41b3363e9f0a))
(via (at 91.11 98.095) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 0b00bd61-938e-4907-a414-14472c232899))
(via (at 109.144 105.588) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 66d9ec0d-8aa8-4692-a33f-ef6ac3a93f58))
(segment (start 94.6 98.796) (end 94.6 98.222) (width 1) (layer "F.Cu") (net 2) (tstamp 1faa5b2c-b56b-4d51-9747-807bb12a6e52))
(segment (start 93.523 99.873) (end 94.6 98.796) (width 1) (layer "F.Cu") (net 2) (tstamp 249d46ef-861c-41d3-a19e-4af23226d63f))
(segment (start 94.6 98.095) (end 97.425 98.095) (width 1) (layer "F.Cu") (net 2) (tstamp 8ea6da42-7ba6-4fe6-ad36-0cdf8eaea60f))
(segment (start 86.665 102.54) (end 89.332 99.873) (width 1) (layer "F.Cu") (net 2) (tstamp b8947bff-7a95-4ea6-8d84-392193a0cabe))
(segment (start 89.332 99.873) (end 93.523 99.873) (width 1) (layer "F.Cu") (net 2) (tstamp ca815669-7de9-4dbd-9580-e40033f02e04))
(segment (start 84.76 102.54) (end 86.665 102.54) (width 1) (layer "F.Cu") (net 2) (tstamp ce6d68c5-ce13-4e0b-96aa-729a039c9b3a))
(segment (start 97.425 99.365) (end 95.936 99.365) (width 0.25) (layer "F.Cu") (net 3) (tstamp 1d9272bf-30d0-4069-a96a-01ca217f9108))
(segment (start 92.3485 107.1905) (end 94.5625 104.9765) (width 0.25) (layer "F.Cu") (net 3) (tstamp 43a71c9e-3668-4c40-80c2-2044a64c5312))
(segment (start 94.5625 101.778) (end 94.5625 104.9765) (width 0.25) (layer "F.Cu") (net 3) (tstamp 5254e81d-ea62-4ae7-b57b-6d722f4e6265))
(segment (start 98.75 109.164) (end 94.5625 104.9765) (width 0.25) (layer "F.Cu") (net 3) (tstamp 7086248d-ffe3-449a-836a-fba551b2b1cc))
(segment (start 95.936 99.365) (end 94.5625 100.7385) (width 0.25) (layer "F.Cu") (net 3) (tstamp 72b7a171-6190-4bf9-bc7b-15a899dfa21f))
(segment (start 91.872 107.1905) (end 92.3485 107.1905) (width 0.25) (layer "F.Cu") (net 3) (tstamp 924bd2d7-1bcc-4666-bdc4-b1692262d318))
(segment (start 94.5625 100.7385) (end 94.5625 101.778) (width 0.25) (layer "F.Cu") (net 3) (tstamp aeb8cba0-ba15-495c-8dc2-79e706efb28f))
(segment (start 98.75 113) (end 98.75 109.164) (width 0.25) (layer "F.Cu") (net 3) (tstamp d92d4e95-d978-4c38-b013-67e42ea82a47))
(segment (start 99.05 104.191) (end 96.19 104.191) (width 0.25) (layer "F.Cu") (net 4) (tstamp 77dd8ad7-adcb-4643-b9df-382975cd5213))
(segment (start 96.19 103.14) (end 96.19 104.191) (width 0.25) (layer "F.Cu") (net 4) (tstamp a3defa5c-9a2f-49a3-b056-cde69fab47ea))
(segment (start 97.425 101.905) (end 96.19 103.14) (width 0.25) (layer "F.Cu") (net 4) (tstamp f56ea6ca-80de-41b7-88a6-d0790189d474))
(segment (start 103.81 103.14) (end 103.81 104.191) (width 0.25) (layer "F.Cu") (net 5) (tstamp 1752beef-6faa-4ef5-a9d8-bc52e510d367))
(segment (start 102.575 101.905) (end 103.81 103.14) (width 0.25) (layer "F.Cu") (net 5) (tstamp a4cbed08-381a-478f-a751-9fb731338cdd))
(segment (start 100.95 104.191) (end 103.81 104.191) (width 0.25) (layer "F.Cu") (net 5) (tstamp ddb7c1ac-f86b-47c0-8106-c745124e05ba))
(segment (start 89.357 109.0655) (end 89.332 109.0405) (width 0.25) (layer "F.Cu") (net 7) (tstamp 9a356f6d-fa1a-4a91-b00f-800f2a807739))
(segment (start 91.872 109.0655) (end 89.357 109.0655) (width 0.25) (layer "F.Cu") (net 7) (tstamp ea29a0cd-7351-43af-aba6-cca6e6d422fa))
(segment (start 101.651 99.365) (end 101.524 99.492) (width 0.25) (layer "F.Cu") (net 8) (tstamp 301f05d3-4eeb-4769-b5a1-37ff99c8342b))
(segment (start 102.575 99.365) (end 101.651 99.365) (width 0.25) (layer "F.Cu") (net 8) (tstamp 5b44dddd-fc3a-475c-a08c-e6a8622d4886))
(segment (start 101.524 99.492) (end 101.524 99.500614) (width 0.25) (layer "F.Cu") (net 8) (tstamp 621544d2-d730-4097-a6a0-737c891b6c81))
(segment (start 100.254 100.770614) (end 100.254 102.032) (width 0.25) (layer "F.Cu") (net 8) (tstamp 982a1aae-5b21-4854-9d82-5e856a250cfd))
(segment (start 101.524 99.500614) (end 100.254 100.770614) (width 0.25) (layer "F.Cu") (net 8) (tstamp 9c76c780-8818-4965-a1e5-b3992d37cfbd))
(via (at 100.254 102.032) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 8) (tstamp 12b2791f-2825-460f-99a6-65f05241acf1))
(segment (start 101.25 103) (end 101.25 113) (width 0.25) (layer "B.Cu") (net 8) (tstamp 114a7b05-ebb6-4856-bcc2-b04720cb3229))
(segment (start 100.254 102.032) (end 101.25 103.028) (width 0.25) (layer "B.Cu") (net 8) (tstamp 72ef4b68-3376-4403-bcf9-240f3edcadaf))
(segment (start 84.76 97.46) (end 87.3 94.92) (width 1) (layer "F.Cu") (net 9) (tstamp 192218be-7c55-408e-b38e-ef187caf6fa4))
(segment (start 87.3 94.92) (end 113.005 94.92) (width 1) (layer "F.Cu") (net 9) (tstamp 2ef96f0c-dba4-48e4-9d48-b3e5225b8257))
(segment (start 113.005 94.92) (end 115.545 97.46) (width 1) (layer "F.Cu") (net 9) (tstamp 45c2c35d-b063-4672-a234-114917207d7e))
(segment (start 108.128 109.0655) (end 110.643 109.0655) (width 0.25) (layer "F.Cu") (net 10) (tstamp 21972640-e7df-4aae-8699-6194d075fb4a))
(segment (start 110.643 109.0655) (end 110.668 109.0405) (width 0.25) (layer "F.Cu") (net 10) (tstamp ad1ad01a-bf1c-4a42-aedd-8d1b17d93b59))
(zone (net 6) (net_name "+3V3") (layer "F.Cu") (tstamp eb6ba93d-e27f-4f4d-bced-30cee0097060) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 122.86 115.97)
(xy 77.14 115.97)
(xy 77.14 92.38)
(xy 122.86 92.38)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 122.434121 92.528002)
(xy 122.480614 92.581658)
(xy 122.492 92.634)
(xy 122.492 115.366)
(xy 122.471998 115.434121)
(xy 122.418342 115.480614)
(xy 122.366 115.492)
(xy 77.634 115.492)
(xy 77.565879 115.471998)
(xy 77.519386 115.418342)
(xy 77.508 115.366)
(xy 77.508 110.132703)
(xy 79.890743 110.132703)
(xy 79.928268 110.417734)
(xy 80.004129 110.695036)
(xy 80.116923 110.959476)
(xy 80.264561 111.206161)
(xy 80.444313 111.430528)
(xy 80.538467 111.519877)
(xy 80.633624 111.610177)
(xy 80.652851 111.628423)
(xy 80.886317 111.796186)
(xy 80.890112 111.798195)
(xy 80.890113 111.798196)
(xy 80.909089 111.808243)
(xy 81.140392 111.930712)
(xy 81.21555 111.958216)
(xy 81.375699 112.016822)
(xy 81.410373 112.029511)
(xy 81.691264 112.090755)
(xy 81.719841 112.093004)
(xy 81.914282 112.108307)
(xy 81.914291 112.108307)
(xy 81.916739 112.1085)
(xy 82.072271 112.1085)
(xy 82.074407 112.108354)