-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgamepad.kicad_pcb
22039 lines (21981 loc) · 850 KB
/
gamepad.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.58)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" power)
(2 "In2.Cu" power)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "prepreg") (thickness 0.11) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 2" (type "core") (thickness 1.2) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 3" (type "prepreg") (thickness 0.11) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "output/")
)
)
(net 0 "")
(net 1 "+3.3VA")
(net 2 "GND")
(net 3 "/NRST")
(net 4 "/OSC_IN")
(net 5 "Net-(C5-Pad2)")
(net 6 "/B_X")
(net 7 "/B_Y")
(net 8 "/B_A")
(net 9 "/B_B")
(net 10 "/BOOT0")
(net 11 "/OSC_OUT")
(net 12 "/J_B")
(net 13 "/J_X")
(net 14 "/J_Y")
(net 15 "+5V")
(net 16 "/USB_DN")
(net 17 "/USB_DP")
(net 18 "/SWDIO")
(net 19 "/SWDCLK")
(net 20 "/B_L")
(net 21 "Net-(XT1-SHIELD)")
(net 22 "Net-(XT2-Pin_2)")
(net 23 "Net-(XT2-Pin_3)")
(net 24 "/LED")
(net 25 "Net-(SW5-A)")
(net 26 "/D+")
(net 27 "/D-")
(net 28 "unconnected-(U3-NC-Pad4)")
(net 29 "Net-(XT1-CC1)")
(net 30 "Net-(XT1-CC2)")
(net 31 "unconnected-(XT1-SBU1-PadA8)")
(net 32 "unconnected-(XT1-SBU2-PadB8)")
(net 33 "Net-(D1-A)")
(net 34 "Net-(D2-A)")
(footprint "gamepad:Button_12mm" (layer "F.Cu")
(tstamp 1015b6f8-092d-4422-84ae-8dd680ccb236)
(at 172.5 133.25)
(property "Sheetfile" "gamepad.kicad_sch")
(property "Sheetname" "")
(path "/99f8ff40-6450-499b-9418-43bfc186eb28")
(attr smd)
(fp_text reference "SW3" (at 14.5 0.65 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 3c3bce26-407c-4f44-a2d2-4aa9dcf580e1)
)
(fp_text value "~" (at 4.75 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 76c7c134-f5c6-4da2-8d8e-a61f96a1bd3f)
)
(fp_text user "${REFERENCE}" (at 4.75 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 34deeba1-55fb-484f-a365-1237f34e8c05)
)
(fp_line (start 0 -10.5) (end 0 -8.4)
(stroke (width 0.2) (type default)) (layer "F.SilkS") (tstamp 787acb09-affc-4d94-8608-4a6075ffdd43))
(fp_line (start 0 -10.5) (end 12.5 -10.5)
(stroke (width 0.2) (type default)) (layer "F.SilkS") (tstamp a884cd0a-3714-47c6-9388-54f636459af2))
(fp_line (start 0 -3.4) (end 0 -5.6)
(stroke (width 0.2) (type default)) (layer "F.SilkS") (tstamp ecfe2586-2b92-4087-839f-6ac387c68eca))
(fp_line (start 0 -0.6) (end 0 1.5)
(stroke (width 0.2) (type default)) (layer "F.SilkS") (tstamp b52e4797-9d4d-441d-af4c-0a33627d6f2d))
(fp_line (start 12.5 -10.5) (end 12.5 -8.4)
(stroke (width 0.2) (type default)) (layer "F.SilkS") (tstamp 7a0f2649-8cfa-4eb7-8565-d7b5ecebb242))
(fp_line (start 12.5 -3.4) (end 12.5 -5.6)
(stroke (width 0.2) (type default)) (layer "F.SilkS") (tstamp 83b2539c-fdc8-45d4-bd9a-2418421ee624))
(fp_line (start 12.5 -0.6) (end 12.5 1.5)
(stroke (width 0.2) (type default)) (layer "F.SilkS") (tstamp 662cc434-6251-44a1-be74-c9c2b7154fae))
(fp_line (start 12.5 1.5) (end 0 1.5)
(stroke (width 0.2) (type default)) (layer "F.SilkS") (tstamp 4759026c-a657-4b3b-bf9b-8513f9e52945))
(pad "" np_thru_hole circle (at 6.25 -9) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (tstamp fccb0fbe-3dec-47eb-bc3f-40f439903ba8))
(pad "" np_thru_hole circle (at 6.25 0) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (tstamp 056f1ae9-b8aa-402a-8e22-8a782220ba32))
(pad "1" thru_hole oval (at 0 -2 90) (size 2 1.6) (drill oval 1.2 0.8) (layers "*.Cu" "*.Mask")
(net 8 "/B_A") (pintype "bidirectional") (thermal_bridge_angle 45) (tstamp 08ba53e5-a7ef-4ca1-8738-43848169a0fd))
(pad "1" thru_hole oval (at 12.5 -2 270) (size 2 1.6) (drill oval 1.2 0.8) (layers "*.Cu" "*.Mask")
(net 8 "/B_A") (pintype "bidirectional") (thermal_bridge_angle 45) (tstamp 07466437-4e8e-4902-93c2-362e6f820f20))
(pad "2" thru_hole oval (at 0 -7 90) (size 2 1.6) (drill oval 1.2 0.8) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pintype "bidirectional") (thermal_bridge_angle 45) (tstamp c8213b3e-7cf4-4e05-82ce-62b3d0b140dc))
(pad "2" thru_hole oval (at 12.5 -7 90) (size 2 1.6) (drill oval 1.2 0.8) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pintype "bidirectional") (thermal_bridge_angle 45) (tstamp bdf13b3e-1f3a-4ce2-ac53-7c414513aeb9))
)
(footprint "Crystal:Crystal_SMD_5032-2Pin_5.0x3.2mm" (layer "F.Cu")
(tstamp 14016737-cb9d-4aa8-a6b0-b2bb72b2fcbb)
(at 134.85 113.675 180)
(descr "SMD Crystal SERIES SMD2520/2 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, 5.0x3.2mm^2 package")
(tags "SMD SMT crystal")
(property "Sheetfile" "gamepad.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Two pin crystal")
(property "ki_keywords" "quartz ceramic resonator oscillator")
(path "/7756723d-6097-4c48-978d-53c84d7539ac")
(attr smd)
(fp_text reference "Y1" (at 0.05 2.75) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7ad9bd3e-310e-4b62-a94e-43163f3ed152)
)
(fp_text value "Crystal" (at 0 2.8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9d645b24-5e99-4a52-bebb-0c4a44423119)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8b5a80ca-d411-4dbc-84b8-f24d8a032549)
)
(fp_circle (center 0 0) (end 0.093333 0)
(stroke (width 0.186667) (type solid)) (fill none) (layer "F.Adhes") (tstamp 1c437d3a-3c0c-4b52-80e5-d0375041f776))
(fp_circle (center 0 0) (end 0.213333 0)
(stroke (width 0.133333) (type solid)) (fill none) (layer "F.Adhes") (tstamp 9528620d-0a08-4752-90c0-7eaa56733d9e))
(fp_circle (center 0 0) (end 0.333333 0)
(stroke (width 0.133333) (type solid)) (fill none) (layer "F.Adhes") (tstamp 3a7e3ae1-c134-4a78-95c0-5dc9a799854b))
(fp_circle (center 0 0) (end 0.4 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Adhes") (tstamp 3ed98196-1456-4130-8db0-b8bcf1e5e29a))
(fp_line (start -3.05 -1.8) (end -3.05 1.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34a709ec-b410-4159-8df3-2b1183ec4a34))
(fp_line (start -3.05 1.8) (end 2.7 1.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1cb00766-6743-4e8b-b4c8-84bccd87c584))
(fp_line (start 2.7 -1.8) (end -3.05 -1.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 093efec3-17e0-454d-8ef9-02f7ee420690))
(fp_line (start -3.1 -1.9) (end -3.1 1.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0ef45a31-19e3-4f49-aedf-eccf0a7156b8))
(fp_line (start -3.1 1.9) (end 3.1 1.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1eca03dc-c1d3-4ddc-8aba-a4106d2b9730))
(fp_line (start 3.1 -1.9) (end -3.1 -1.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5fa6bde8-884d-4c62-a091-7e7038ad3ab5))
(fp_line (start 3.1 1.9) (end 3.1 -1.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2d6332d3-5551-4114-b3e4-0645deb39d4f))
(fp_line (start -2.5 -1.4) (end -2.3 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a37f5f2e-ec38-4cb7-b565-f7bf5464fd02))
(fp_line (start -2.5 0.6) (end -1.5 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 24364b89-425a-4e07-a6cc-272f94130ae9))
(fp_line (start -2.5 1.4) (end -2.5 -1.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6012f265-1b94-4f5c-9027-b6b98c247599))
(fp_line (start -2.3 -1.6) (end 2.3 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 966bff02-3e62-4ed4-80f9-c10b7774ef62))
(fp_line (start -2.3 1.6) (end -2.5 1.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d12c421e-9c52-4af3-b0c6-93834bd10782))
(fp_line (start 2.3 -1.6) (end 2.5 -1.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fd78fa73-f7a0-4ffb-9bc4-d170a973be9a))
(fp_line (start 2.3 1.6) (end -2.3 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4d2ee3cf-a4c2-42e5-bdd2-676d37cb3a51))
(fp_line (start 2.5 -1.4) (end 2.5 1.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ef066966-ecad-4622-b3eb-29c0e109eca1))
(fp_line (start 2.5 1.4) (end 2.3 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f8dbbc3b-36d5-4e58-b4a9-b6cd59a31d98))
(pad "1" smd rect (at -1.85 0 180) (size 2 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "/OSC_IN") (pinfunction "1") (pintype "passive") (tstamp 9eeb6ade-0e39-407a-b4d0-5aeb5f06af7c))
(pad "2" smd rect (at 1.85 0 180) (size 2 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(C5-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 87f714ee-13f5-4148-9a2a-ee018b64e91d))
(model "${KICAD6_3DMODEL_DIR}/Crystal.3dshapes/Crystal_SMD_5032-2Pin_5.0x3.2mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 17707630-41ab-40ee-a5ae-7ba044658fe2)
(at 136.7 109.675 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "gamepad.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/3b4cdd8b-3e37-4e3f-a87c-21b027b972de")
(attr smd)
(fp_text reference "C4" (at -2.575 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a0008aa4-c903-4f5a-8622-ff499c15bf2c)
)
(fp_text value "18pF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9e744721-d6f0-4a88-b06b-8f4a923f4ea0)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 2c5c5f52-f8fb-4874-a80b-1407290478a8)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ee03e5f-6810-40f5-ace6-fd09923e0cb9))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a96b13dc-1b5b-4dea-afbd-1cde033c9c51))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f762358b-bc50-472e-a380-e83cf2c3fa9c))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 478658bb-8682-41b1-89a4-9213ac3665a7))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 797cf6ae-39d7-4220-8afc-a752c79ec941))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a9bc1015-ecea-4851-81dc-3f9aa005f48f))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 75506515-4bd4-439c-af3c-76d08fb198cb))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 52c12055-7422-4bc9-a5cb-58fa619f2e93))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 488e7d58-3e8f-4618-9bed-cd002a449195))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp caa83a06-e750-4063-afb0-80f259610c6a))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 525d6fc9-469e-495c-a29d-592f47f47a85))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/OSC_IN") (pintype "passive") (tstamp 1a0da90d-dab0-46bc-8cfe-8e8ddc04117e))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0805_2012Metric" (layer "F.Cu")
(tstamp 1a613abe-b961-4285-bbf2-ae4243e348be)
(at 161 97.8 -90)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "gamepad.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/99a654ae-c528-4459-ac59-21b5e59ed5f5")
(attr smd)
(fp_text reference "D2" (at 0.8 -1.8 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d8174386-8095-4ee7-b494-6287379fd385)
)
(fp_text value "LED" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a257fdf4-4b37-45ca-b46f-ab6922c9e4d3)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp ab047eb7-8bd7-4316-8c3d-e939c58ba7cb)
)
(fp_line (start -1.685 -0.96) (end -1.685 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27994466-1fa1-44e5-8b9a-59b4ffe93a36))
(fp_line (start -1.685 0.96) (end 1 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d41dc5fb-e185-49d6-87f9-f4bbe704568d))
(fp_line (start 1 -0.96) (end -1.685 -0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 681790a0-9e2e-4f12-ad90-16622879267d))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fae68bd9-013a-4bae-8775-cde81d2317df))
(fp_line (start -1.68 0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 40d969ae-dc17-4411-bf90-e01d5b9fd6f7))
(fp_line (start 1.68 -0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cfb28bba-0ac5-4e28-b039-1bceadadcb9d))
(fp_line (start 1.68 0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6fee997f-e571-4505-8933-6c592737978d))
(fp_line (start -1 -0.3) (end -1 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c30006bf-ce7d-425f-bb55-104ebf71dfc6))
(fp_line (start -1 0.6) (end 1 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 14e2efdd-8a5f-4a95-9873-853a4599b5f9))
(fp_line (start -0.7 -0.6) (end -1 -0.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0ab9ad1b-cd43-4a6e-bb79-be96298343f1))
(fp_line (start 1 -0.6) (end -0.7 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d978d080-9890-47f8-8db0-6603e05cda9d))
(fp_line (start 1 0.6) (end 1 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8f507a8e-9bc7-4bc0-90f9-83f4544b8923))
(pad "1" smd roundrect (at -0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp b2229b6c-f4b1-4523-bbab-c91e2f0de5e8))
(pad "2" smd roundrect (at 0.9375 0 270) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "Net-(D2-A)") (pinfunction "A") (pintype "passive") (tstamp 95f482ea-c41b-4be9-beb7-2cc0f468c3b1))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 223a8a40-021d-40b4-90cf-0441edb017a3)
(at 135.2 121.25 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "gamepad.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/7fc743da-f9a2-4847-8de9-34de5eb990d4")
(attr smd)
(fp_text reference "R1" (at -0.75 -1.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d072f1cc-ff0e-4985-830c-4b44e622405a)
)
(fp_text value "10 KOm" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2c03a9a2-3170-4ac4-9b57-7b01e591a33c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp cb6baa3d-f399-4827-af8b-e841a0d2a582)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 04b01866-9948-4474-81b4-60e20fc41e35))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 686d4443-5a21-4372-896e-d64ead32f8b5))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 89acd690-63f8-4106-aebb-18f3b92a3757))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ea8d314b-be3a-4ba2-a6fd-e6e67ad72ed8))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cef29886-1437-475f-b17b-acead02a76de))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9c19488e-5ca9-4373-81e4-ed1e33422efd))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b7fd41df-79ea-44d1-ac38-365192a186b1))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 02f8f1b5-d55e-4d14-904c-4a35a7171a29))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 985390e4-f3f6-4ca0-a7fd-c4dd89ac0f7e))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7522b4e2-c402-4030-90a1-1b9961375c76))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/BOOT0") (pintype "passive") (tstamp ddf1af71-9eb7-4d09-b858-2b9e02424bda))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 4301d216-ea88-40e5-9c87-09ef0859b386))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "gamepad:Button_12mm_LED" (layer "F.Cu")
(tstamp 255cec7a-2862-4b7d-915f-ce156cd87c0e)
(at 138.9 127.025 -90)
(property "Sheetfile" "gamepad.kicad_sch")
(property "Sheetname" "")
(path "/484ef42d-46a0-4318-ac42-822e52174651")
(attr smd)
(fp_text reference "SW5" (at 7.675 -1.2 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 87c49402-c5ad-4358-8e0b-bb5146240e0e)
)
(fp_text value "~" (at 0.01 0.23 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d01fc58a-ebfa-4df7-aa6d-3e9da41746cb)
)
(fp_text user "${REFERENCE}" (at 0.01 1.73 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 65995547-b433-4a99-bed0-663672c84854)
)
(fp_text user "${REFERENCE}" (at 7.675 -1.2 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 66ead52b-d60a-4914-ad19-ebdd36023ef1)
)
(fp_line (start -6.25 -12.1) (end -6.25 -10)
(stroke (width 0.2) (type default)) (layer "F.SilkS") (tstamp fd40f28d-9e0d-4f05-b260-3a9755427b11))
(fp_line (start -6.25 -12.1) (end 6.25 -12.1)
(stroke (width 0.2) (type default)) (layer "F.SilkS") (tstamp dd0400a8-2271-44c6-9e3e-e63f6fffee16))
(fp_line (start -6.25 -5) (end -6.25 -7.2)
(stroke (width 0.2) (type default)) (layer "F.SilkS") (tstamp f680df02-cbd6-4bb0-ac6b-6d847a83d932))
(fp_line (start -6.25 -2.2) (end -6.25 -0.1)
(stroke (width 0.2) (type default)) (layer "F.SilkS") (tstamp f536d9bd-66f5-4171-9871-74384384e2ad))
(fp_line (start -1.9 -3.1) (end 2.1 -3.1)
(stroke (width 0.2) (type default)) (layer "F.SilkS") (tstamp 0bc2eb59-4865-44db-b77c-ae449557850b))
(fp_line (start 6.25 -12.1) (end 6.25 -10)
(stroke (width 0.2) (type default)) (layer "F.SilkS") (tstamp 8355923f-6158-4106-a22b-fea224d77fd9))
(fp_line (start 6.25 -5) (end 6.25 -7.2)
(stroke (width 0.2) (type default)) (layer "F.SilkS") (tstamp 0553585c-3227-436a-ba08-0ee5af8d97ed))
(fp_line (start 6.25 -2.2) (end 6.25 -0.1)
(stroke (width 0.2) (type default)) (layer "F.SilkS") (tstamp de31b874-53e7-476f-898f-935036cb028b))
(fp_line (start 6.25 -0.1) (end -6.25 -0.1)
(stroke (width 0.2) (type default)) (layer "F.SilkS") (tstamp 0f88f71a-1e10-4e7b-aca5-eee766760443))
(pad "" np_thru_hole circle (at 0 -10.6 270) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (tstamp 10c3249c-c36b-4f39-828c-c33b50cb97b6))
(pad "" np_thru_hole circle (at 0 -1.6 270) (size 1.8 1.8) (drill 1.8) (layers "F&B.Cu" "*.Mask") (tstamp 1995ba3e-1045-43b0-be7d-343d16b6ff8c))
(pad "1" thru_hole oval (at -6.25 -3.6) (size 2 1.6) (drill oval 1.2 0.8) (layers "*.Cu" "*.Mask")
(net 20 "/B_L") (pintype "bidirectional") (thermal_bridge_angle 45) (tstamp 873da949-59d9-402b-af15-8e103ba405d2))
(pad "1" thru_hole oval (at 6.25 -3.6 180) (size 2 1.6) (drill oval 1.2 0.8) (layers "*.Cu" "*.Mask")
(net 20 "/B_L") (pintype "bidirectional") (thermal_bridge_angle 45) (tstamp ec89b53d-8728-4966-a659-68a6077caee4))
(pad "2" thru_hole oval (at -6.25 -8.6) (size 2 1.6) (drill oval 1.2 0.8) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pintype "bidirectional") (thermal_bridge_angle 45) (tstamp 39c9f52b-8030-4267-81f8-4b750f875467))
(pad "2" thru_hole oval (at 6.25 -8.6) (size 2 1.6) (drill oval 1.2 0.8) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pintype "bidirectional") (thermal_bridge_angle 45) (tstamp 56b6fef4-8874-4067-a79a-de0b4fcc1935))
(pad "3" thru_hole circle (at 0 -12.9 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 25 "Net-(SW5-A)") (pinfunction "A") (pintype "passive") (tstamp 0271d68a-2db8-4816-9189-d45e79a4670e))
(pad "4" thru_hole circle (at 0 0.7 270) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp f2e23929-e8f5-433e-837c-aae3fdcc64ea))
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 2a3743dd-0ac8-4964-a8f8-e2332c3e9452)
(at 131.425 133.325 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "gamepad.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/5a634fb3-e4a7-401b-8a5f-5aff60dc8cac")
(attr smd)
(fp_text reference "R12" (at -0.175 -1.525 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fee663f1-6e32-40e4-bea2-22e7e20d6fc9)
)
(fp_text value "22 Om" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 647f6d36-d20f-47da-a451-3186b7155788)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 9882ed5e-76b7-4742-9962-e549f5b0308a)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d10d5c9-4c74-4aa1-891b-58e4f2c5cd2a))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5f58305d-383b-453b-b7ae-aa64d1bbc88a))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 45b289d5-f379-47a7-810a-b0447163dfc5))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 06d256f7-bdc4-41cc-8fd4-0ae3f935de70))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aa120b53-338d-4b89-93c5-e54042c06f88))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e92af57d-3e6c-4234-8ed6-069aea1740f6))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 778725d9-e3e0-4e7b-b635-3724a0c9ab48))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bb50df51-ada8-4c9f-9859-524eebfdd5c1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 79677dc5-474d-47fe-b841-a7604eac8d6a))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4bc632ae-d20a-4f77-941c-f14dc6fd3863))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "Net-(XT2-Pin_2)") (pintype "passive") (tstamp e6b72b72-41d6-41a2-9ed2-1f17d6e858c8))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "/SWDIO") (pintype "passive") (tstamp 7eaa40cf-d426-46ab-ac9c-cac07b705896))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_D1.0mm" (layer "F.Cu")
(tstamp 2bc48dde-6f9b-4d42-959b-a5705d272e26)
(at 158 105)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "5V" (at 0 2.1) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cde91c67-8628-4721-a5ee-c36becb7e679)
)
(fp_text value "TestPoint_Pad_D1.0mm" (at 0 1.55) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b5548e93-ac07-481c-8fff-c52af5657701)
)
(fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2b0068f7-57a3-4e85-bb83-18ca34ab77dd)
)
(fp_circle (center 0 0) (end 0 0.7)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 9fcaa23e-6222-4aeb-b723-fcf8d88b494a))
(fp_circle (center 0 0) (end 1 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 8467c29a-2b12-4c92-afdf-15ca6590cce4))
(pad "1" smd circle (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask")
(net 15 "+5V") (tstamp 0c3f4df1-e8cb-4245-8096-2c29ce898b87))
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 305653ee-18d0-4b6d-b4ff-b1e0a4da0268)
(at 156.425 123.45)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "gamepad.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/03662356-2534-4842-90fa-0c78d360303d")
(attr smd)
(fp_text reference "C7" (at 4.075 -0.05) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ed954fda-c47d-472f-ab16-48c37d0a48c0)
)
(fp_text value "100nF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6109c067-946c-4793-9ff0-139be1212472)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 8fff118e-8f16-4838-a8d5-094272a85c61)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8f9e85fc-d70a-4a11-acc6-85f28d8d160c))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 25353430-38c2-42a9-a478-3cb6ca894f6b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8941e4d2-9a10-4b40-91fd-4574d1e849dd))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2a65a66a-9786-47f5-b69f-0a87ab698f07))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fa99f242-cd5d-494f-8cc0-17367fa4503c))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ab77e9c5-f397-43b6-8907-78e72b588f82))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d1b86a27-d5c0-4897-b73c-4bfe37dd44f8))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b9f52e50-678d-492e-a5ea-4dc026eec5c5))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3ec775a7-a17f-483c-9ac0-e6940785f968))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 73b0199c-f8e4-4484-a44f-5115b07686fe))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/B_Y") (pintype "passive") (tstamp a72bac18-3750-493e-be17-f638f1ef482d))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp cdf850f1-e3c4-4c0b-8c8e-9d9b636d46d9))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 383c20be-e23f-41fa-8f0f-ead0f0ff65c1)
(at 156.475 125.2 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "gamepad.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/05c6866b-5bca-4842-8137-981db6e02be8")
(attr smd)
(fp_text reference "R4" (at -4.025 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 46414b73-fa4c-4b65-88e3-65e5eaf9d240)
)
(fp_text value "10 KOm" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b6623dca-f0d4-4e6a-a69e-47a8b8699761)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp c7572b51-615d-4deb-9383-25aeadd9a5d9)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f38af8d-bb90-4f9e-9be8-8b2dc5ec7a01))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9f77a13d-dfed-4e02-982a-59deb7ba665f))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a3a3ed17-9dbb-46af-8c32-5c3f44dee1e3))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 37b58c4e-8e60-452b-9cae-c9360f48c6ee))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 13c49141-8095-49f5-8fab-403d8a8e4a69))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1f1af558-d6dc-4fca-998b-66b83105c5d6))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ecd46c81-72bf-46b5-b09a-8f0d9fc0e013))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ea71d221-05c8-46be-a8a5-154f0411788c))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5d19a11c-9ca8-45d3-84be-1ac63650ae8d))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d6fef80b-ab2c-4c49-9091-7f8c1fa5ea85))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3.3VA") (pintype "passive") (tstamp 96ba3a95-363f-450f-83da-36adb9218205))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/B_Y") (pintype "passive") (tstamp 1f416bc4-1f37-496f-90e5-995ce1950cbb))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 3eaab532-53d2-445d-95bc-aba515a1c6db)
(at 141.325 112 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "gamepad.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/198dcc58-0d8d-4b84-b5a0-30617131bd7e")
(attr smd)
(fp_text reference "C13" (at -3.075 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d6320a49-2fd1-41c9-a339-1108bf846885)
)
(fp_text value "1uF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c855da74-0915-4141-9226-482fe880bc2d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 60658054-b9a7-4244-82f5-1393e5ea1f4a)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 57d6b3f5-f465-436b-85d4-8e090db746a1))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51a55a5e-0ec1-4364-be99-039f637f0fc7))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fbf397cc-84de-4862-a7e3-761a135cfaef))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d20217ec-ec52-43b6-9164-17f5e43e6cec))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d79b753-4293-4d06-bafc-02a2ec23669d))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 711ec150-b65d-42a0-b6af-c5c2f33e85ce))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 54d4d550-31c5-4c3e-9842-558f484e307b))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ebc31748-3893-4c9c-88b8-eca1263e3c79))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a2a46d46-73a5-4ad3-8a96-3d5bbdd374e4))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0bfb7191-935a-4480-b736-dcae2240c03e))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3.3VA") (pintype "passive") (tstamp 4f8b34d9-de6b-48ce-8324-3018c00b4a61))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 114bd9f8-8588-44a5-8b67-1d216edab4c7))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_D1.0mm" (layer "F.Cu")
(tstamp 3f1368c2-88cc-4dcc-8c80-f4c4c8bb37f6)
(at 161 105)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "3V" (at 0 2.1) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d88400d4-383d-4111-9004-943731071982)
)
(fp_text value "TestPoint_Pad_D1.0mm" (at 0 1.55) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e6163b0f-cbe7-4950-a92a-3d2211e7780f)
)
(fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e0b2378-21af-4259-8862-802833867f19)
)
(fp_circle (center 0 0) (end 0 0.7)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 0f741e57-ef18-447e-9e79-ac32823f9dd8))
(fp_circle (center 0 0) (end 1 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 01d3df3d-d793-41ec-80d7-d41d163844d5))
(pad "1" smd circle (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask")
(net 1 "+3.3VA") (tstamp d678cd1e-0c88-48c6-9593-df5d33940dde))
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 405d1724-d046-4101-ab13-351aae31cbd1)
(at 133 109.675 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "gamepad.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/05a70bb3-1069-48fb-a228-5db062a404aa")
(attr smd)
(fp_text reference "C5" (at -2.575 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ea706f97-32d6-4b1c-8702-23a4877042a2)
)
(fp_text value "18pF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f55c613d-0e16-487a-8ab2-17b20f313a28)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 2d36c243-7e5a-4859-8abd-4f503aaa6a8f)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 94d741a5-d5f1-4fc5-8ddc-4f860ad6d2ba))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp abea32f1-308e-425a-bef0-3c8db882a78d))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5743eddc-62b3-405c-b303-27ca2582f15f))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d32885d3-871a-4257-9e2f-b294bfaf4b9d))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f3c41203-c443-447b-90f2-a05c83c2c05d))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dd77de82-ab4a-42ff-8a7c-151ddc611658))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f44e0dbc-6966-4714-99ab-63a0f7543b1d))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f975d24f-038c-49e9-9d07-a44bdf1b5312))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eaacfc63-be37-41e9-938d-33019ee70d81))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 05c09732-6d7d-41fe-acff-0e3e8686342a))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 8e0fae81-b47e-4d7e-9d07-958c418e0c32))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(C5-Pad2)") (pintype "passive") (tstamp 417f35ab-edf3-4001-8f43-69cca9ed5374))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 42c55bf3-df41-479c-8c13-e6b76f9f0383)
(at 130.575 117.625 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "gamepad.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/07b788a8-ffc8-45c3-a597-8f9e17a284f0")
(attr smd)
(fp_text reference "C2" (at -0.675 -1.375 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5a606e64-84c1-4a3e-814c-9aea0537ba51)
)
(fp_text value "10nF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc8fe4fb-5174-4028-b56f-642093975846)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 70fee512-739f-41cb-b90a-0b76a898a299)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ea5994c6-5fbd-4c25-ac1c-c5a70680cd58))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fad39736-0813-47c2-a628-f1da1a147338))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 850132b3-9821-4f6d-ae3b-83696de89e5f))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2becdbd1-c819-438c-a596-493cf9a7224f))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5cac7b91-5e83-40bc-8ef1-ee1a96e4a5fe))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0947f415-575e-417c-ad5e-874daaa46572))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1e7fce58-953d-4463-a887-60ea267ace45))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b8b282e6-a959-439b-a7e8-797f01a746ef))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b7979e0a-ffd1-4a58-9ecc-30634f07b801))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 69b1e3f7-137b-4546-973f-aded1326130c))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3.3VA") (pintype "passive") (tstamp 34e60bdc-e53c-4e6a-b907-95ba42f9584e))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp c6ebdd5c-9aac-4fb2-8e96-0dd74631cbb2))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 4901d873-90f6-4ce3-8726-5fc9196544c2)
(at 148.2 106.775 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "gamepad.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/7f3f945b-be79-4805-b1d1-8f5f73301a80")
(attr smd)
(fp_text reference "C11" (at -0.125 1.6 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5b397b91-fcb4-4af6-afc8-f7bf3991d8f7)
)
(fp_text value "100nF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 88582498-4dfe-4f6d-9daa-b8fd47afcfaa)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 57a1dfe9-cb0b-4329-838b-f54c6a89471d)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e1f91778-9d0a-461a-bbbb-42dd9fdfd63b))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 95b0d05c-2837-42ed-bf30-553c9948ac37))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 15b1eeab-4337-4251-81b9-6b0f33e10616))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5c433d27-4b78-48f7-a3a4-9a980d05d9e2))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 39017337-3381-4e38-bc6e-4a77601a7b9e))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cbb7ba8f-55e1-4dae-a9f5-13b1fec0c5f4))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b71c1fb4-04d3-4e7e-97d1-bf46e9ca076d))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f2f7563a-ae41-42b1-aa8a-6d62aed94838))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 37030091-3178-4405-8612-de4dfabd3265))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ccadf1a-4258-4f3b-9f90-10384e456cff))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "+5V") (pintype "passive") (tstamp 2b2edb5e-f485-4629-a258-30dea3b66af1))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 9e3aafb1-8755-4534-b8e7-4bf9fcd7c701))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3" (layer "F.Cu")
(tstamp 52882889-608e-487a-9640-12b0f93d9cf5)
(at 118 139)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 93b8a706-6f8a-4a96-966c-a6cfbf2a3c02)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3a921139-d678-4cf0-9821-6e33c6bbbae2)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1dcd35ca-4d3a-48f4-b444-8763e4e02d05)
)
(fp_circle (center 0 0) (end 3.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 9ff518c2-95b6-40a1-a634-ab31e7c19d18))
(fp_circle (center 0 0) (end 3.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 216863c9-e372-4531-844e-07bdaca50910))
(pad "" np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers "*.Mask" "F.Cu" "In1.Cu" "In2.Cu" "B.Cu") (tstamp 0c61a419-3545-4539-b7aa-c784768b37b8))
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 593fee11-995a-4051-b461-7cd6f9de6e41)
(at 111.925 134.775 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "gamepad.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/1f0668f1-7dfa-466a-becc-313990390868")
(attr smd)
(fp_text reference "C10" (at 0.225 -1.675 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d17e8ba-3607-4ecd-a3b1-bf78512f23c5)
)
(fp_text value "100nF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8e62c751-cd48-4814-ac98-776cdac21a7e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 3e418a8d-74cb-42e3-881f-f43b4a0bf0b9)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f8ee0fce-bf3e-40d4-813b-aa808cb8de94))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8bd87c1c-1379-4035-9dc8-46e5282d75a6))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f6fe319b-d379-4b49-ae66-bbd6cc7ee8f7))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp db874314-930b-4596-8b7c-c2c944429a98))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cb13596e-cbfb-4912-8fdd-1367cd8b4890))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 57c7a8a8-d8d0-4704-a7a1-d4ffc183b7fb))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1d40bb01-f483-4805-886b-feaf68352a7c))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3923351-3b1c-4d07-82cc-16d8ae333c61))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3bf8415d-16dc-4cfc-9706-c464d5f91221))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8c45e137-c147-4ea6-b649-8b7c94125669))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/J_B") (pintype "passive") (tstamp 77a8020e-c946-408e-9c9e-d2a69b0a3d40))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp c783bff4-d082-4572-bf6c-30ccaed806aa))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 5cfd89c5-0e2f-4cd8-ba46-1a199fc493e4)
(at 151.75 101.05 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "gamepad.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/ad7c703a-2e64-4bf6-9d92-cb96d8ec8638")
(attr smd)
(fp_text reference "R9" (at 0.65 -1.55 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c25e9a84-12d7-4dbe-9a30-a770aa19ef6d)
)