-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusbhub.kicad_pcb
8089 lines (8050 loc) · 340 KB
/
usbhub.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1)
)
(paper "A4")
(title_block
(title "USB 2.0 HighSpeed Hub")
(date "2023-10-07")
(company "JetERA Creative")
(comment 1 "https://creativecommons.org/licenses/by-sa/4.0/legalcode.en")
(comment 2 "Use of this PCB design is governed under the CC BY-SA 4.0 International license.")
)
(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") (color "Black"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "White") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (color "FR4 natural") (thickness 0.91) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "White") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "Black"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference false)
(plotvalue false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "job")
)
)
(net 0 "")
(net 1 "+5V")
(net 2 "Net-(J1-D-)")
(net 3 "Net-(J1-D+)")
(net 4 "unconnected-(J1-ID-Pad4)")
(net 5 "GND")
(net 6 "D1-")
(net 7 "D1+")
(net 8 "D2-")
(net 9 "D2+")
(net 10 "D3-")
(net 11 "D3+")
(net 12 "D4-")
(net 13 "D4+")
(net 14 "Net-(U1-3V3)")
(net 15 "Net-(D2-A)")
(net 16 "Net-(D1-A)")
(net 17 "Net-(U1-XI)")
(net 18 "Net-(U1-XO)")
(net 19 "unconnected-(U1-~{RST}-Pad9)")
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tstamp 0cc0177a-6467-42fc-be28-7da56f9d313e)
(at 117 112.5 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" "usbhub.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/3a6cadc9-3e7f-4729-95bc-54367a386da0")
(attr smd)
(fp_text reference "C2" (at 2.6 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2c1617f5-63c3-4c13-bce3-7c44960fb006)
)
(fp_text value "4.7uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c21434d5-e0f3-4a81-a0f5-c36affc88ed4)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp dc9b177f-e1e3-44a8-90c0-16be46116ab4)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cae8f1e4-96c4-4e42-8bd0-a5959bf7d58d))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c5dda71e-a56e-4d4e-bc39-440891c8de6e))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 01cbbfa0-d588-4845-9e53-cd5b1cf60796))
(fp_line (start -1.7 0.98) (end -1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bd8a5070-2d8e-474d-8d72-26d1d8e03359))
(fp_line (start 1.7 -0.98) (end 1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6bbcb2ed-5abe-43e9-b0c6-0de3b7d03426))
(fp_line (start 1.7 0.98) (end -1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b6c5b7f3-9831-43f2-bbf8-d3092886ee1e))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d71d4bfd-9e31-4fa7-ab17-1a517e176750))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6e29f38a-4ded-4e7e-80bf-bc3cc1fab970))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6ab71714-1c31-4fa4-bbb2-c6ddd0858752))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 52f6bd13-a593-43c4-a5fc-a3d84fd1ef3a))
(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 1 "+5V") (pintype "passive") (tstamp 1efcc42d-1fee-43d0-a401-8ed385f80791))
(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 5 "GND") (pintype "passive") (tstamp efaff203-5081-4399-b09b-7728a11806a4))
(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 "Diode_SMD:D_SMA" (layer "F.Cu")
(tstamp 120c5db3-150f-42fd-8188-81a8cea72205)
(at 128.5 79.5 180)
(descr "Diode SMA (DO-214AC)")
(tags "Diode SMA (DO-214AC)")
(property "Sheetfile" "usbhub.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Schottky diode")
(property "ki_keywords" "diode Schottky")
(path "/a454026f-4a00-4c14-87a9-18073912d159")
(attr smd)
(fp_text reference "D1" (at 0 2.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6c3f64dd-f2f0-4fde-957b-654215e85e6b)
)
(fp_text value "D_Schottky" (at 0 2.6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6fa2ad31-4721-4f81-a94c-edfa6700ebd9)
)
(fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b3965f3e-0702-40da-b5bb-a676cc7cb892)
)
(fp_line (start -3.51 -1.65) (end -3.51 1.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 73ef2052-f2dc-46ca-b948-de2367580a35))
(fp_line (start -3.51 -1.65) (end 2 -1.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 16b21cad-c01c-4d87-9a1c-ef684adfd866))
(fp_line (start -3.51 1.65) (end 2 1.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 106c519b-8cc2-48ec-b0f9-fd7d482345c3))
(fp_line (start -3.5 -1.75) (end 3.5 -1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 02e8eaec-bb57-4865-861e-d46532889680))
(fp_line (start -3.5 1.75) (end -3.5 -1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5799f635-0334-4f0a-b38b-a8924b8bf0b1))
(fp_line (start 3.5 -1.75) (end 3.5 1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 71c85b54-80a8-444d-89c1-671f1f99dfc0))
(fp_line (start 3.5 1.75) (end -3.5 1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 181432f5-be88-4e9f-861d-12d596e9d74c))
(fp_line (start -2.3 1.5) (end -2.3 -1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 98ee36b1-3bc4-4906-bde7-d1c662a378bf))
(fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 81a066cd-e3fc-4a23-8d6e-d87845811d6d))
(fp_line (start -0.64944 0.00102) (end -1.55114 0.00102)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c835b806-78e6-4f97-a379-e86cd3825db9))
(fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4452ca70-e944-4478-86af-747fa075e4bf))
(fp_line (start -0.64944 0.00102) (end 0.50118 0.75032)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 852978ab-1df3-46d0-b201-045bd8228cb2))
(fp_line (start 0.50118 0.00102) (end 1.4994 0.00102)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 702cb3c8-54af-4f2f-b72a-9f150881e0b9))
(fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5cefbaea-d1f7-43b9-bc83-34bbbcfa1b25))
(fp_line (start 2.3 -1.5) (end -2.3 -1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 860444ae-c349-4950-adf0-66a9839212f9))
(fp_line (start 2.3 -1.5) (end 2.3 1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 768a9fd2-125d-4bd6-9012-299745e1d82b))
(fp_line (start 2.3 1.5) (end -2.3 1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f7c6b2b6-4605-45d5-91ab-24702cbd1234))
(pad "1" smd roundrect (at -2 0 180) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889)
(net 1 "+5V") (pinfunction "K") (pintype "passive") (tstamp 8466ce0f-c728-4886-a3f7-f8bce7cba305))
(pad "2" smd roundrect (at 2 0 180) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1388888889)
(net 16 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp d04a795b-87bd-41d1-b69d-1f4e1fa85104))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm" (layer "F.Cu")
(tstamp 1ca46ad9-91de-4e98-9d6c-803ae3bd0116)
(at 127.1 113.6 -90)
(descr "SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, 3.2x2.5mm^2 package")
(tags "SMD SMT crystal")
(property "Sheetfile" "usbhub.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Four pin crystal, GND on pins 2 and 4, small symbol")
(property "ki_keywords" "quartz ceramic resonator oscillator")
(path "/63e5b98c-2ae8-4c0f-8be6-c161828455fd")
(attr smd)
(fp_text reference "Y1" (at -3.6 0.1) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5122e3b9-8381-4bd6-939a-0b61cc0c8364)
)
(fp_text value "Crystal_GND24_Small" (at 0 2.45 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 345bf605-e1cf-4311-8c04-9c6cd1404f4f)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.105)))
(tstamp b622efbf-62bb-4831-ab29-1707c9764de0)
)
(fp_line (start -2 -1.65) (end -2 1.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 884489e6-55dd-4364-866b-eb8c8bf8f686))
(fp_line (start -2 1.65) (end 2 1.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 37bc1629-08b3-434e-9390-5e0e2d189ea8))
(fp_line (start -2.1 -1.7) (end -2.1 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1b94f61b-ced2-41c9-94d5-251f31fb79e1))
(fp_line (start -2.1 1.7) (end 2.1 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 383ca882-5cea-40f4-9b34-12b037e09f0b))
(fp_line (start 2.1 -1.7) (end -2.1 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2ee7a221-39c9-44d8-91d7-bbc2e9b82325))
(fp_line (start 2.1 1.7) (end 2.1 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 846c2e54-eeba-42dc-bf4d-aaed0fe894d9))
(fp_line (start -1.6 -1.25) (end -1.6 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d23db011-2e1f-4630-b172-a755ae94c83e))
(fp_line (start -1.6 0.25) (end -0.6 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e420f617-74b8-461e-ac61-9cc2c5b2c839))
(fp_line (start -1.6 1.25) (end 1.6 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eb2616a2-5656-4830-9efa-d66cd994df81))
(fp_line (start 1.6 -1.25) (end -1.6 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp da846ee3-222d-41aa-bbba-31fa8acb9d49))
(fp_line (start 1.6 1.25) (end 1.6 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ce2d737-b966-4d7d-9eee-3ce882e3c18f))
(pad "1" smd rect (at -1.1 0.85 270) (size 1.4 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "Net-(U1-XO)") (pinfunction "1") (pintype "passive") (tstamp dbd72717-f3fb-49a7-9c1c-781ce614db80))
(pad "2" smd rect (at 1.1 0.85 270) (size 1.4 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "GND") (pinfunction "2") (pintype "passive") (tstamp d4d585a8-2eb2-4974-a550-383191ad1198))
(pad "3" smd rect (at 1.1 -0.85 270) (size 1.4 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "Net-(U1-XI)") (pinfunction "3") (pintype "passive") (tstamp 22ff3e2a-6bb1-4f1f-ad9e-acb5c160b871))
(pad "4" smd rect (at -1.1 -0.85 270) (size 1.4 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "GND") (pinfunction "4") (pintype "passive") (tstamp 77b55f05-bf12-4ca2-80a3-7a20308b2960))
(model "${KICAD6_3DMODEL_DIR}/Crystal.3dshapes/Crystal_SMD_3225-4Pin_3.2x2.5mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_BarrelJack:BarrelJack_Horizontal" (layer "F.Cu")
(tstamp 22585401-cdb8-4df6-8979-f83d473afd4e)
(at 120 79.5 -90)
(descr "DC Barrel Jack")
(tags "Power Jack")
(property "Sheetfile" "usbhub.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "DC Barrel Jack with an internal switch")
(property "ki_keywords" "DC power barrel jack connector")
(path "/4dbdd292-5fc9-44c5-84f7-d076e83c6c89")
(attr through_hole)
(fp_text reference "J6" (at -6.4 5.6 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aef082ab-a9b1-4b10-a4e4-bfae3500cdf9)
)
(fp_text value "Barrel_Jack_Switch" (at -6.2 -5.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f31d5c54-da84-4a0b-947e-d2273550b30c)
)
(fp_text user "${REFERENCE}" (at -3 -2.95 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7283d034-b81d-46f7-a651-be51b18ef6e4)
)
(fp_line (start -13.8 -4.6) (end 0.9 -4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1022eed3-baeb-45e5-8a20-0b32f902053c))
(fp_line (start -13.8 4.6) (end -13.8 -4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b0dd35db-02b8-4ffc-9d98-49ae7ae15518))
(fp_line (start -5 4.6) (end -13.8 4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6d61ccab-6cc4-4d16-b228-5918d20df7b1))
(fp_line (start 0.05 -4.8) (end 1.1 -4.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27c5c869-4eda-4b1b-827d-bb92b56c95a9))
(fp_line (start 0.9 -4.6) (end 0.9 -2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1b9c95cc-4069-4cae-bd77-035dc092c0fd))
(fp_line (start 0.9 1.9) (end 0.9 4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 25cd9a5a-ae95-4ad7-9e34-a5a81209e493))
(fp_line (start 0.9 4.6) (end -1 4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c64b9d02-7b0e-487c-b00a-61d024a189fa))
(fp_line (start 1.1 -3.75) (end 1.1 -4.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5b5c1b84-ed72-4c5d-a71d-0bbe204c78af))
(fp_line (start -14 4.75) (end -14 -4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 44410c79-04aa-4a40-8627-8c522b0cf8d0))
(fp_line (start -5 4.75) (end -14 4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dd120c7d-351b-47ba-ad48-5023dd83597c))
(fp_line (start -5 6.75) (end -5 4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 12ea1a73-54af-4ca7-a770-b408c5dd8443))
(fp_line (start -1 4.75) (end -1 6.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 29106e49-99da-4c93-b513-611368d54a5c))
(fp_line (start -1 6.75) (end -5 6.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 496aedfd-93b8-447f-b183-86ba7b7428fc))
(fp_line (start 1 -4.75) (end -14 -4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fe33dc29-b250-46e0-8931-0a4e250e8566))
(fp_line (start 1 -4.5) (end 1 -4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 720e78f3-f29a-4dce-9e15-b79a72da34db))
(fp_line (start 1 -4.5) (end 1 -2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e8cb0f54-29ae-4b2f-ade8-a9242c544766))
(fp_line (start 1 -2) (end 2 -2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 255cc873-1fd9-4f41-ad5e-51a487725666))
(fp_line (start 1 2) (end 1 4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 09a8b5fa-02a6-4bba-a8f5-16b6113a7b2e))
(fp_line (start 1 4.75) (end -1 4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d1564820-c099-4252-a9be-a26910faf2a2))
(fp_line (start 2 -2) (end 2 2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8cd0e927-de27-4c2e-88a9-fc3ce520911e))
(fp_line (start 2 2) (end 1 2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e390694a-49c5-487a-89cf-8108afb7db90))
(fp_line (start -13.7 -4.5) (end -13.7 4.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 82ec1d57-2841-4c7d-9723-854ebec89714))
(fp_line (start -13.7 4.5) (end 0.8 4.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5c83cd6c-8da4-4379-a89a-69b99a6249d6))
(fp_line (start -10.2 -4.5) (end -10.2 4.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 299f8188-bbc3-4c49-9a38-a6d26a50523a))
(fp_line (start -0.003213 -4.505425) (end 0.8 -3.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a3602c4e-6bd6-4531-89c3-55c91129a031))
(fp_line (start 0 -4.5) (end -13.7 -4.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 442d65b3-8cef-4035-a117-a49ec80d788c))
(fp_line (start 0.8 4.5) (end 0.8 -3.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 06fbb589-a73a-4e44-b9d3-e001cc8dd0dc))
(pad "1" thru_hole rect (at 0 0 270) (size 3.5 3.5) (drill oval 1 3) (layers "*.Cu" "*.Mask")
(net 16 "Net-(D1-A)") (pintype "passive") (tstamp 2862d130-9414-4ffb-9bcb-268b8dec691f))
(pad "2" thru_hole roundrect (at -6 0 270) (size 3 3.5) (drill oval 1 3) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 5 "GND") (pintype "passive") (tstamp bb0b4811-94a7-430c-9b47-8dc9b444fcb3))
(pad "3" thru_hole roundrect (at -3 4.7 270) (size 3.5 3.5) (drill oval 3 1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 5 "GND") (pintype "passive") (tstamp e0d5767d-6a88-45a0-afe7-16de984a8bf4))
(model "${KICAD6_3DMODEL_DIR}/Connector_BarrelJack.3dshapes/BarrelJack_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.5mm_Pad_Via" (layer "F.Cu")
(tstamp 2b0d22f4-061b-40e2-90af-13e617205795)
(at 104 119.5)
(descr "Mounting Hole 3.5mm")
(tags "mounting hole 3.5mm")
(property "Sheetfile" "usbhub.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/dfd18316-8805-4c5b-8a37-1cc8ac99559d")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -4.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bcee3b83-26af-431a-bd2f-e8dfd37e132d)
)
(fp_text value "MountingHole_Pad" (at 0 4.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7086a594-983e-4c18-91ed-af66a9a6af28)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 038bf9c4-9389-47cc-9841-ffc68bade2e9)
)
(fp_circle (center 0 0) (end 3.5 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 3277e126-59f4-44c5-8410-e61b68f66630))
(fp_circle (center 0 0) (end 3.75 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 48b0b822-64d3-46e7-b60c-db5b02414545))
(pad "1" thru_hole circle (at -2.625 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "1") (pintype "input") (tstamp 203d97c6-d03b-4edf-86d2-01d8d2c889fd))
(pad "1" thru_hole circle (at -1.856155 -1.856155) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "1") (pintype "input") (tstamp 814added-1cad-4957-820c-5dd1badd140a))
(pad "1" thru_hole circle (at -1.856155 1.856155) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "1") (pintype "input") (tstamp e3729b90-f5b5-4f13-a837-08f48bf98e7f))
(pad "1" thru_hole circle (at 0 -2.625) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "1") (pintype "input") (tstamp 5b7f4c30-839e-43b3-8abe-58400e1d2408))
(pad "1" thru_hole circle (at 0 0) (size 7 7) (drill 3.5) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "1") (pintype "input") (tstamp 861dd082-d16d-4dcc-90a0-71ce1bc12352))
(pad "1" thru_hole circle (at 0 2.625) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "1") (pintype "input") (tstamp 2918a33e-3d66-45b7-a611-525725a59563))
(pad "1" thru_hole circle (at 1.856155 -1.856155) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "1") (pintype "input") (tstamp 96ffbe4e-6138-42ff-8234-688d6a63cd65))
(pad "1" thru_hole circle (at 1.856155 1.856155) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "1") (pintype "input") (tstamp b0616e6e-07cf-4fd4-b03b-60b470c27681))
(pad "1" thru_hole circle (at 2.625 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "1") (pintype "input") (tstamp 37f71c6e-2a39-4909-b088-ad69fa4bf1cd))
)
(footprint "Fiducial:Fiducial_1mm_Mask2mm" (layer "F.Cu")
(tstamp 3e781610-7131-43e1-9dee-25542c02ab97)
(at 109 122)
(descr "Circular Fiducial, 1mm bare copper, 2mm soldermask opening (Level A)")
(tags "fiducial")
(attr smd)
(fp_text reference "REF**" (at 0 -2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5b52de76-bcae-470e-843d-c6e1f9c3dba8)
)
(fp_text value "Fiducial_1mm_Mask2mm" (at 0 2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ca871891-8c3f-4e1d-bd22-28f20f8c8d0d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 05301acc-8d7e-4bcb-ae95-77ae80aa628c)
)
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 05b32152-fcd5-4a5c-bc81-eafc645e62a9))
(fp_circle (center 0 0) (end 1 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp ce2e2e7b-9d69-4379-ab50-51100dea0dcc))
(pad "" smd circle (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask")
(solder_mask_margin 0.5) (clearance 0.5) (tstamp c997f566-b0a1-44bf-a12a-106cb5fa5402))
)
(footprint "Connector_USB:USB_A_Stewart_SS-52100-001_Horizontal" (layer "F.Cu")
(tstamp 48e4aef9-6d07-4a64-b082-3bae2875a04f)
(at 106 84 -90)
(descr "USB A connector https://belfuse.com/resources/drawings/stewartconnector/dr-stw-ss-52100-001.pdf")
(tags "USB_A Female Connector receptacle")
(property "Sheetfile" "usbhub.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "USB Type A connector")
(property "ki_keywords" "connector USB")
(path "/47854551-d4aa-4585-a32e-81fe1b81aabb")
(attr through_hole)
(fp_text reference "J3" (at 3.5 -2.26 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 55adbf38-f6b9-4e63-a991-abb458b47f20)
)
(fp_text value "USB_A" (at 3.5 14.49 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 065439ce-84ad-43a8-802d-2233723432e9)
)
(fp_text user "${REFERENCE}" (at 3.5 5.99 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9478cb60-dc68-4439-8355-7f802b455f94)
)
(fp_line (start -3.75 12.49) (end -3.75 12.99)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d060762a-30e2-4486-8567-aab4a5ce6298))
(fp_line (start -3.75 12.99) (end 10.75 12.99)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d83f0a34-73e2-4fba-bc7c-61678b6aa2fc))
(fp_line (start -2.75 -1.01) (end -2.75 0.99)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 91ef3a7b-0094-450e-8084-6d9fc8fa0418))
(fp_line (start -2.75 4.49) (end -2.75 12.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1ff8ca46-6cc4-4d81-bdbf-35bdd53e303a))
(fp_line (start -2.75 12.49) (end -3.75 12.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f86be834-8236-4394-82a2-48b40fe265e6))
(fp_line (start -0.5 -1.26) (end 0.5 -1.26)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7b8b8791-7d4f-47a2-b6e7-c582b7d17cfc))
(fp_line (start 9.75 -1.01) (end -2.75 -1.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67044672-1582-4a53-acff-2d6d99d54219))
(fp_line (start 9.75 0.99) (end 9.75 -1.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a1acf19a-d90e-4d3c-a4de-1754a79a79ac))
(fp_line (start 9.75 12.49) (end 9.75 4.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3e0b6481-7afe-4cbf-afe4-ac250262d247))
(fp_line (start 10.75 12.49) (end 9.75 12.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 513dd1a0-440f-4e91-a805-fc6a7a1e712b))
(fp_line (start 10.75 12.99) (end 10.75 12.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f52372d-f01b-4859-8f4a-329c162bfc75))
(fp_line (start -5.15 1.99) (end -4.25 0.69)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d5d56bd8-bae0-464f-82c6-f8e8be55e02d))
(fp_line (start -5.15 3.44) (end -5.15 1.99)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6cf20951-d48f-4148-a53e-e085c2fd218f))
(fp_line (start -5.15 3.44) (end -4.25 4.74)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a23720d9-ec33-40d0-a276-cbd26cadb2ca))
(fp_line (start -4.25 11.99) (end -4.25 13.49)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 700f3f40-19d8-4364-841c-7a6945ab0444))
(fp_line (start -4.25 13.49) (end 11.25 13.49)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 185db987-d311-4ba6-b67a-5bb149e44463))
(fp_line (start -3.25 0.69) (end -4.25 0.69)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f9972bc8-4ef8-4a6c-949d-800e43dd9343))
(fp_line (start -3.25 0.69) (end -3.25 -1.51)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c1be47f0-0ef6-49ba-b86f-85e26f3b80ec))
(fp_line (start -3.25 4.74) (end -4.25 4.74)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f7691e2c-255c-47f4-8032-8403ccd21ed0))
(fp_line (start -3.25 4.74) (end -3.25 11.99)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 51bc9340-315f-4960-8811-8f1227e6dab1))
(fp_line (start -3.25 11.99) (end -4.25 11.99)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 63af20e5-cb52-4164-991c-a3764d1ce375))
(fp_line (start 10.25 -1.51) (end -3.25 -1.51)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp de255d00-d817-4bba-9bde-0c3c4aeb5196))
(fp_line (start 10.25 0.69) (end 10.25 -1.51)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7921c1d1-eba8-4959-8b4b-8821d7d25914))
(fp_line (start 10.25 0.69) (end 11.25 0.69)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 14162439-01f2-4be0-af7d-0e92c1cf7078))
(fp_line (start 10.25 4.74) (end 11.25 4.74)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e086eaf9-1795-4268-ae67-ccc44d005719))
(fp_line (start 10.25 11.99) (end 10.25 4.74)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b8a26e75-febb-4a06-be9d-2750199a32bc))
(fp_line (start 11.25 11.99) (end 10.25 11.99)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8f94189a-54bb-4807-b22b-574168571579))
(fp_line (start 11.25 13.49) (end 11.25 11.99)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fc2a4b3f-af69-4134-adc8-eb050eee2acd))
(fp_line (start 12.15 1.99) (end 11.25 0.69)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a7cc908f-99e5-49b9-b840-80b5018d8089))
(fp_line (start 12.15 1.99) (end 12.15 3.44)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7e34def9-5de4-4c0e-9788-4a7f05cfa7f4))
(fp_line (start 12.15 3.44) (end 11.25 4.74)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3e215e2a-3587-4f6f-8060-9734cc940da1))
(fp_line (start -3.75 12.49) (end -2.75 12.49)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e75e1773-2a33-4d04-b1d6-e3040b96880c))
(fp_line (start -3.75 12.99) (end -3.75 12.49)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5f9f7614-53e2-41db-8471-a45b720036bc))
(fp_line (start -3.75 12.99) (end 10.75 12.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp de374283-8096-41e2-b2fb-b4099798c093))
(fp_line (start -2.75 -1.01) (end 9.75 -1.01)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d3ea0151-bd1d-4964-95dc-96de986b0031))
(fp_line (start -2.75 12.49) (end -2.75 -1.01)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a8652f21-3696-43fd-aaf2-aa3fdbe1e21d))
(fp_line (start -0.25 -1.01) (end 0 -0.76)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b5eb166a-0a4a-41b1-aa93-1c2f48b0a851))
(fp_line (start 0 -0.76) (end 0.25 -1.01)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 024cf57f-76e4-4a1a-81c9-d4298f9156b0))
(fp_line (start 9.75 12.49) (end 9.75 -1.01)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fa5c2e07-5d8e-4184-8169-64de70d8da9e))
(fp_line (start 9.75 12.49) (end 10.75 12.49)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 471d742d-013c-40f1-ac67-858a861e7171))
(fp_line (start 10.75 12.49) (end 10.75 12.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c6435d7f-7230-4d85-8069-aef66b18eb96))
(pad "1" thru_hole rect (at 0 0 270) (size 1.6 1.6) (drill 0.92) (layers "*.Cu" "*.Mask")
(net 1 "+5V") (pinfunction "VBUS") (pintype "power_in") (tstamp f56db67f-6d94-4fef-9f9a-6d5004d55ebf))
(pad "2" thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.92) (layers "*.Cu" "*.Mask")
(net 8 "D2-") (pinfunction "D-") (pintype "bidirectional") (tstamp 671532e4-3e49-454d-bc96-af7583d755c9))
(pad "3" thru_hole circle (at 4.5 0 270) (size 1.6 1.6) (drill 0.92) (layers "*.Cu" "*.Mask")
(net 9 "D2+") (pinfunction "D+") (pintype "bidirectional") (tstamp 795313ba-4a77-43c8-a4d3-6c79f4ff2417))
(pad "4" thru_hole circle (at 7 0 270) (size 1.6 1.6) (drill 0.92) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 289cad33-03f3-4777-b2c3-40af71fa3d60))
(pad "5" thru_hole oval (at -3.07 2.71 270) (size 2 3) (drill oval 1 2.3) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "Shield") (pintype "passive") (tstamp e3395401-35a0-4641-b5a3-14c84332a89e))
(pad "5" thru_hole oval (at 10.07 2.71 270) (size 2 3) (drill oval 1 2.3) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "Shield") (pintype "passive") (tstamp a29850da-a381-4679-97a7-96cd12626889))
(model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_A_Stewart_SS-52100-001_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_A_Stewart_SS-52100-001_Horizontal" (layer "F.Cu")
(tstamp 5f96cc00-3591-425b-a8a7-14db46a22f7b)
(at 134 91 90)
(descr "USB A connector https://belfuse.com/resources/drawings/stewartconnector/dr-stw-ss-52100-001.pdf")
(tags "USB_A Female Connector receptacle")
(property "Sheetfile" "usbhub.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "USB Type A connector")
(property "ki_keywords" "connector USB")
(path "/f71cbc7d-8329-4289-a030-a760350f2a34")
(attr through_hole)
(fp_text reference "J4" (at 3.5 -2.26 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 764f4d4c-4efa-47dc-8b67-0c91491778b4)
)
(fp_text value "USB_A" (at 3.5 14.49 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f8757d77-652d-4448-bec8-7ae32bb8fdcc)
)
(fp_text user "${REFERENCE}" (at 3.5 5.99 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a636fa72-8ebb-436e-b0bc-571c8f174f08)
)
(fp_line (start -3.75 12.49) (end -3.75 12.99)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 09e53cdd-adfb-45ee-b0be-e8f95547747c))
(fp_line (start -3.75 12.99) (end 10.75 12.99)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 97eb41c2-8bf3-486c-8b6f-8f507e0b3f51))
(fp_line (start -2.75 -1.01) (end -2.75 0.99)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2ab84ad5-d808-4199-a8d6-3dd878d4039e))
(fp_line (start -2.75 4.49) (end -2.75 12.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 68e7515e-3d69-4df6-8862-3f81bef3bc94))
(fp_line (start -2.75 12.49) (end -3.75 12.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5501be17-d2b7-4348-b59b-764592d9fcc0))
(fp_line (start -0.5 -1.26) (end 0.5 -1.26)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f1ea3385-c6e5-4bd3-8550-24d4b6f597e3))
(fp_line (start 9.75 -1.01) (end -2.75 -1.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 621e3991-703e-4893-b68c-8fbc8fc8d928))
(fp_line (start 9.75 0.99) (end 9.75 -1.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1dc93d38-8978-4fe0-9434-e18821a0be8a))
(fp_line (start 9.75 12.49) (end 9.75 4.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ae6912c-f0fc-4e69-9b87-f7ba9947092f))
(fp_line (start 10.75 12.49) (end 9.75 12.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 54e013d5-5bd4-4aec-8d33-f447eb0b2a99))
(fp_line (start 10.75 12.99) (end 10.75 12.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c2d78217-a8d6-48ec-9c2a-dd95202e3922))
(fp_line (start -5.15 1.99) (end -4.25 0.69)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3339983f-1e70-4391-ac44-b0adaaa61982))
(fp_line (start -5.15 3.44) (end -5.15 1.99)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 41ff195c-e3f7-4580-87b4-3145b72c446a))
(fp_line (start -5.15 3.44) (end -4.25 4.74)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 12a2f5f3-d4f3-40d1-8fe3-dfb8c5e6dfa1))
(fp_line (start -4.25 11.99) (end -4.25 13.49)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 87ee03c5-baa0-408c-85c8-037e6136c38f))
(fp_line (start -4.25 13.49) (end 11.25 13.49)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4d5d80c4-ab03-420f-8235-10d0066a3b66))
(fp_line (start -3.25 0.69) (end -4.25 0.69)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 77478f00-8fd7-4075-9649-24a7f1d1510e))
(fp_line (start -3.25 0.69) (end -3.25 -1.51)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0da941b2-369b-49c7-8eb5-af54e9f4fb5c))
(fp_line (start -3.25 4.74) (end -4.25 4.74)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5ed2f0ed-087e-4b6c-9a5d-ec3e29f5280c))
(fp_line (start -3.25 4.74) (end -3.25 11.99)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1622f7d9-5c08-4a76-ae34-ea2945fcce6d))
(fp_line (start -3.25 11.99) (end -4.25 11.99)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 214ceb10-3392-46fb-b920-24709f7832b9))
(fp_line (start 10.25 -1.51) (end -3.25 -1.51)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1246615d-8cf5-46b0-b9a2-6e150ce0fb00))
(fp_line (start 10.25 0.69) (end 10.25 -1.51)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3a67bbde-cc46-4de1-9842-973101a5ef62))
(fp_line (start 10.25 0.69) (end 11.25 0.69)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b61ea0eb-a46a-4cd6-98e9-aca6e4837134))
(fp_line (start 10.25 4.74) (end 11.25 4.74)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 03fe083d-0fb6-4e36-a3ed-436f2d75ea08))
(fp_line (start 10.25 11.99) (end 10.25 4.74)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ffaa6ab0-1d02-4618-a16a-44d9871223c2))
(fp_line (start 11.25 11.99) (end 10.25 11.99)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6245bc54-86e5-4904-9812-139bb17c6c9c))
(fp_line (start 11.25 13.49) (end 11.25 11.99)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d459fe99-00a0-48f6-b058-2fec4531e2fb))
(fp_line (start 12.15 1.99) (end 11.25 0.69)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 151f6ca4-2f7f-4ba6-a4ea-01be55d9fe25))
(fp_line (start 12.15 1.99) (end 12.15 3.44)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4cbc4301-6c9d-4019-833b-4f22da0a6909))
(fp_line (start 12.15 3.44) (end 11.25 4.74)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 11800a2b-a79f-428c-a86a-315d95b2d48d))
(fp_line (start -3.75 12.49) (end -2.75 12.49)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 746b7b4a-ea23-402e-bed6-0543dc09a574))
(fp_line (start -3.75 12.99) (end -3.75 12.49)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 607ffeb9-297c-4541-9856-7f4113c034a0))
(fp_line (start -3.75 12.99) (end 10.75 12.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2583a695-17f2-42bc-9e86-0ddcf76c6467))
(fp_line (start -2.75 -1.01) (end 9.75 -1.01)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f77ecb71-0ecc-4afa-a889-06585f017593))
(fp_line (start -2.75 12.49) (end -2.75 -1.01)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d6b2c1af-11c6-4700-b12a-ca48a999059f))
(fp_line (start -0.25 -1.01) (end 0 -0.76)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c20b02d8-c421-4414-bace-148dc804033b))
(fp_line (start 0 -0.76) (end 0.25 -1.01)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp addcf4c4-ff9f-4e6c-81c0-74c0027b77d9))
(fp_line (start 9.75 12.49) (end 9.75 -1.01)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3103577b-2324-4cb0-a36b-b409232a68c6))
(fp_line (start 9.75 12.49) (end 10.75 12.49)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp efca8407-4c96-4782-acca-53cfff013889))
(fp_line (start 10.75 12.49) (end 10.75 12.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 569b66f0-6955-4102-8806-0af0ccacd305))
(pad "1" thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.92) (layers "*.Cu" "*.Mask")
(net 1 "+5V") (pinfunction "VBUS") (pintype "power_in") (tstamp 8a10e347-e742-4359-9df6-33886b6b37f0))
(pad "2" thru_hole circle (at 2.5 0 90) (size 1.6 1.6) (drill 0.92) (layers "*.Cu" "*.Mask")
(net 10 "D3-") (pinfunction "D-") (pintype "bidirectional") (tstamp 4828fc33-1a01-4c54-9161-bcccb835c61d))
(pad "3" thru_hole circle (at 4.5 0 90) (size 1.6 1.6) (drill 0.92) (layers "*.Cu" "*.Mask")
(net 11 "D3+") (pinfunction "D+") (pintype "bidirectional") (tstamp e0e3d817-9d49-428e-92ca-3a799c460231))
(pad "4" thru_hole circle (at 7 0 90) (size 1.6 1.6) (drill 0.92) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 52f5aa11-1897-4c63-aab7-189633ff6cca))
(pad "5" thru_hole oval (at -3.07 2.71 90) (size 2 3) (drill oval 1 2.3) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 6993276f-0609-4958-b0a8-86f14688810f))
(pad "5" thru_hole oval (at 10.07 2.71 90) (size 2 3) (drill oval 1 2.3) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "Shield") (pintype "passive") (tstamp ea260dde-34f8-469e-b279-a1955afe9e27))
(model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_A_Stewart_SS-52100-001_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Fiducial:Fiducial_1mm_Mask2mm" (layer "F.Cu")
(tstamp 600e2d6b-029f-437a-9372-2181ffd4bac4)
(at 130 73)
(descr "Circular Fiducial, 1mm bare copper, 2mm soldermask opening (Level A)")
(tags "fiducial")
(attr smd)
(fp_text reference "REF**" (at 0 -2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a1876b2-0746-48f2-a40a-d0b4bf781322)
)
(fp_text value "Fiducial_1mm_Mask2mm" (at 0 2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bb95ed05-36ed-4320-bc61-7a05f1dbda01)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 0c861250-cb28-4452-a5a6-409d07c4ead5)
)
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp a1f8fc65-77d3-4d3c-b339-c4d3a6a91628))
(fp_circle (center 0 0) (end 1 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 604517b1-c94f-4f3b-abec-066651534d87))
(pad "" smd circle (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask")
(solder_mask_margin 0.5) (clearance 0.5) (tstamp 0d540255-b8b6-4360-b5cf-e28e0dd9ad7c))
)
(footprint "Connector_USB:USB_A_Stewart_SS-52100-001_Horizontal" (layer "F.Cu")
(tstamp 63718be6-1e25-4a1c-8846-7e53396858bd)
(at 106 101.5 -90)
(descr "USB A connector https://belfuse.com/resources/drawings/stewartconnector/dr-stw-ss-52100-001.pdf")
(tags "USB_A Female Connector receptacle")
(property "Sheetfile" "usbhub.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "USB Type A connector")
(property "ki_keywords" "connector USB")
(path "/a3ebc77f-6f97-4e65-8e7c-d97e10b1ce35")
(attr through_hole)
(fp_text reference "J2" (at 3.5 -2.26 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c18d2e86-5694-4eff-bbe9-392d4eb7476c)
)
(fp_text value "USB_A" (at 3.5 14.49 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 706b024f-621a-4e21-86cd-97cba70bcee1)
)
(fp_text user "${REFERENCE}" (at 3.5 5.99 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d8acb334-2896-4125-8118-0e983403061e)
)
(fp_line (start -3.75 12.49) (end -3.75 12.99)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 965675ad-df62-4c87-87a7-eefeab40a802))
(fp_line (start -3.75 12.99) (end 10.75 12.99)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp db36805c-fc7a-4ef9-bf58-24ffd865e1ad))
(fp_line (start -2.75 -1.01) (end -2.75 0.99)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9dd3488e-0e79-4fb8-a4f2-8a2e91df5be8))
(fp_line (start -2.75 4.49) (end -2.75 12.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 58680741-0112-4ce8-8c41-411db43eb7f3))
(fp_line (start -2.75 12.49) (end -3.75 12.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51fcd30d-c46c-43a1-81b6-bfb3487c20f8))
(fp_line (start -0.5 -1.26) (end 0.5 -1.26)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 47a8fe87-c761-46d3-96ec-d66a1f0743bd))
(fp_line (start 9.75 -1.01) (end -2.75 -1.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 09f22d0a-82a1-4096-983c-78138dda1d83))
(fp_line (start 9.75 0.99) (end 9.75 -1.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ce6ab614-fefe-47c8-82f1-603752b37175))
(fp_line (start 9.75 12.49) (end 9.75 4.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f2574c5f-dacd-4846-9789-f3799a90ed14))
(fp_line (start 10.75 12.49) (end 9.75 12.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c13f1e7-6993-46f8-a204-711c362f6a19))
(fp_line (start 10.75 12.99) (end 10.75 12.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4cc52810-2010-415d-a42c-0e06a237a054))
(fp_line (start -5.15 1.99) (end -4.25 0.69)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1ba26598-bff7-4ab3-a5e4-810ba0694942))
(fp_line (start -5.15 3.44) (end -5.15 1.99)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a46dc90-7090-4cc1-a9d3-17fd7a62d367))
(fp_line (start -5.15 3.44) (end -4.25 4.74)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 514c3679-ac0a-49ca-8568-d9ffd532f06b))
(fp_line (start -4.25 11.99) (end -4.25 13.49)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 802d6161-9409-468e-a55f-29af8a6da43b))
(fp_line (start -4.25 13.49) (end 11.25 13.49)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bf140770-5974-490d-b18e-681436873f70))
(fp_line (start -3.25 0.69) (end -4.25 0.69)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d31b9cc9-ffa3-4583-8a0e-bb38d06c8aa6))
(fp_line (start -3.25 0.69) (end -3.25 -1.51)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 46f9eaa1-eff7-437a-bec8-9085ec662096))
(fp_line (start -3.25 4.74) (end -4.25 4.74)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3440e71f-b12e-44f4-92d1-b3274417efb4))
(fp_line (start -3.25 4.74) (end -3.25 11.99)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d72cad18-5654-402d-94d1-214800a0a251))
(fp_line (start -3.25 11.99) (end -4.25 11.99)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 81d16af4-975d-467d-afc7-96745a4dd504))
(fp_line (start 10.25 -1.51) (end -3.25 -1.51)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 945d54b6-5117-44ca-949e-f18c88e2f4d6))
(fp_line (start 10.25 0.69) (end 10.25 -1.51)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6b926081-959e-4b02-9176-e7f1c3ea661b))
(fp_line (start 10.25 0.69) (end 11.25 0.69)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 94094f52-77bf-4660-bc3e-b99ff4504110))
(fp_line (start 10.25 4.74) (end 11.25 4.74)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f2d3e067-3faf-489a-814c-ef4dc416c697))
(fp_line (start 10.25 11.99) (end 10.25 4.74)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ddad1a20-66d0-46f1-b5b8-37b4155acb2e))
(fp_line (start 11.25 11.99) (end 10.25 11.99)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d55ad0c6-65bf-4dd0-b5f9-9db23ad31fa5))
(fp_line (start 11.25 13.49) (end 11.25 11.99)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ce85ed81-cac4-47f1-bda7-91b6543488c6))
(fp_line (start 12.15 1.99) (end 11.25 0.69)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 53a7647e-38a3-4dbf-b648-ee507bfe269c))
(fp_line (start 12.15 1.99) (end 12.15 3.44)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 345e0c8a-b774-4a85-bbe7-b47f8ac76b57))
(fp_line (start 12.15 3.44) (end 11.25 4.74)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0461c07c-bd46-423b-a25b-6890447edfc0))
(fp_line (start -3.75 12.49) (end -2.75 12.49)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 49d94c04-c38a-44ab-b514-48e9cce23bfd))
(fp_line (start -3.75 12.99) (end -3.75 12.49)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6ce8649a-a972-4fe8-b5a9-3942389097d0))
(fp_line (start -3.75 12.99) (end 10.75 12.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ed87db09-c07f-4a6e-8a5b-c97d6bf6452a))
(fp_line (start -2.75 -1.01) (end 9.75 -1.01)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp af0a7054-4751-47c4-a517-2b2dcc3ef8c0))
(fp_line (start -2.75 12.49) (end -2.75 -1.01)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 564c1d91-c036-4cd0-82d5-582505ac5840))
(fp_line (start -0.25 -1.01) (end 0 -0.76)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 76f2eb5a-be2b-4717-82e0-e96844d37eec))
(fp_line (start 0 -0.76) (end 0.25 -1.01)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 159a7d5b-ca50-43cd-ad02-457661d0b460))
(fp_line (start 9.75 12.49) (end 9.75 -1.01)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ae299684-cffd-4b25-8496-ab816c0d0d15))
(fp_line (start 9.75 12.49) (end 10.75 12.49)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 09fb9141-c806-4b5b-8014-1de1908b73ea))
(fp_line (start 10.75 12.49) (end 10.75 12.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ee1dd3e1-e4f4-48f1-bb65-7ceaf48b907e))
(pad "1" thru_hole rect (at 0 0 270) (size 1.6 1.6) (drill 0.92) (layers "*.Cu" "*.Mask")
(net 1 "+5V") (pinfunction "VBUS") (pintype "power_in") (tstamp e85f18b9-9ee5-42a2-9635-5220c2510124))
(pad "2" thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.92) (layers "*.Cu" "*.Mask")
(net 6 "D1-") (pinfunction "D-") (pintype "bidirectional") (tstamp 5512c1c0-fc53-4e4c-b584-f9b4011b2f93))
(pad "3" thru_hole circle (at 4.5 0 270) (size 1.6 1.6) (drill 0.92) (layers "*.Cu" "*.Mask")
(net 7 "D1+") (pinfunction "D+") (pintype "bidirectional") (tstamp bb0024d6-0809-4dda-97ae-8d4192874e11))
(pad "4" thru_hole circle (at 7 0 270) (size 1.6 1.6) (drill 0.92) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 33a51b58-d535-4ad9-9a6c-022e40b154bc))
(pad "5" thru_hole oval (at -3.07 2.71 270) (size 2 3) (drill oval 1 2.3) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 49117a72-ad11-4c88-ae36-0f8cf1a1f902))
(pad "5" thru_hole oval (at 10.07 2.71 270) (size 2 3) (drill oval 1 2.3) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 7fa9aab7-f4d4-4f37-bc3d-3bb2b6224251))
(model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_A_Stewart_SS-52100-001_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (layer "F.Cu")
(tstamp 6c390402-da98-48e0-8d38-da194c6e2748)
(at 129.5 120 180)
(descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
(property "Sheetfile" "usbhub.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Polarized capacitor, small symbol")
(property "ki_keywords" "cap capacitor")
(path "/1bcc9a84-9ca0-42cd-85a9-665c9fd80f3e")
(attr through_hole)
(fp_text reference "C4" (at -2 -2.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4a9a3aed-72b8-406f-b406-b7ec8dafc4a1)
)
(fp_text value "270uF" (at 1.25 3.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6da389ee-3b67-4de9-8a9f-d1b667042839)
)
(fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd6627f2-1e1b-4d3f-ba4f-f5a43677a399)
)
(fp_line (start -1.554775 -1.475) (end -1.054775 -1.475)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 081657bf-06d2-4ae5-aafd-33111225c879))
(fp_line (start -1.304775 -1.725) (end -1.304775 -1.225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a77b14e5-66bb-4b33-bcce-2d31cb680917))
(fp_line (start 1.25 -2.58) (end 1.25 2.58)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7466eb34-d30c-4986-8404-3970b4f4936f))
(fp_line (start 1.29 -2.58) (end 1.29 2.58)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7d83ea52-5f6b-4eb2-9f7e-43fb6d77a032))
(fp_line (start 1.33 -2.579) (end 1.33 2.579)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 47d93c64-63a5-4ee3-b278-61a8e1197b4e))
(fp_line (start 1.37 -2.578) (end 1.37 2.578)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b7275b5c-750a-46a1-ac0b-2ce8daad8826))
(fp_line (start 1.41 -2.576) (end 1.41 2.576)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8101bba2-9de7-47ee-bf2f-935b5cfd3b34))
(fp_line (start 1.45 -2.573) (end 1.45 2.573)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67c6ce7e-a910-47dd-9684-a2facd58b71e))
(fp_line (start 1.49 -2.569) (end 1.49 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4089d8b1-7713-4bc5-aa28-685eba88c054))
(fp_line (start 1.49 1.04) (end 1.49 2.569)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5656159-1ffb-4410-8df4-2eb00d6d5a9e))
(fp_line (start 1.53 -2.565) (end 1.53 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 30b1e407-1bda-4063-9d92-c7d0128a5d90))
(fp_line (start 1.53 1.04) (end 1.53 2.565)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 09a64389-697a-461c-a1c8-6d191041cf0d))
(fp_line (start 1.57 -2.561) (end 1.57 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c7062aed-fc2d-441a-adb7-57112419c3ea))
(fp_line (start 1.57 1.04) (end 1.57 2.561)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3fa4fbe4-73f1-4c74-b2ac-1f4c5f00f353))
(fp_line (start 1.61 -2.556) (end 1.61 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ec3242b-c7d1-4401-be3b-68f850c4c867))
(fp_line (start 1.61 1.04) (end 1.61 2.556)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8fdfff02-5900-4bdf-90cd-e4bc8e4623d4))
(fp_line (start 1.65 -2.55) (end 1.65 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e0c54ca7-31a8-481a-9149-9f4e7199d1fb))
(fp_line (start 1.65 1.04) (end 1.65 2.55)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7c145530-2707-4c5f-ac55-e548ca59fa0e))
(fp_line (start 1.69 -2.543) (end 1.69 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 94d01da7-3168-4055-829e-eedaecfcf18a))
(fp_line (start 1.69 1.04) (end 1.69 2.543)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc71be67-0ac0-4775-9f77-d2ef1b9f6950))
(fp_line (start 1.73 -2.536) (end 1.73 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 166b34ad-f170-4d2a-a432-25e8621d4705))
(fp_line (start 1.73 1.04) (end 1.73 2.536)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3018eb67-2b56-42da-86f2-1909f04acf91))
(fp_line (start 1.77 -2.528) (end 1.77 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61b4930a-f62f-45c9-8571-9c5a814bf1d3))
(fp_line (start 1.77 1.04) (end 1.77 2.528)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3424aaa9-9d46-402e-a7a2-c628d2929dee))
(fp_line (start 1.81 -2.52) (end 1.81 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dac7ac01-9913-4295-90b8-ac3829b073a5))
(fp_line (start 1.81 1.04) (end 1.81 2.52)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8432dbd5-82da-4a4b-8eff-919b899e63c1))
(fp_line (start 1.85 -2.511) (end 1.85 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c6a1f6cc-03c8-449a-9ea3-499523950487))
(fp_line (start 1.85 1.04) (end 1.85 2.511)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e716829-c87e-4f1f-9c60-b49081c73ac1))
(fp_line (start 1.89 -2.501) (end 1.89 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dee60162-b401-4cd3-a42e-91d6d3952ebd))
(fp_line (start 1.89 1.04) (end 1.89 2.501)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f1ee4e80-dc4d-4529-bdfd-d309141a7f5e))
(fp_line (start 1.93 -2.491) (end 1.93 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d1af8bc4-f0a9-4ac3-8c04-1d144ce3e518))
(fp_line (start 1.93 1.04) (end 1.93 2.491)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 73b96ff4-d27a-42ac-a5d3-7b031d22adbe))
(fp_line (start 1.971 -2.48) (end 1.971 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 58129628-038e-408e-af2d-f5e938067f57))
(fp_line (start 1.971 1.04) (end 1.971 2.48)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 991a01fc-84c2-40a2-939f-dd3c3cc84d46))
(fp_line (start 2.011 -2.468) (end 2.011 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5e7d5b7-bc2e-4ef3-bd30-0eea202a7476))
(fp_line (start 2.011 1.04) (end 2.011 2.468)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 563bad28-8a6e-4c04-9d6d-e14e06750f1b))
(fp_line (start 2.051 -2.455) (end 2.051 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0303eac6-3ef4-4af1-9db5-017e5696a2da))
(fp_line (start 2.051 1.04) (end 2.051 2.455)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6dd2cf30-e580-407d-8eff-0715c6665b40))
(fp_line (start 2.091 -2.442) (end 2.091 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12a774be-81aa-4933-ae88-fd259956e0ce))
(fp_line (start 2.091 1.04) (end 2.091 2.442)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a33117f-c8d2-4c34-8611-c07bc01de8a5))
(fp_line (start 2.131 -2.428) (end 2.131 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd607c3e-8058-4f5f-b99f-feb4af1b0acf))
(fp_line (start 2.131 1.04) (end 2.131 2.428)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a687a2a5-8a73-484f-937a-caa1bdd04999))
(fp_line (start 2.171 -2.414) (end 2.171 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7c59ee55-2f68-4fea-9fbc-e3e0e5cb4b4f))
(fp_line (start 2.171 1.04) (end 2.171 2.414)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34578609-4702-455e-a93e-93d40d66fd99))
(fp_line (start 2.211 -2.398) (end 2.211 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 44bb3843-886f-4c34-9e9d-ecdeedfc1ec7))
(fp_line (start 2.211 1.04) (end 2.211 2.398)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8e57b1ee-9e26-4723-ada3-cb6a5fddd3a3))
(fp_line (start 2.251 -2.382) (end 2.251 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4e5419c3-5511-4b88-972c-d1a8edf7d042))
(fp_line (start 2.251 1.04) (end 2.251 2.382)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9c8bec68-63e8-46e4-86ee-6ca14370ab8f))
(fp_line (start 2.291 -2.365) (end 2.291 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2977a8b4-f429-49fc-bbe9-6ee48b2758f8))
(fp_line (start 2.291 1.04) (end 2.291 2.365)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9dead2ef-7e2e-494e-be56-3eb8e6df5d46))
(fp_line (start 2.331 -2.348) (end 2.331 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ce658d85-880f-48d4-9f94-f1c8b92ee9fa))
(fp_line (start 2.331 1.04) (end 2.331 2.348)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dd898d53-aefa-4c77-a50e-8de45c7eef90))
(fp_line (start 2.371 -2.329) (end 2.371 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 84bf0a80-c226-4e73-a3c2-74f409d7589f))
(fp_line (start 2.371 1.04) (end 2.371 2.329)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ca7111dc-fe60-4e93-b27a-f1a2ea32def4))
(fp_line (start 2.411 -2.31) (end 2.411 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0af2628-3633-4931-b097-2e2503e2bbf5))
(fp_line (start 2.411 1.04) (end 2.411 2.31)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fee2fdfc-e59a-49e8-9c53-8158730a8699))
(fp_line (start 2.451 -2.29) (end 2.451 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9acddd93-9cae-4c8f-b63b-3e8f5b6bb3ab))
(fp_line (start 2.451 1.04) (end 2.451 2.29)