-
Notifications
You must be signed in to change notification settings - Fork 1
/
RPi4_WigleBottle_v2.kicad_pcb
20225 lines (20193 loc) · 715 KB
/
RPi4_WigleBottle_v2.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)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0.051)
(solder_mask_min_width 0.25)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "Net-(D1-Pad1)")
(net 3 "Net-(D2-Pad1)")
(net 4 "Net-(D3-Pad1)")
(net 5 "Net-(D4-Pad1)")
(net 6 "/VBUS_1")
(net 7 "/VBUS_2")
(net 8 "/VBUS_3")
(net 9 "/VBUS_4")
(net 10 "/USB1_P")
(net 11 "/USB1_N")
(net 12 "/USB2_P")
(net 13 "/USB2_N")
(net 14 "/USB3_P")
(net 15 "/USB3_N")
(net 16 "/USB4_P")
(net 17 "/USB4_N")
(footprint "LED_SMD:LED_1206_3216Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-000062651309)
(at 72.26 81.026 180)
(descr "LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "diode")
(property "Sheetfile" "RPI4_USB_WigleBottle_v2.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006252fbe3")
(attr smd)
(fp_text reference "D1" (at -3.658251 -0.024749) (layer "F.SilkS")
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp 6b69fc79-c78f-4df1-9a05-c51d4173705f)
)
(fp_text value "VBus1" (at 0 1.82) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f2392fe0-54af-4e02-8793-9ba2471944b5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 2a6ee718-8cdf-4fa6-be7c-8fe885d98fd7)
)
(fp_line (start -2.285 1.135) (end 1.6 1.135) (layer "F.SilkS") (width 0.12) (tstamp 1765d6b9-ca0e-49c2-8c3c-8ab35eb3909b))
(fp_line (start -2.285 -1.135) (end -2.285 1.135) (layer "F.SilkS") (width 0.12) (tstamp 8ade7975-64a0-440a-8545-11958836bf48))
(fp_line (start 1.6 -1.135) (end -2.285 -1.135) (layer "F.SilkS") (width 0.12) (tstamp d396ce56-1974-47b7-a41b-ae2b20ef835c))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 0fc912fd-5036-4a55-b598-a9af40810824))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 55cff608-ab38-48d9-ac09-2d0a877ceca1))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp e0b36e60-bb2b-489c-a764-1b81e551ce62))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp f47374c3-cb2a-4769-880f-830c9b19222e))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer "F.Fab") (width 0.1) (tstamp 0cc094e7-c1c0-457d-bd94-3db91c23be55))
(fp_line (start -1.6 0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 341dde39-440e-4d05-8def-6a5cecefd88c))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer "F.Fab") (width 0.1) (tstamp 680c3e83-f590-4924-85a1-36d51b076683))
(fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp e07e1653-d05d-4bf2-bea3-6515a06de065))
(fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp e7893166-2c2c-41b4-bd84-76ebc2e06551))
(pad "1" smd roundrect locked (at -1.4 0 180) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 2 "Net-(D1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 9c0314b1-f82f-432d-95a0-65e191202552))
(pad "2" smd roundrect locked (at 1.4 0 180) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 6 "/VBUS_1") (pinfunction "A") (pintype "passive") (tstamp be030c62-e776-405f-97d8-4a4c1aa2e428))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_1206_3216Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00006265131c)
(at 72.514 116.84 180)
(descr "LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "diode")
(property "Sheetfile" "RPI4_USB_WigleBottle_v2.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000062536f9e")
(attr smd)
(fp_text reference "D2" (at -3.353451 -0.026051) (layer "F.SilkS")
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp e46ecd61-0bbe-4b9f-a151-a2cacac5967b)
)
(fp_text value "VBus2" (at 0 1.82) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6e77d4d6-0239-4c20-98f8-23ae4f71d638)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 9666bb6a-0c1d-4c92-be6d-94a465ec5c51)
)
(fp_line (start -2.285 1.135) (end 1.6 1.135) (layer "F.SilkS") (width 0.12) (tstamp 2e6b1f7e-e4c3-43a1-ae90-c85aa40696d5))
(fp_line (start -2.285 -1.135) (end -2.285 1.135) (layer "F.SilkS") (width 0.12) (tstamp 36696ac6-2db1-4b52-ae3d-9f3c89d2042f))
(fp_line (start 1.6 -1.135) (end -2.285 -1.135) (layer "F.SilkS") (width 0.12) (tstamp 460147d8-e4b6-4910-88e9-07d1ddd6c2df))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 042fe62b-53aa-4e86-97d0-9ccb1e16a895))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 5dbda758-e74b-4ccf-ad68-495d537d68ba))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp b853d9ac-7829-468f-99ac-dc9996502e94))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp c10ace36-a93c-4c08-ac75-059ef9e1f71c))
(fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 046ca2d8-3ca1-4c64-8090-c45e9adcf30e))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer "F.Fab") (width 0.1) (tstamp 87a0ffb1-5477-4b20-a3ac-fef5af129a33))
(fp_line (start -1.6 0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp a4541b62-7a39-4707-9c6f-80dce1be9cee))
(fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp b9c0c276-e6f1-47dd-b072-0f92904248ca))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer "F.Fab") (width 0.1) (tstamp c62adb8b-b306-48da-b0ae-f6a287e54f62))
(pad "1" smd roundrect locked (at -1.4 0 180) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 3 "Net-(D2-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 89bd1fdd-6a91-474e-8495-7a2ba7eb6260))
(pad "2" smd roundrect locked (at 1.4 0 180) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 7 "/VBUS_2") (pinfunction "A") (pintype "passive") (tstamp 8b022692-69b7-4bd6-bf38-57edecf356fa))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_1206_3216Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00006265132f)
(at 89.786 81.026)
(descr "LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "diode")
(property "Sheetfile" "RPI4_USB_WigleBottle_v2.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000062538173")
(attr smd)
(fp_text reference "D3" (at -3.429651 0.100949) (layer "F.SilkS")
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp 6fd21292-6577-40e1-bbda-18906b5e9f6f)
)
(fp_text value "VBus3" (at 0 1.82) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 22ab392d-1989-4185-9178-8083812ea067)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp d5a7688c-7438-4b6d-999f-4f2a3cb18fd6)
)
(fp_line (start -2.285 1.135) (end 1.6 1.135) (layer "F.SilkS") (width 0.12) (tstamp 1527299a-08b3-47c3-929f-a75c83be365e))
(fp_line (start -2.285 -1.135) (end -2.285 1.135) (layer "F.SilkS") (width 0.12) (tstamp aa288a22-ea1d-474d-8dae-efe971580843))
(fp_line (start 1.6 -1.135) (end -2.285 -1.135) (layer "F.SilkS") (width 0.12) (tstamp e9a9fba3-7cfa-45ca-926c-a5a8ecd7e3a4))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 0c9bbc06-f1c0-4359-8448-9c515b32a886))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 2dc66f7e-d85d-4081-ae71-fd8851d6aeda))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 58a87288-e2bf-4c88-9871-a753efc69e9d))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp b606e532-e4c7-444d-b9ff-879f52cfde92))
(fp_line (start -1.6 0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 0ff398d7-e6e2-4972-a7a4-438407886f34))
(fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 18dee026-9999-4f10-8c36-736131349406))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer "F.Fab") (width 0.1) (tstamp 9e427954-2486-4c91-89b5-6af73a073442))
(fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp d372e2ac-d81e-48b7-8c55-9bbe58eeffc3))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer "F.Fab") (width 0.1) (tstamp db532ed2-914c-41b4-b389-de2bf235d0a7))
(pad "1" smd roundrect locked (at -1.4 0) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 4 "Net-(D3-Pad1)") (pinfunction "K") (pintype "passive") (tstamp b121f1ff-8472-460b-ab2d-5110ddd1ca28))
(pad "2" smd roundrect locked (at 1.4 0) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 8 "/VBUS_3") (pinfunction "A") (pintype "passive") (tstamp 153169ce-9fac-4868-bc4e-e1381c5bb726))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_1206_3216Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-000062651342)
(at 89.792 117.094)
(descr "LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "diode")
(property "Sheetfile" "RPI4_USB_WigleBottle_v2.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006253954e")
(attr smd)
(fp_text reference "D4" (at -3.3812 -0.0254) (layer "F.SilkS")
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp 799d9f4a-bb6b-44d5-9f4c-3a30db59943d)
)
(fp_text value "VBus4" (at 0 1.82) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c220da05-2a98-47be-9327-0c73c5263c41)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 23345f3e-d08d-4834-b1dc-64de02569916)
)
(fp_line (start 1.6 -1.135) (end -2.285 -1.135) (layer "F.SilkS") (width 0.12) (tstamp 19515fa4-c166-4b6e-837d-c01a89e98000))
(fp_line (start -2.285 1.135) (end 1.6 1.135) (layer "F.SilkS") (width 0.12) (tstamp 6474aa6c-825c-4f0f-9938-759b68df02a5))
(fp_line (start -2.285 -1.135) (end -2.285 1.135) (layer "F.SilkS") (width 0.12) (tstamp f48f1d12-9008-4743-81e2-bdec45db64a1))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 0d095387-710d-4633-a6c3-04eab60b585a))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 5099f397-6fe7-454f-899c-34e2b5f22ca7))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp a12b751e-ae7a-468c-af3d-31ed4d501b01))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp ea7c53f9-3aa8-4198-9879-de95a5257915))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer "F.Fab") (width 0.1) (tstamp 10fa1a8c-62cb-4b8f-b916-b18d737ff71b))
(fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 43f341b3-06e9-4e7a-a26e-5365b89d76bf))
(fp_line (start -1.6 0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 4d51bc15-1f84-46be-8e16-e836b10f854e))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer "F.Fab") (width 0.1) (tstamp 9e18f8b3-9e1a-4022-9224-10c12ca8a28d))
(fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp cd48b13f-c989-4ac1-a7f0-053afcd77527))
(pad "1" smd roundrect locked (at -1.4 0) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 5 "Net-(D4-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 750e60a2-e808-4253-8275-b79930fb2714))
(pad "2" smd roundrect locked (at 1.4 0) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 9 "/VBUS_4") (pinfunction "A") (pintype "passive") (tstamp e7376da1-2f59-4570-81e8-46fca0289df0))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_A_Molex_105057_Vertical" (layer "F.Cu")
(tedit 6265E31E) (tstamp 00000000-0000-0000-0000-00006265139a)
(at 61.5188 83.9216 30)
(descr "https://www.molex.com/pdm_docs/sd/1050570001_sd.pdf")
(tags "USB A Vertical")
(property "Sheetfile" "RPI4_USB_WigleBottle_v2.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000624e2480")
(attr through_hole)
(fp_text reference "P5" (at -6.054107 -3.41377 30) (layer "F.SilkS")
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp 5c1d6842-15a5-4f73-b198-8836681840a1)
)
(fp_text value "USB_A_5" (at 3.5 2.4 30) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f66bb685-9833-454c-bf31-b96598f50347)
)
(fp_text user "${REFERENCE}" (at 3.45 -2.15 30) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8efe6411-1919-4082-b5b8-393585e068c8)
)
(fp_line (start -6.7 -2.9) (end -1.75 -2.9) (layer "F.SilkS") (width 0.12) (tstamp 26296271-780a-4da9-8e69-910d9240bca1))
(fp_line (start 6.7 3.1) (end -6.7 3.1) (layer "F.SilkS") (width 0.12) (tstamp 56f0a67a-a93a-477a-9778-70fe2cfeeb5a))
(fp_line (start -6.7 -2.9) (end -6.7 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 7ac1ccc5-26c5-4b73-8425-7bbec927bf24))
(fp_line (start 6.7 -2.9) (end 1.75 -2.9) (layer "F.SilkS") (width 0.12) (tstamp a819bf9a-0c8b-443a-b488-e5f1395d77ad))
(fp_line (start 6.7 -2.9) (end 6.7 -0.3) (layer "F.SilkS") (width 0.12) (tstamp e29e8d7d-cee8-47d4-8444-1d7032daf03c))
(fp_line (start -8.02 -4.23) (end 8.02 -4.23) (layer "F.CrtYd") (width 0.05) (tstamp 5f059fcf-8990-4db3-9058-7f232d9600e1))
(fp_line (start -8.02 3.46) (end -8.02 -4.23) (layer "F.CrtYd") (width 0.05) (tstamp 6a25c4e1-7129-430c-892b-6eecb6ffdb47))
(fp_line (start 8.02 3.46) (end -8.02 3.46) (layer "F.CrtYd") (width 0.05) (tstamp d8f24303-7e52-49a9-9e82-8d60c3aaa009))
(fp_line (start 8.02 -4.23) (end 8.02 3.46) (layer "F.CrtYd") (width 0.05) (tstamp fcb4f52a-a6cb-4ca0-970a-4c8a2c0f3942))
(fp_line (start -4.15 2.96) (end -6.55 2.96) (layer "F.Fab") (width 0.1) (tstamp 173fd4a7-b485-4e9d-8724-470865466784))
(fp_line (start 6.55 2.96) (end -2.85 2.96) (layer "F.Fab") (width 0.1) (tstamp 1a7e7b16-fc7c-4e64-9ace-48cc78112437))
(fp_line (start -6.55 -2.76) (end 6.55 -2.76) (layer "F.Fab") (width 0.1) (tstamp 5cc7655c-62f2-43d2-a7a5-eaa4635dada8))
(fp_line (start 6.55 -2.76) (end 6.55 2.96) (layer "F.Fab") (width 0.1) (tstamp 6a1ae8ee-dea6-4015-b83e-baf8fcdfaf0f))
(fp_line (start -3.5 2.2) (end -2.85 2.96) (layer "F.Fab") (width 0.1) (tstamp 96ee9b8e-4543-4639-b9ea-44b8baaaf94e))
(fp_line (start -6.55 2.96) (end -6.55 -2.76) (layer "F.Fab") (width 0.1) (tstamp a08c061a-7f5b-4909-b673-0d0a59a012a3))
(fp_line (start -4.15 2.96) (end -3.5 2.2) (layer "F.Fab") (width 0.1) (tstamp bab3431c-ede6-417b-8033-763748a11a9f))
(pad "1" thru_hole rect locked (at -3.5 2 30) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 6 "/VBUS_1") (pinfunction "VBUS") (pintype "power_in") (tstamp 41ab46ed-40f5-461d-81aa-1f02dc069a49))
(pad "2" thru_hole circle locked (at -1 2 30) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 11 "/USB1_N") (pinfunction "D-") (pintype "bidirectional") (tstamp b6924901-677d-424a-a3f4-52c8dd1fa5f5))
(pad "3" thru_hole circle locked (at 1 2 30) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 10 "/USB1_P") (pinfunction "D+") (pintype "bidirectional") (tstamp 92574e8a-729f-48de-afcb-97b4f5e826f8))
(pad "4" thru_hole circle locked (at 3.5 2 30) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp fe4068b9-89da-4c59-ba51-b5949772f5d8))
(pad "5" thru_hole oval locked (at 6.57 1.4 30) (size 1.9 2.9) (drill oval 1.3 2.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 2bbd6c26-4114-4518-8f4a-c6fdadc046b6))
(pad "5" thru_hole oval locked (at 0 -2.78 120) (size 1.9 2.9) (drill oval 1.3 2.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 4e7a230a-c1a4-4455-81ee-277835acf4a2))
(pad "5" thru_hole oval locked (at -6.57 1.4 210) (size 1.9 2.9) (drill oval 1.3 2.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 51f5536d-48d2-4807-be44-93f427952b0e))
(model "${KISYS3DMOD}/Connector_USB.3dshapes/USB_A_Molex_105057_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_A_Molex_105057_Vertical" (layer "F.Cu")
(tedit 6265E31E) (tstamp 00000000-0000-0000-0000-0000626513ee)
(at 100.584 114.169781 -150)
(descr "https://www.molex.com/pdm_docs/sd/1050570001_sd.pdf")
(tags "USB A Vertical")
(property "Sheetfile" "RPI4_USB_WigleBottle_v2.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000062525cc3")
(attr through_hole)
(fp_text reference "P8" (at 6.125949 -3.508805 30) (layer "F.SilkS")
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp 4f3dc5bc-04e8-4dcc-91dd-8782e84f321d)
)
(fp_text value "USB_A_8" (at 3.5 2.4 30) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3273ec61-4a33-41c2-82bf-cde7c8587c1b)
)
(fp_text user "${REFERENCE}" (at 3.45 -2.15 30) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 868b5d0d-f911-4724-9580-d9e69eb9f709)
)
(fp_line (start 6.7 -2.9) (end 6.7 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 009b0d62-e9ea-4825-9fdf-befd291c76ce))
(fp_line (start -6.7 -2.9) (end -6.7 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 45836d49-cd5f-417d-b0f6-c8b43d196a36))
(fp_line (start 6.7 -2.9) (end 1.75 -2.9) (layer "F.SilkS") (width 0.12) (tstamp 62cbcc21-2cec-41ab-be06-499e1a78d7e7))
(fp_line (start 6.7 3.1) (end -6.7 3.1) (layer "F.SilkS") (width 0.12) (tstamp c2211bf7-6ed0-4800-9f21-d6a078bedba2))
(fp_line (start -6.7 -2.9) (end -1.75 -2.9) (layer "F.SilkS") (width 0.12) (tstamp ef400389-7e37-4c93-8647-76318089d59f))
(fp_line (start -8.02 -4.23) (end 8.02 -4.23) (layer "F.CrtYd") (width 0.05) (tstamp 094dc71e-7ea9-4e30-8ba7-749216ec2a8b))
(fp_line (start 8.02 3.46) (end -8.02 3.46) (layer "F.CrtYd") (width 0.05) (tstamp 28d267fd-6d61-43bb-9705-8d59d7a44e81))
(fp_line (start -8.02 3.46) (end -8.02 -4.23) (layer "F.CrtYd") (width 0.05) (tstamp 583b0bf3-0699-44db-b975-a241ad040fa4))
(fp_line (start 8.02 -4.23) (end 8.02 3.46) (layer "F.CrtYd") (width 0.05) (tstamp ffb86135-b43f-4a42-9aa6-73aa7ba972a9))
(fp_line (start -4.15 2.96) (end -3.5 2.2) (layer "F.Fab") (width 0.1) (tstamp 186c3f1e-1c94-498e-abf2-1069980f6633))
(fp_line (start -6.55 2.96) (end -6.55 -2.76) (layer "F.Fab") (width 0.1) (tstamp 6d1e2df9-cc89-4e18-a541-699f0d20dd45))
(fp_line (start -3.5 2.2) (end -2.85 2.96) (layer "F.Fab") (width 0.1) (tstamp 761492e2-a989-4596-80c3-fcd6943df072))
(fp_line (start 6.55 2.96) (end -2.85 2.96) (layer "F.Fab") (width 0.1) (tstamp 92d17eb0-c75d-48d9-ae9e-ea0c7f723be4))
(fp_line (start 6.55 -2.76) (end 6.55 2.96) (layer "F.Fab") (width 0.1) (tstamp f2044410-03ac-4994-9652-9e5f480320f0))
(fp_line (start -6.55 -2.76) (end 6.55 -2.76) (layer "F.Fab") (width 0.1) (tstamp f7758f2a-e5c9-405c-960a-353b36eaf72d))
(fp_line (start -4.15 2.96) (end -6.55 2.96) (layer "F.Fab") (width 0.1) (tstamp fc12372f-6e31-40f9-8043-b00b861f0171))
(pad "1" thru_hole rect locked (at -3.5 2 210) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 9 "/VBUS_4") (pinfunction "VBUS") (pintype "power_in") (tstamp 1d1a7683-c090-4798-9b40-7ed0d9f3ce3b))
(pad "2" thru_hole circle locked (at -1 2 210) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 17 "/USB4_N") (pinfunction "D-") (pintype "bidirectional") (tstamp 3d70e675-48ae-4edd-b95d-3ca51e634018))
(pad "3" thru_hole circle locked (at 1 2 210) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 16 "/USB4_P") (pinfunction "D+") (pintype "bidirectional") (tstamp ed247857-b2a3-4b23-90ad-758c01ae5e8e))
(pad "4" thru_hole circle locked (at 3.5 2 210) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp f5a3f95b-1a53-41b4-b208-bf168c9d9c6d))
(pad "5" thru_hole oval locked (at 0 -2.78 300) (size 1.9 2.9) (drill oval 1.3 2.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 3d2a15cb-c492-4d9a-b1dd-7d5f099d2d31))
(pad "5" thru_hole oval locked (at 6.57 1.4 210) (size 1.9 2.9) (drill oval 1.3 2.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 848901d5-fdee-4920-a04d-fbc03c912e79))
(pad "5" thru_hole oval locked (at -6.57 1.4 30) (size 1.9 2.9) (drill oval 1.3 2.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 926b329f-cd0d-410a-bc4a-e36446f8965a))
(model "${KISYS3DMOD}/Connector_USB.3dshapes/USB_A_Molex_105057_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric" (layer "F.Cu")
(tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-0000626513ff)
(at 73.53 83.566 180)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "RPI4_USB_WigleBottle_v2.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006252f4ab")
(attr smd)
(fp_text reference "R1" (at -3.353451 0.051451) (layer "F.SilkS")
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp ee9a2826-2513-480e-a552-3d07af5bf8a5)
)
(fp_text value "1k" (at 0 1.82) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 771cb5c1-62ba-4cca-999e-cdcbe417213c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 8e75264b-b45e-45ec-b230-7e1dce7d68b3)
)
(fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer "F.SilkS") (width 0.12) (tstamp 72f9157b-77da-4a6d-9880-0711b21f6e23))
(fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp ce55d4e5-cb2b-4927-9979-4a7fc840f632))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 5a010660-4a0b-4680-b361-32d4c3b60537))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 81ab7ed7-7160-4650-b711-4daa2902dc8b))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp b7dfd91c-6180-48d0-832a-f6a5a032a686))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp dbbbcbf5-ed09-4c20-902c-70f108158aba))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 312474c5-a081-4cd1-b2e6-730f0718514a))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 61a18b62-4111-4a9d-8fca-04c4c6f90cc3))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 97693043-81ba-44a2-b87b-aca6193e0970))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp a6dd3322-fcf5-4e4f-88bb-77a3d82a4d05))
(pad "1" smd roundrect locked (at -1.4 0 180) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 2 "Net-(D1-Pad1)") (pintype "passive") (tstamp 9404ce4c-2ce6-4f88-8062-13577800d257))
(pad "2" smd roundrect locked (at 1.4 0 180) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 1 "GND") (pintype "passive") (tstamp 717b25a7-c9c2-4f6f-b744-a96113325c99))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric" (layer "F.Cu")
(tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-000062651410)
(at 73.784 114.3 180)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "RPI4_USB_WigleBottle_v2.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000062536f98")
(attr smd)
(fp_text reference "R2" (at -3.302 -0.0508) (layer "F.SilkS")
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp bcfbc157-43ce-49f7-bd18-6a9e2f2f30a3)
)
(fp_text value "1k" (at 0 1.82) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f931f973-5615-451c-bb04-9a02aede6e6f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 25625d99-d45f-4b2f-9e62-009a122611f4)
)
(fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 02491520-945f-40c4-9160-4e5db9ac115d))
(fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer "F.SilkS") (width 0.12) (tstamp 64269ac3-771b-4c0d-91e0-eafc3dc4a07f))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 100847e3-630c-4c13-ba45-180e92370805))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 2edc487e-09a5-4e4e-9675-a7b323f56380))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp a43f2e19-4e11-4e86-a12a-58a691d6df28))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp d23840a6-3c61-45ca-968a-bc57332fd7a4))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 4c6a1dad-7acf-4a52-99b0-316025d1ab04))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 909d0bdd-8a15-40f2-9dfd-be4a5d2d6b25))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp a46a2b22-69cf-45fb-b1d2-32ac89bbd3c8))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp fe9bdc33-eab1-4bdc-9603-57decb38d2a2))
(pad "1" smd roundrect locked (at -1.4 0 180) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 3 "Net-(D2-Pad1)") (pintype "passive") (tstamp b1240f00-ec43-4c0b-9a41-43264db8a893))
(pad "2" smd roundrect locked (at 1.4 0 180) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 1 "GND") (pintype "passive") (tstamp b5d84bc0-4d9a-4d1d-a476-5c6b51309fca))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric" (layer "F.Cu")
(tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-000062651421)
(at 88.516 83.566)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "RPI4_USB_WigleBottle_v2.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006253816d")
(attr smd)
(fp_text reference "R3" (at -3.404251 -0.026051) (layer "F.SilkS")
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp 53ae21b8-f187-4817-8c27-1f06278d249b)
)
(fp_text value "1k" (at 0 1.82) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c0c62e93-8e84-4f2b-96ae-e90b55e0550a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 4b042b6c-c042-4cf1-ba6e-bd77c51dbedb)
)
(fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer "F.SilkS") (width 0.12) (tstamp 792ace59-9f73-49b7-92df-01568ab2b00b))
(fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 900cb6c8-1d05-4537-a4f0-9a7cc1a2ea1c))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 056788ec-4ecf-4826-b996-bd884a6442a0))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 90f2ca05-313f-4af8-87b1-a8109224a221))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 9e5fe65d-f158-4eb5-af93-2b5d0b9a0d55))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp a86cc026-cc17-4a81-85bf-4c26f61b9f32))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 278deae2-fb37-4957-b2cb-afac30cacb12))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp b4fbe1fb-a9a3-4020-9a82-d3fa1900cd85))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp b500fd76-a613-4f44-aac4-99213e86ff44))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp bc05cdd5-f72f-4c21-b397-0fa889871114))
(pad "1" smd roundrect locked (at -1.4 0) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 4 "Net-(D3-Pad1)") (pintype "passive") (tstamp 70186eba-dcad-4878-bf16-887f6eee49df))
(pad "2" smd roundrect locked (at 1.4 0) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 1 "GND") (pintype "passive") (tstamp 31070a40-077c-4123-96dd-e39f8a0007ce))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric" (layer "F.Cu")
(tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-000062651432)
(at 88.522 114.554)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "RPI4_USB_WigleBottle_v2.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000062539548")
(attr smd)
(fp_text reference "R4" (at -3.3782 0.0762) (layer "F.SilkS")
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp 8fbab3d0-cb5e-47c7-8764-6fa3c0e4e5f7)
)
(fp_text value "1k" (at 0 1.82) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a25ec672-f935-4d0c-ae67-7c3ebe078d85)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 19a5aacd-255a-4bf3-89c1-efd2ab61016c)
)
(fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 60960af7-b938-44a8-82b5-e9c36f2e6817))
(fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer "F.SilkS") (width 0.12) (tstamp d33c6077-a8ec-48ca-b0e0-97f3539ef54c))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 3dbc1b14-20e2-4dcb-8347-d33c13d3f0e0))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 4b534cd1-c414-4029-9164-e46766faf60e))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 5fba7ff8-02f1-4ac0-93c4-5bd7becbcf63))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 9c2a29da-c83f-4ec8-bbcf-9d775812af04))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 2ba21493-929b-4122-ac0f-7aeaf8602cef))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 47957453-fce7-4d98-833c-e34bb8a852a5))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 73a6ec8e-8641-4014-be28-4611d398be32))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 8aa8d47e-f495-4049-8ac9-7f2ac3205412))
(pad "1" smd roundrect locked (at -1.4 0) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 5 "Net-(D4-Pad1)") (pintype "passive") (tstamp 6e508bf2-c65e-4107-867d-a3cf9a86c69e))
(pad "2" smd roundrect locked (at 1.4 0) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 1 "GND") (pintype "passive") (tstamp 3388a811-b444-4ecc-a564-b22a1b731ab4))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_A_Molex_0480370001_Vertical" (layer "F.Cu")
(tedit 62771990) (tstamp 00000000-0000-0000-0000-000062655a14)
(at 86.177 101.949 180)
(descr "https://www.molex.com/pdm_docs/sd/1050570001_sd.pdf")
(tags "USB A Vertical")
(property "Sheetfile" "RPI4_USB_WigleBottle_v2.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000062521041")
(attr through_hole)
(fp_text reference "P2" (at 3.9826 -3.6134) (layer "F.SilkS")
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp 4acb6903-d605-451b-8f31-fceadcb3d302)
)
(fp_text value "USB_A_2" (at 3.5 2.4) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5cf4a95e-3029-4795-96b2-525d3c591e34)
)
(fp_text user "${REFERENCE}" (at 3.937 -3.683) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 24f39f1d-2750-4df8-96da-b11934e7531e)
)
(fp_line (start 10.2 1.1) (end -3.2 1.1) (layer "F.SilkS") (width 0.12) (tstamp 54a65f1f-79fb-46a7-8ee1-51815ed233cc))
(fp_line (start -3.2 1.1) (end -3.175 -2.921) (layer "F.SilkS") (width 0.12) (tstamp 8f2f1abc-3e9c-4a55-9155-bda9119bf499))
(fp_line (start -3.175 -2.921) (end 10.16 -2.921) (layer "F.SilkS") (width 0.12) (tstamp a2f4eef9-d471-477e-829b-035409249039))
(fp_line (start 10.16 -2.921) (end 10.2 1.1) (layer "F.SilkS") (width 0.12) (tstamp fcd65930-f58f-44a9-a7cd-3a4e83e3576d))
(fp_line (start 11.52 -3.048) (end 11.52 1.46) (layer "F.CrtYd") (width 0.05) (tstamp 2cd952e8-d252-41d6-a95f-bbf7976f8529))
(fp_line (start -4.52 -3.048) (end 11.52 -3.048) (layer "F.CrtYd") (width 0.05) (tstamp 8c0c588c-b5f6-4dab-8243-9ecea6940234))
(fp_line (start -4.52 1.46) (end -4.52 -3.048) (layer "F.CrtYd") (width 0.05) (tstamp b8f937a2-e1ca-484a-a923-91520a48911f))
(fp_line (start 11.52 1.46) (end -4.52 1.46) (layer "F.CrtYd") (width 0.05) (tstamp c12f272e-6bc0-4d16-a825-3462c3f2fb40))
(fp_line (start 10.16 -2.54) (end 10.16 0.889) (layer "F.Fab") (width 0.1) (tstamp 07bfcdd9-7ca8-4828-acf5-d0a8f16318b1))
(fp_line (start 0 0.2) (end 0.65 0.96) (layer "F.Fab") (width 0.1) (tstamp 17c85cd4-9209-49f3-a526-1d9d2cb648a3))
(fp_line (start -0.65 0.96) (end -3.05 0.96) (layer "F.Fab") (width 0.1) (tstamp 40689813-ef0c-4fdf-8f14-19ff2d1591d5))
(fp_line (start -3.05 0.96) (end -3.048 -2.54) (layer "F.Fab") (width 0.1) (tstamp 46852c85-88aa-421d-9126-b3e8769eb11c))
(fp_line (start 10.16 0.889) (end 10.05 0.96) (layer "F.Fab") (width 0.1) (tstamp 47c11fc4-bbbc-4f9a-a11e-2870de9840a1))
(fp_line (start -0.65 0.96) (end 0 0.2) (layer "F.Fab") (width 0.1) (tstamp 513a87a9-0baf-4449-929d-7d0b88d536d3))
(fp_line (start -3.048 -2.54) (end 10.16 -2.54) (layer "F.Fab") (width 0.1) (tstamp 6fbc2d36-c2e1-4fa5-96fe-3406277cce5d))
(fp_line (start 10.05 0.96) (end 0.65 0.96) (layer "F.Fab") (width 0.1) (tstamp c2d5fb3b-0819-4f78-a660-906ca83dd8cf))
(pad "1" thru_hole rect (at 0 0 180) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 7 "/VBUS_2") (pinfunction "VBUS") (pintype "power_in") (tstamp fdb9e341-2b0e-4be4-a7fa-2c631c557ff9))
(pad "2" thru_hole circle (at 2.5 0 180) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 13 "/USB2_N") (pinfunction "D-") (pintype "bidirectional") (tstamp a27140b0-4cc8-404b-8e15-601da806f971))
(pad "3" thru_hole circle (at 4.5 0 180) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 12 "/USB2_P") (pinfunction "D+") (pintype "bidirectional") (tstamp 52b51979-cf4c-493d-a67d-7f0c05fb1f77))
(pad "4" thru_hole circle (at 7 0 180) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 1cac57b3-8ceb-4b5c-91a1-05662a726783))
(pad "5" thru_hole oval (at 10.07 -0.6 180) (size 1.9 2.9) (drill oval 1.3 2.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 40d8b147-9657-4c6c-9d14-5e6f26e4e74e))
(pad "5" thru_hole oval (at -3.07 -0.6) (size 1.9 2.9) (drill oval 1.3 2.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 5257a3ed-f6c3-48f6-87a4-f640eb6a3935))
(model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_A_Molex_105057_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_A_Molex_0480370001_Vertical" (layer "F.Cu")
(tedit 62771990) (tstamp 00000000-0000-0000-0000-000062655a68)
(at 86.177 94.075 180)
(descr "https://www.molex.com/pdm_docs/sd/1050570001_sd.pdf")
(tags "USB A Vertical")
(property "Sheetfile" "RPI4_USB_WigleBottle_v2.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000624db7ad")
(attr through_hole)
(fp_text reference "P1" (at 3.937 -3.683) (layer "F.SilkS")
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp a1f84086-e425-4809-97aa-111a4865d9cd)
)
(fp_text value "USB_A_1" (at 3.5 2.4) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 99e6bac8-f931-4755-8af0-7a51409ca7f6)
)
(fp_text user "${REFERENCE}" (at 3.937 -3.683) (layer "F.Fab")
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp 16f7de9d-d177-4e13-b8be-3ebe7ef61d46)
)
(fp_line (start -3.2 1.1) (end -3.175 -2.921) (layer "F.SilkS") (width 0.12) (tstamp 64e9843f-34e2-493d-a603-c75388b73a1a))
(fp_line (start 10.16 -2.921) (end 10.2 1.1) (layer "F.SilkS") (width 0.12) (tstamp 847548ac-82f5-4fb6-963c-c59fd2661c57))
(fp_line (start 10.2 1.1) (end -3.2 1.1) (layer "F.SilkS") (width 0.12) (tstamp a9f1a520-788a-4900-a012-44a537e52ba3))
(fp_line (start -3.175 -2.921) (end 10.16 -2.921) (layer "F.SilkS") (width 0.12) (tstamp e7e41df4-870e-4629-8a92-99bcfb9ce8bf))
(fp_line (start -4.52 1.46) (end -4.52 -3.048) (layer "F.CrtYd") (width 0.05) (tstamp 0bc5839a-a487-4efb-aa39-bed37a5da9b7))
(fp_line (start 11.52 -3.048) (end 11.52 1.46) (layer "F.CrtYd") (width 0.05) (tstamp 5496e240-b2f3-4578-944b-24d621279461))
(fp_line (start 11.52 1.46) (end -4.52 1.46) (layer "F.CrtYd") (width 0.05) (tstamp 7c6352ff-2874-4d70-97af-43c9d32b8330))
(fp_line (start -4.52 -3.048) (end 11.52 -3.048) (layer "F.CrtYd") (width 0.05) (tstamp 926cc1ad-5eb7-4bb0-b857-514ecb6a4b69))
(fp_line (start -3.05 0.96) (end -3.048 -2.54) (layer "F.Fab") (width 0.1) (tstamp 0032ecd9-e021-4767-87ea-dbe98fc775d3))
(fp_line (start 10.16 0.889) (end 10.05 0.96) (layer "F.Fab") (width 0.1) (tstamp 165be370-5c1b-4c04-b8c0-5c42987245fd))
(fp_line (start -0.65 0.96) (end 0 0.2) (layer "F.Fab") (width 0.1) (tstamp 7b889014-93a7-467b-912d-97cf91505f2b))
(fp_line (start 0 0.2) (end 0.65 0.96) (layer "F.Fab") (width 0.1) (tstamp 85be523f-d3a3-4b44-bd0c-68e67402a91f))
(fp_line (start -3.048 -2.54) (end 10.16 -2.54) (layer "F.Fab") (width 0.1) (tstamp 91a5b01a-dc0c-41af-b302-325149b6c5bc))
(fp_line (start 10.05 0.96) (end 0.65 0.96) (layer "F.Fab") (width 0.1) (tstamp 97ab3624-a649-4572-bacb-66ccf279374d))
(fp_line (start -0.65 0.96) (end -3.05 0.96) (layer "F.Fab") (width 0.1) (tstamp bbbe8f75-69f5-4abb-bb03-5c539632e4ec))
(fp_line (start 10.16 -2.54) (end 10.16 0.889) (layer "F.Fab") (width 0.1) (tstamp e6176dc3-dece-4fdc-a03b-18f0b2e8a09a))
(pad "1" thru_hole rect (at 0 0 180) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 6 "/VBUS_1") (pinfunction "VBUS") (pintype "power_in") (tstamp 524670ec-c913-4797-8c96-e6f18c3d8e3b))
(pad "2" thru_hole circle (at 2.5 0 180) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 11 "/USB1_N") (pinfunction "D-") (pintype "bidirectional") (tstamp 151bdbd9-540a-4d57-a026-59fdb6d1a9fb))
(pad "3" thru_hole circle (at 4.5 0 180) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 10 "/USB1_P") (pinfunction "D+") (pintype "bidirectional") (tstamp 4d78e0c0-a677-4d39-9060-4ea1668e413e))
(pad "4" thru_hole circle (at 7 0 180) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 453e9bca-ef6d-4831-9c00-40bfcbcd1321))
(pad "5" thru_hole oval (at -3.07 -0.6) (size 1.9 2.9) (drill oval 1.3 2.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 21c07fcd-fdac-4bd9-8bcd-c9a450b6f782))
(pad "5" thru_hole oval (at 10.07 -0.6 180) (size 1.9 2.9) (drill oval 1.3 2.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 96b3b0b4-3236-498e-a30d-6650d5ceb32e))
(model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_A_Molex_105057_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_A_Molex_0480370001_Vertical" (layer "F.Cu")
(tedit 62771990) (tstamp 00000000-0000-0000-0000-000062655a92)
(at 104.719 102.076 180)
(descr "https://www.molex.com/pdm_docs/sd/1050570001_sd.pdf")
(tags "USB A Vertical")
(property "Sheetfile" "RPI4_USB_WigleBottle_v2.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000062525cbd")
(attr through_hole)
(fp_text reference "P4" (at 3.937 -3.683) (layer "F.SilkS")
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp d2d1740e-e03f-4f61-a236-e0c1249c45ae)
)
(fp_text value "USB_A_4" (at 3.5 2.4) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e58f57ce-8a86-4a1e-b77e-2a80134184bd)
)
(fp_text user "${REFERENCE}" (at 3.937 -3.683) (layer "F.Fab")
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp 568ac882-c274-4909-ac8c-ebbbfcce79b4)
)
(fp_line (start -3.2 1.1) (end -3.175 -2.921) (layer "F.SilkS") (width 0.12) (tstamp 1f954221-c657-4867-9404-430322aac2e2))
(fp_line (start -3.175 -2.921) (end 10.16 -2.921) (layer "F.SilkS") (width 0.12) (tstamp 55e2bcbe-7765-477f-9905-2549d79d50f3))
(fp_line (start 10.2 1.1) (end -3.2 1.1) (layer "F.SilkS") (width 0.12) (tstamp 6ed373e8-b6a7-4720-9660-00bf3330fd8a))
(fp_line (start 10.16 -2.921) (end 10.2 1.1) (layer "F.SilkS") (width 0.12) (tstamp c6d95d12-cb32-4b41-ab2d-700bad231688))
(fp_line (start -4.52 -3.048) (end 11.52 -3.048) (layer "F.CrtYd") (width 0.05) (tstamp 4b1b7cea-261f-40e7-bad9-9e1eafc76172))
(fp_line (start 11.52 -3.048) (end 11.52 1.46) (layer "F.CrtYd") (width 0.05) (tstamp 69dec0a2-5a23-4e82-94d0-9ff8f3326570))
(fp_line (start 11.52 1.46) (end -4.52 1.46) (layer "F.CrtYd") (width 0.05) (tstamp 6c4551ce-f223-43ad-98b8-af893027b975))
(fp_line (start -4.52 1.46) (end -4.52 -3.048) (layer "F.CrtYd") (width 0.05) (tstamp 915e3bb5-9e41-4562-a33f-aa92405d9b20))
(fp_line (start 10.16 -2.54) (end 10.16 0.889) (layer "F.Fab") (width 0.1) (tstamp 310768f5-2e27-45a5-9fc4-77a1739d13ad))
(fp_line (start -0.65 0.96) (end -3.05 0.96) (layer "F.Fab") (width 0.1) (tstamp 36731b4d-8bc4-49ed-948a-ee7ac929fe85))
(fp_line (start 0 0.2) (end 0.65 0.96) (layer "F.Fab") (width 0.1) (tstamp 3baab755-bd97-4628-b156-0da9d264a26e))
(fp_line (start 10.05 0.96) (end 0.65 0.96) (layer "F.Fab") (width 0.1) (tstamp 56113715-6dba-4f98-a42c-3d8cd37c81f0))
(fp_line (start -3.048 -2.54) (end 10.16 -2.54) (layer "F.Fab") (width 0.1) (tstamp 62461801-76c9-4d2c-8a69-762ead93c2ca))
(fp_line (start -0.65 0.96) (end 0 0.2) (layer "F.Fab") (width 0.1) (tstamp 66d19a42-fa1f-44da-9d52-b0747cf52ec7))
(fp_line (start 10.16 0.889) (end 10.05 0.96) (layer "F.Fab") (width 0.1) (tstamp dcf516d5-e7ca-446f-b67e-372ba1276362))
(fp_line (start -3.05 0.96) (end -3.048 -2.54) (layer "F.Fab") (width 0.1) (tstamp e304f44b-fab1-4f82-a0cd-7684d0c2a61d))
(pad "1" thru_hole rect (at 0 0 180) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 9 "/VBUS_4") (pinfunction "VBUS") (pintype "power_in") (tstamp 088f869e-d1c1-4d57-96de-fe2a9565279d))
(pad "2" thru_hole circle (at 2.5 0 180) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 17 "/USB4_N") (pinfunction "D-") (pintype "bidirectional") (tstamp 48308de8-8e38-40b4-931f-45a338285d6b))
(pad "3" thru_hole circle (at 4.5 0 180) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 16 "/USB4_P") (pinfunction "D+") (pintype "bidirectional") (tstamp 09d9bd5d-4f31-4c63-90dd-555f4ac5e8c6))
(pad "4" thru_hole circle (at 7 0 180) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp a57eaf5c-ba6b-4883-8462-8b420c2b08a4))
(pad "5" thru_hole oval (at -3.07 -0.6) (size 1.9 2.9) (drill oval 1.3 2.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 0a6dbb70-c770-476c-98d8-afd487816dbd))
(pad "5" thru_hole oval (at 10.07 -0.6 180) (size 1.9 2.9) (drill oval 1.3 2.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp a488276d-9050-46e3-82e9-1bfda80d9766))
(model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_A_Molex_105057_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_A_Molex_0480370001_Vertical" (layer "F.Cu")
(tedit 62771990) (tstamp 00000000-0000-0000-0000-00006265df2d)
(at 104.719 94.075 180)
(descr "https://www.molex.com/pdm_docs/sd/1050570001_sd.pdf")
(tags "USB A Vertical")
(property "Sheetfile" "RPI4_USB_WigleBottle_v2.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000625235cc")
(attr through_hole)
(fp_text reference "P3" (at 3.937 -3.683) (layer "F.SilkS")
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp 7e107049-2cd3-4c41-933e-3841bb6a0763)
)
(fp_text value "USB_A_3" (at 3.5 2.4) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9b306dd7-03ac-421e-bd3d-be31c973258e)
)
(fp_text user "${REFERENCE}" (at 3.937 -3.683) (layer "F.Fab")
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp 9feae25b-f786-477c-91cf-528a0c2fc9db)
)
(fp_line (start -3.2 1.1) (end -3.175 -2.921) (layer "F.SilkS") (width 0.12) (tstamp 3cdb46b5-b7a1-446b-a727-fdbae221247c))
(fp_line (start -3.175 -2.921) (end 10.16 -2.921) (layer "F.SilkS") (width 0.12) (tstamp 48fcf1f4-ff8b-4b73-9158-da3c55031423))
(fp_line (start 10.16 -2.921) (end 10.2 1.1) (layer "F.SilkS") (width 0.12) (tstamp 882cc98e-15cb-4898-b722-0120abbd238a))
(fp_line (start 10.2 1.1) (end -3.2 1.1) (layer "F.SilkS") (width 0.12) (tstamp bd1a0aa5-2762-4b66-9f67-c6c05bde4102))
(fp_line (start 11.52 1.46) (end -4.52 1.46) (layer "F.CrtYd") (width 0.05) (tstamp 087cbb38-abc7-4403-94a8-aad84b0b0b74))
(fp_line (start -4.52 1.46) (end -4.52 -3.048) (layer "F.CrtYd") (width 0.05) (tstamp 47dfbe46-6b72-4166-88ec-d932b0325f1e))
(fp_line (start -4.52 -3.048) (end 11.52 -3.048) (layer "F.CrtYd") (width 0.05) (tstamp ab7531c3-58d6-4a3e-852b-660887ef622a))
(fp_line (start 11.52 -3.048) (end 11.52 1.46) (layer "F.CrtYd") (width 0.05) (tstamp d9cd2baa-b56f-4d12-9c11-74b3dd99fb9c))
(fp_line (start 10.16 0.889) (end 10.05 0.96) (layer "F.Fab") (width 0.1) (tstamp 15ad6f5d-afa6-49fd-9e0e-8babaab03298))
(fp_line (start -3.05 0.96) (end -3.048 -2.54) (layer "F.Fab") (width 0.1) (tstamp 2cec683e-c4ef-42ad-ac00-923f2c490337))
(fp_line (start -0.65 0.96) (end -3.05 0.96) (layer "F.Fab") (width 0.1) (tstamp 5f1624db-1d29-4b59-a254-8c66d11dedba))
(fp_line (start 10.16 -2.54) (end 10.16 0.889) (layer "F.Fab") (width 0.1) (tstamp 8770461d-1958-41ac-b787-77326e07cdc0))
(fp_line (start -0.65 0.96) (end 0 0.2) (layer "F.Fab") (width 0.1) (tstamp c0d3bcd8-4da2-4a83-bc4c-0153dcd5443b))
(fp_line (start 0 0.2) (end 0.65 0.96) (layer "F.Fab") (width 0.1) (tstamp c8011ad2-79f4-43ce-bc5f-a4eb113fbf2e))
(fp_line (start -3.048 -2.54) (end 10.16 -2.54) (layer "F.Fab") (width 0.1) (tstamp ccd1fdca-03d6-4055-be03-9157fa38705d))
(fp_line (start 10.05 0.96) (end 0.65 0.96) (layer "F.Fab") (width 0.1) (tstamp f4e79fa3-e3ad-461d-81b7-892086da0d90))
(pad "1" thru_hole rect (at 0 0 180) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 8 "/VBUS_3") (pinfunction "VBUS") (pintype "power_in") (tstamp 8eed75b3-8df6-4780-9500-43717325d864))
(pad "2" thru_hole circle (at 2.5 0 180) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 15 "/USB3_N") (pinfunction "D-") (pintype "bidirectional") (tstamp b06d44d7-e749-4b3e-a5a2-2aba241e3fea))
(pad "3" thru_hole circle (at 4.5 0 180) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 14 "/USB3_P") (pinfunction "D+") (pintype "bidirectional") (tstamp b7a53bc5-13fa-4d51-9ca7-b69480a67738))
(pad "4" thru_hole circle (at 7 0 180) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 68ee1f6b-30d2-4487-b36f-b8e0a2ddf1ca))
(pad "5" thru_hole oval (at -3.07 -0.6) (size 1.9 2.9) (drill oval 1.3 2.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 4e5da7fc-8d4e-4e22-aead-8276725f2c66))
(pad "5" thru_hole oval (at 10.07 -0.6 180) (size 1.9 2.9) (drill oval 1.3 2.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp d04bed34-2b5a-4470-a790-9ede8d34cfbd))
(model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_A_Molex_105057_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_A_Molex_105057_Vertical" (layer "F.Cu")
(tedit 6265E31E) (tstamp 00000000-0000-0000-0000-00006265e34f)
(at 61.5589 114.169781 150)
(descr "https://www.molex.com/pdm_docs/sd/1050570001_sd.pdf")
(tags "USB A Vertical")
(property "Sheetfile" "RPI4_USB_WigleBottle_v2.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000062521047")
(attr through_hole)
(fp_text reference "P6" (at -5.992447 -3.39086 150) (layer "F.SilkS")
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp 2fb9964c-4cd4-4e81-b5e8-f78759d3adb5)
)
(fp_text value "USB_A_6" (at 3.5 2.4 150) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 05e45f00-3c6b-4c0c-9ffb-3fe26fcda007)
)
(fp_text user "${REFERENCE}" (at -6.005568 -3.370149 150) (layer "F.Fab")
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp eb7e294c-b398-413b-8b78-85a66ed5f3ea)
)
(fp_line (start -6.7 -2.9) (end -6.7 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 04d60995-4f82-4f17-8f82-2f27a0a779cc))
(fp_line (start 6.7 3.1) (end -6.7 3.1) (layer "F.SilkS") (width 0.12) (tstamp 40b38567-9d6a-4691-bccf-1b4dbe39957b))
(fp_line (start 6.7 -2.9) (end 6.7 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 6f44a349-1ba9-4965-b217-aa1589a07228))
(fp_line (start 6.7 -2.9) (end 1.75 -2.9) (layer "F.SilkS") (width 0.12) (tstamp b45059f3-613f-4b7a-a70a-ed75a9e941e6))
(fp_line (start -6.7 -2.9) (end -1.75 -2.9) (layer "F.SilkS") (width 0.12) (tstamp f74eb612-4697-4cb4-afe4-9f94828b954d))
(fp_line (start 8.02 -4.23) (end 8.02 3.46) (layer "F.CrtYd") (width 0.05) (tstamp 01109662-12b4-48a3-b68d-624008909c2a))
(fp_line (start -8.02 3.46) (end -8.02 -4.23) (layer "F.CrtYd") (width 0.05) (tstamp 1a813eeb-ee58-4579-81e1-3f9a7227213c))
(fp_line (start 8.02 3.46) (end -8.02 3.46) (layer "F.CrtYd") (width 0.05) (tstamp b754bfb3-a198-47be-8e7b-61bec885a5db))
(fp_line (start -8.02 -4.23) (end 8.02 -4.23) (layer "F.CrtYd") (width 0.05) (tstamp fab1abc4-c49d-4b88-8c7f-939d7feb7b6c))
(fp_line (start -6.55 2.96) (end -6.55 -2.76) (layer "F.Fab") (width 0.1) (tstamp 0e166909-afb5-4d70-a00b-dd78cd09b084))
(fp_line (start -6.55 -2.76) (end 6.55 -2.76) (layer "F.Fab") (width 0.1) (tstamp 5a889284-4c9f-49be-8f02-e43e18550914))
(fp_line (start -4.15 2.96) (end -6.55 2.96) (layer "F.Fab") (width 0.1) (tstamp 621c8eb9-ae87-439a-b350-badb5d559a5a))
(fp_line (start 6.55 2.96) (end -2.85 2.96) (layer "F.Fab") (width 0.1) (tstamp 72cc7949-68f8-4ef8-adcb-a65c1d042672))
(fp_line (start -3.5 2.2) (end -2.85 2.96) (layer "F.Fab") (width 0.1) (tstamp b2001159-b6cb-4000-85f5-34f6c410920f))
(fp_line (start 6.55 -2.76) (end 6.55 2.96) (layer "F.Fab") (width 0.1) (tstamp dc7523a5-4408-4a51-bc92-6a47a538c094))
(fp_line (start -4.15 2.96) (end -3.5 2.2) (layer "F.Fab") (width 0.1) (tstamp fb191df4-267d-4797-80dd-be346b8eeb99))
(pad "1" thru_hole rect locked (at -3.5 2 150) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 7 "/VBUS_2") (pinfunction "VBUS") (pintype "power_in") (tstamp bc1d5740-b0c7-4566-95b0-470ac47a1fb3))
(pad "2" thru_hole circle locked (at -1 2 150) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 13 "/USB2_N") (pinfunction "D-") (pintype "bidirectional") (tstamp c480dba7-51ff-4a4f-9251-e48b2784c64a))
(pad "3" thru_hole circle locked (at 1 2 150) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 12 "/USB2_P") (pinfunction "D+") (pintype "bidirectional") (tstamp a419542a-0c78-421e-9ac7-81d3afba6186))
(pad "4" thru_hole circle locked (at 3.5 2 150) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 414f80f7-b2d5-43c3-a018-819efe44fe30))
(pad "5" thru_hole oval locked (at 0 -2.78 240) (size 1.9 2.9) (drill oval 1.3 2.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 1b5a32e4-0b8e-4f38-b679-71dc277c2087))
(pad "5" thru_hole oval locked (at -6.57 1.4 330) (size 1.9 2.9) (drill oval 1.3 2.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 494d4ce3-60c4-4021-8bd1-ab41a12b14ed))
(pad "5" thru_hole oval locked (at 6.57 1.4 150) (size 1.9 2.9) (drill oval 1.3 2.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 84febc35-87fd-4cad-8e04-2b66390cfc12))
(model "${KISYS3DMOD}/Connector_USB.3dshapes/USB_A_Molex_105057_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_A_Molex_105057_Vertical" (layer "F.Cu")
(tedit 6265E31E) (tstamp 00000000-0000-0000-0000-00006265e926)
(at 100.5947 83.84862 -30)
(descr "https://www.molex.com/pdm_docs/sd/1050570001_sd.pdf")
(tags "USB A Vertical")
(property "Sheetfile" "RPI4_USB_WigleBottle_v2.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000625235d2")
(attr through_hole)
(fp_text reference "P7" (at 6.046329 -3.549676 150) (layer "F.SilkS")
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp 1053b01a-057e-4e79-a21c-42780a737ea9)
)
(fp_text value "USB_A_7" (at 3.5 2.4 150) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a1701438-3c8b-4b49-8695-36ec7f9ae4d2)
)
(fp_text user "${REFERENCE}" (at 3.45 -2.15 150) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1ae3634a-f90f-4c6a-8ba7-b38f98d4ccb2)
)
(fp_line (start -6.7 -2.9) (end -6.7 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 21ca1c08-b8a3-4bdc-9356-70a4d86ee444))
(fp_line (start 6.7 -2.9) (end 6.7 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 784e3230-2053-4bc9-a786-5ac2bd0df0f5))
(fp_line (start 6.7 -2.9) (end 1.75 -2.9) (layer "F.SilkS") (width 0.12) (tstamp a04f8542-6c38-4d5c-bdbb-c8e0311a0936))
(fp_line (start -6.7 -2.9) (end -1.75 -2.9) (layer "F.SilkS") (width 0.12) (tstamp b1731e91-7698-42fa-ad60-5c60fdd0e1fc))
(fp_line (start 6.7 3.1) (end -6.7 3.1) (layer "F.SilkS") (width 0.12) (tstamp f8a90052-1a8b-4ce5-a1fd-87db944dceac))
(fp_line (start 8.02 -4.23) (end 8.02 3.46) (layer "F.CrtYd") (width 0.05) (tstamp 1d9dc91c-3457-4ca5-8e42-43be60ae0831))
(fp_line (start -8.02 -4.23) (end 8.02 -4.23) (layer "F.CrtYd") (width 0.05) (tstamp 2a4f1c24-6486-4fd8-8092-72bb07a81274))
(fp_line (start 8.02 3.46) (end -8.02 3.46) (layer "F.CrtYd") (width 0.05) (tstamp e6bf257d-5112-423c-b70a-adf8446f29da))
(fp_line (start -8.02 3.46) (end -8.02 -4.23) (layer "F.CrtYd") (width 0.05) (tstamp f1c2e9b0-6f9f-485b-b482-d408df476d0f))
(fp_line (start 6.55 2.96) (end -2.85 2.96) (layer "F.Fab") (width 0.1) (tstamp 08926936-9ea4-4894-afca-caca47f3c238))
(fp_line (start -4.15 2.96) (end -3.5 2.2) (layer "F.Fab") (width 0.1) (tstamp 2c10387c-3cac-4a7c-bbfb-95d69f41a890))
(fp_line (start 6.55 -2.76) (end 6.55 2.96) (layer "F.Fab") (width 0.1) (tstamp 80b9a57f-3326-43ca-b6ca-5e911992b3c4))
(fp_line (start -6.55 2.96) (end -6.55 -2.76) (layer "F.Fab") (width 0.1) (tstamp 897277a3-b7ce-4d18-8c5f-1c984a246298))
(fp_line (start -4.15 2.96) (end -6.55 2.96) (layer "F.Fab") (width 0.1) (tstamp a7c83b25-afbd-4974-8870-387db8f81a5c))
(fp_line (start -3.5 2.2) (end -2.85 2.96) (layer "F.Fab") (width 0.1) (tstamp c7db4903-f95a-49f5-bcce-c52f0ca8defc))
(fp_line (start -6.55 -2.76) (end 6.55 -2.76) (layer "F.Fab") (width 0.1) (tstamp ed612f6d-67c1-4198-976d-84139f8d99bc))
(pad "1" thru_hole rect locked (at -3.5 2 330) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 8 "/VBUS_3") (pinfunction "VBUS") (pintype "power_in") (tstamp 92d938cc-f8b1-437d-8914-3d97a0938f67))
(pad "2" thru_hole circle locked (at -1 2 330) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 15 "/USB3_N") (pinfunction "D-") (pintype "bidirectional") (tstamp d04eabf5-018b-4006-a739-ce16277681b7))
(pad "3" thru_hole circle locked (at 1 2 330) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 14 "/USB3_P") (pinfunction "D+") (pintype "bidirectional") (tstamp 3382bf79-b686-4aeb-9419-c8ab591662bb))
(pad "4" thru_hole circle locked (at 3.5 2 330) (size 1.3 1.3) (drill 0.9) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp bc204c79-0619-4b16-889d-335bfdd71ce0))
(pad "5" thru_hole oval locked (at -6.57 1.4 150) (size 1.9 2.9) (drill oval 1.3 2.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 017667a9-f5de-49c7-af53-4f9af2f3a311))
(pad "5" thru_hole oval locked (at 6.57 1.4 330) (size 1.9 2.9) (drill oval 1.3 2.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 4c144ffa-02d0-42da-aef1-f5175cbde9c0))
(pad "5" thru_hole oval locked (at 0 -2.78 60) (size 1.9 2.9) (drill oval 1.3 2.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 7d2422a2-6679-4b2f-b253-47eef0da2414))
(model "${KISYS3DMOD}/Connector_USB.3dshapes/USB_A_Molex_105057_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.7mm_Pad_Via" (layer "F.Cu")
(tedit 56DDBBFF) (tstamp 00000000-0000-0000-0000-000062665159)
(at 81.1276 80.9752)
(descr "Mounting Hole 2.7mm")
(tags "mounting hole 2.7mm")
(property "Sheetfile" "RPI4_USB_WigleBottle_v2.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006266a5c4")
(attr exclude_from_pos_files)
(fp_text reference "M3" (at 0 -3.7) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a6d9a4e-fe6a-4427-9f0c-a10fd3ceb923)
)
(fp_text value "M2.5" (at 0 3.7) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d1422f38-9fce-4f5e-878a-341530beaf9c)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9bac5a37-2a55-41dd-96ea-ec02b69e3ef4)
)
(fp_circle (center 0 0) (end 2.7 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 18e95a1d-9d1d-4b93-8e4c-2d03c344acc0))
(fp_circle (center 0 0) (end 2.95 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp d91b4df3-08ca-4c95-92de-3004566cf2e7))
(pad "1" thru_hole circle locked (at 1.431891 -1.431891) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 058e77a4-10af-4bc8-a984-5984d3bbee4c))
(pad "1" thru_hole circle locked (at 1.431891 1.431891) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 0bbd2e43-3eb0-4216-861b-a58366dbe43d))
(pad "1" thru_hole circle locked (at 2.025 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 1eca5f72-2356-4c55-919d-595727faf3b9))
(pad "1" thru_hole circle locked (at 0 2.025) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 44e993be-f2df-4e61-a598-dfd6e106a208))
(pad "1" thru_hole circle locked (at -2.025 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 45b7fe01-a2fa-40c2-a3a2-4a9ae7c34dba))
(pad "1" thru_hole circle locked (at -1.431891 -1.431891) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 4c4b4317-29d0-438a-b331-525ede18773a))
(pad "1" thru_hole circle locked (at 0 0) (size 5.4 5.4) (drill 2.7) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 5dffd1d6-faf9-418e-b9a0-84fb6b6b4454))
(pad "1" thru_hole circle locked (at -1.431891 1.431891) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 6239967a-77bd-4ec9-89cd-e04efd8dbe26))
(pad "1" thru_hole circle locked (at 0 -2.025) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 83d9db3e-661a-47bf-b26c-99313ad8bac9))
)
(footprint "MountingHole:MountingHole_2.7mm_Pad_Via" (layer "F.Cu")
(tedit 56DDBBFF) (tstamp 00000000-0000-0000-0000-000062665169)
(at 81.0768 117.094)
(descr "Mounting Hole 2.7mm")
(tags "mounting hole 2.7mm")
(property "Sheetfile" "RPI4_USB_WigleBottle_v2.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006266b6e4")
(attr exclude_from_pos_files)
(fp_text reference "M4" (at 0 -3.7) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b9f8b708-1745-43ec-9646-59495cbc6e07)
)
(fp_text value "M2.5" (at 0 3.7) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 84d5cf13-52aa-4648-82e7-8be6e886a6b2)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp de2abbd8-9b48-47ba-b77e-4c65ca048af6)
)
(fp_circle (center 0 0) (end 2.7 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 0ab1512b-eb91-4574-b11f-326e0ff10082))
(fp_circle (center 0 0) (end 2.95 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 9a458d6a-a84c-4faf-913e-90bab231d3f8))
(pad "1" thru_hole circle locked (at -1.431891 1.431891) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 18208121-3872-4be3-a687-40854be3e1c8))
(pad "1" thru_hole circle locked (at 0 2.025) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 2cd2fee2-51b2-4fcd-8c94-c435e6791358))
(pad "1" thru_hole circle locked (at -2.025 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 3768cce7-1e64-480e-bb38-0c6794a852ac))
(pad "1" thru_hole circle locked (at -1.431891 -1.431891) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 3d213c37-de80-490e-9f45-2814d3fc958b))
(pad "1" thru_hole circle locked (at 2.025 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp a1d977e9-aa2c-4b7a-b2e3-8ff3b816e1f2))
(pad "1" thru_hole circle locked (at 1.431891 -1.431891) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp a353a360-a1da-42d3-a5f2-38aafc184a50))
(pad "1" thru_hole circle locked (at 0 0) (size 5.4 5.4) (drill 2.7) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp a4a80e68-9a9c-4dac-84a7-a9f3c47a0961))
(pad "1" thru_hole circle locked (at 0 -2.025) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp c202ddee-78ab-4ebb-beca-559aaf118430))
(pad "1" thru_hole circle locked (at 1.431891 1.431891) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp e5889358-36b5-4652-9d71-4d4aa652a144))
)
(footprint "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 04f5865e-f449-4408-a0c8-771cccfcb129)
(at 70.915 78.486)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "RPI4_USB_WigleBottle_v2.kicad_sch")
(property "Sheetname" "")
(path "/c151d613-7888-4346-b973-1bc3055854ee")
(attr smd)
(fp_text reference "C1" (at 3.3528 -0.0254) (layer "F.SilkS")
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp a501555e-bbc7-4b58-ad89-28a0cd3dd6d0)
)
(fp_text value "100n" (at 0 1.850001) (layer "F.Fab") hide