-
Notifications
You must be signed in to change notification settings - Fork 0
/
rp2040_trackball_mouse.kicad_pcb
7394 lines (7358 loc) · 335 KB
/
rp2040_trackball_mouse.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)
(aux_axis_origin 98.5 151)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes true)
(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-(C1-Pad1)")
(net 3 "Net-(C10-Pad2)")
(net 4 "Net-(D1-Pad2)")
(net 5 "ENCODER_A")
(net 6 "ENCODER_B")
(net 7 "SDIO")
(net 8 "SCLK")
(net 9 "RESET")
(net 10 "NCS")
(net 11 "R_BTN")
(net 12 "L_BTN")
(net 13 "Net-(R13-Pad1)")
(net 14 "Net-(R14-Pad1)")
(net 15 "Net-(R17-Pad1)")
(net 16 "Net-(R19-Pad1)")
(net 17 "Net-(R10-Pad2)")
(net 18 "Net-(C11-Pad1)")
(net 19 "unconnected-(J5-Pad1)")
(net 20 "unconnected-(J5-Pad5)")
(net 21 "unconnected-(J5-Pad6)")
(net 22 "D+")
(net 23 "D-")
(net 24 "VBUS")
(net 25 "SWDIO")
(net 26 "SWCLK")
(net 27 "unconnected-(J5-Pad7)")
(net 28 "RUN")
(net 29 "BOOTSEL")
(net 30 "unconnected-(J5-Pad15)")
(net 31 "unconnected-(J6-Pad13)")
(net 32 "unconnected-(J6-Pad7)")
(net 33 "unconnected-(J6-Pad9)")
(net 34 "unconnected-(J6-Pad11)")
(footprint "LED_THT:LED_D2.0mm_W4.8mm_H2.5mm_FlatTop" (layer "F.Cu")
(tedit 5880A862) (tstamp 00000000-0000-0000-0000-000061451f18)
(at 119.38 97.02 -90)
(descr "LED, Round, FlatTop, Rectangular size 4.8x2.5mm^2 diameter 2.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-13GD(Ver.11B).pdf")
(tags "LED Round FlatTop Rectangular size 4.8x2.5mm^2 diameter 2.0mm 2 pins")
(property "Sheetfile" "rp2040_trackball_mouse.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061436811")
(attr through_hole)
(fp_text reference "D1" (at 5.08 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a6ccc556-da88-4006-ae1a-cc35733efef3)
)
(fp_text value "IR928-6C-F" (at 6.612 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 065b9982-55f2-4822-977e-07e8a06e7b35)
)
(fp_line (start -1.07 -1.31) (end -1.07 -1.08) (layer "F.SilkS") (width 0.12) (tstamp 0f31f11f-c374-4640-b9a4-07bbdba8d354))
(fp_line (start 3.73 -1.31) (end 3.73 1.31) (layer "F.SilkS") (width 0.12) (tstamp 18b7e157-ae67-48ad-bd7c-9fef6fe45b22))
(fp_line (start -1.19 -1.31) (end -1.19 1.31) (layer "F.SilkS") (width 0.12) (tstamp 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4))
(fp_line (start -1.07 1.08) (end -1.07 1.31) (layer "F.SilkS") (width 0.12) (tstamp 998b7fa5-31a5-472e-9572-49d5226d6098))
(fp_line (start -1.19 1.31) (end 3.73 1.31) (layer "F.SilkS") (width 0.12) (tstamp a53767ed-bb28-4f90-abe0-e0ea734812a4))
(fp_line (start -0.95 -1.31) (end -0.95 -1.08) (layer "F.SilkS") (width 0.12) (tstamp e4d2f565-25a0-48c6-be59-f4bf31ad2558))
(fp_line (start -0.95 1.08) (end -0.95 1.31) (layer "F.SilkS") (width 0.12) (tstamp e502d1d5-04b0-4d4b-b5c3-8c52d09668e7))
(fp_line (start -1.19 -1.31) (end 3.73 -1.31) (layer "F.SilkS") (width 0.12) (tstamp f9403623-c00c-4b71-bc5c-d763ff009386))
(fp_line (start 4 -1.6) (end -1.45 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 109caac1-5036-4f23-9a66-f569d871501b))
(fp_line (start 4 1.6) (end 4 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 19b0959e-a79b-43b2-a5ad-525ced7e9131))
(fp_line (start -1.45 -1.6) (end -1.45 1.6) (layer "F.CrtYd") (width 0.05) (tstamp 7c04618d-9115-4179-b234-a8faf854ea92))
(fp_line (start -1.45 1.6) (end 4 1.6) (layer "F.CrtYd") (width 0.05) (tstamp e67b9f8c-019b-4145-98a4-96545f6bb128))
(fp_line (start 3.67 1.25) (end 3.67 -1.25) (layer "F.Fab") (width 0.1) (tstamp 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75))
(fp_line (start -1.13 -1.25) (end -1.13 1.25) (layer "F.Fab") (width 0.1) (tstamp 970e0f64-111f-41e3-9f5a-fb0d0f6fa101))
(fp_line (start -1.13 1.25) (end 3.67 1.25) (layer "F.Fab") (width 0.1) (tstamp b6135480-ace6-42b2-9c47-856ef57cded1))
(fp_line (start 3.67 -1.25) (end -1.13 -1.25) (layer "F.Fab") (width 0.1) (tstamp e4aa537c-eb9d-4dbb-ac87-fae46af42391))
(fp_circle (center 1.27 0) (end 2.27 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp dc2801a1-d539-4721-b31f-fe196b9f13df))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "K") (pintype "passive") (tstamp 8c1605f9-6c91-4701-96bf-e753661d5e23))
(pad "2" thru_hole circle locked (at 2.54 0 270) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 4 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 31540a7e-dc9e-4e4d-96b1-dab15efa5f4b))
(model "${KISYS3DMOD}/LED_THT.3dshapes/LED_D2.0mm_W4.8mm_H2.5mm_FlatTop.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_JST:JST_PH_B6B-PH-K_1x06_P2.00mm_Vertical" (layer "F.Cu")
(tedit 5B7745C2) (tstamp 00000000-0000-0000-0000-00006145d1a4)
(at 119 139.5)
(descr "JST PH series connector, B6B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator")
(tags "connector JST PH side entry")
(property "Sheetfile" "rp2040_trackball_mouse.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006143a335")
(attr through_hole)
(fp_text reference "J2" (at -4.446 -0.054 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 309b3bff-19c8-41ec-a84d-63399c649f46)
)
(fp_text value "Conn_01x06" (at 5 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8c0807a7-765b-4fa5-baaa-e09a2b610e6b)
)
(fp_text user "${REFERENCE}" (at 5 1.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 009a4fb4-fcc0-4623-ae5d-c1bae3219583)
)
(fp_line (start -0.6 -2.01) (end -0.6 -1.81) (layer "F.SilkS") (width 0.12) (tstamp 0325ec43-0390-4ae2-b055-b1ec6ce17b1c))
(fp_line (start -0.3 -1.81) (end -0.3 -2.01) (layer "F.SilkS") (width 0.12) (tstamp 057af6bb-cf6f-4bfb-b0c0-2e92a2c09a47))
(fp_line (start 9 2.3) (end 9 1.8) (layer "F.SilkS") (width 0.12) (tstamp 071522c0-d0ed-49b9-906e-6295f67fb0dc))
(fp_line (start -2.06 2.91) (end 12.06 2.91) (layer "F.SilkS") (width 0.12) (tstamp 173f6f06-e7d0-42ac-ab03-ce6b79b9eeee))
(fp_line (start 4.9 1.8) (end 5.1 1.8) (layer "F.SilkS") (width 0.12) (tstamp 20cca02e-4c4d-4961-b6b4-b40a1731b220))
(fp_line (start 12.06 0.8) (end 11.45 0.8) (layer "F.SilkS") (width 0.12) (tstamp 22999e73-da32-43a5-9163-4b3a41614f25))
(fp_line (start 2.9 1.8) (end 3.1 1.8) (layer "F.SilkS") (width 0.12) (tstamp 240c10af-51b5-420e-a6f4-a2c8f5db1db5))
(fp_line (start -1.45 2.3) (end 11.45 2.3) (layer "F.SilkS") (width 0.12) (tstamp 262f1ea9-0133-4b43-be36-456207ea857c))
(fp_line (start -1.11 -2.11) (end -2.36 -2.11) (layer "F.SilkS") (width 0.12) (tstamp 2846428d-39de-4eae-8ce2-64955d56c493))
(fp_line (start 2.9 2.3) (end 2.9 1.8) (layer "F.SilkS") (width 0.12) (tstamp 2d697cf0-e02e-4ed1-a048-a704dab0ee43))
(fp_line (start -2.06 -1.81) (end -2.06 2.91) (layer "F.SilkS") (width 0.12) (tstamp 2e842263-c0ba-46fd-a760-6624d4c78278))
(fp_line (start 1.1 1.8) (end 1.1 2.3) (layer "F.SilkS") (width 0.12) (tstamp 40b14a16-fb82-4b9d-89dd-55cd98abb5cc))
(fp_line (start 12.06 2.91) (end 12.06 -1.81) (layer "F.SilkS") (width 0.12) (tstamp 4632212f-13ce-4392-bc68-ccb9ba333770))
(fp_line (start 9.1 1.8) (end 9.1 2.3) (layer "F.SilkS") (width 0.12) (tstamp 4e315e69-0417-463a-8b7f-469a08d1496e))
(fp_line (start -2.36 -2.11) (end -2.36 -0.86) (layer "F.SilkS") (width 0.12) (tstamp 4fa10683-33cd-4dcd-8acc-2415cd63c62a))
(fp_line (start 3.1 1.8) (end 3.1 2.3) (layer "F.SilkS") (width 0.12) (tstamp 503dbd88-3e6b-48cc-a2ea-a6e28b52a1f7))
(fp_line (start 5.1 1.8) (end 5.1 2.3) (layer "F.SilkS") (width 0.12) (tstamp 5487601b-81d3-4c70-8f3d-cf9df9c63302))
(fp_line (start 0.5 -1.81) (end 0.5 -1.2) (layer "F.SilkS") (width 0.12) (tstamp 576c6616-e95d-4f1e-8ead-dea30fcdc8c2))
(fp_line (start 3 2.3) (end 3 1.8) (layer "F.SilkS") (width 0.12) (tstamp 592f25e6-a01b-47fd-8172-3da01117d00a))
(fp_line (start 6.9 1.8) (end 7.1 1.8) (layer "F.SilkS") (width 0.12) (tstamp 597a11f2-5d2c-4a65-ac95-38ad106e1367))
(fp_line (start 7 2.3) (end 7 1.8) (layer "F.SilkS") (width 0.12) (tstamp 59ec3156-036e-4049-89db-91a9dd07095f))
(fp_line (start 9.5 -1.2) (end 9.5 -1.81) (layer "F.SilkS") (width 0.12) (tstamp 5edcefbe-9766-42c8-9529-28d0ec865573))
(fp_line (start 0.9 1.8) (end 1.1 1.8) (layer "F.SilkS") (width 0.12) (tstamp 658dad07-97fd-466c-8b49-21892ac96ea4))
(fp_line (start 8.9 1.8) (end 9.1 1.8) (layer "F.SilkS") (width 0.12) (tstamp 6a2b20ae-096c-4d9f-92f8-2087c865914f))
(fp_line (start 0.9 2.3) (end 0.9 1.8) (layer "F.SilkS") (width 0.12) (tstamp 6e68f0cd-800e-4167-9553-71fc59da1eeb))
(fp_line (start 11.45 -1.2) (end 9.5 -1.2) (layer "F.SilkS") (width 0.12) (tstamp 721d1be9-236e-470b-ba69-f1cc6c43faf9))
(fp_line (start -0.3 -1.91) (end -0.6 -1.91) (layer "F.SilkS") (width 0.12) (tstamp 7b044939-8c4d-444f-b9e0-a15fcdeb5a86))
(fp_line (start -2.06 0.8) (end -1.45 0.8) (layer "F.SilkS") (width 0.12) (tstamp 81a15393-727e-448b-a777-b18773023d89))
(fp_line (start 0.5 -1.2) (end -1.45 -1.2) (layer "F.SilkS") (width 0.12) (tstamp 89e83c2e-e90a-4a50-b278-880bac0cfb49))
(fp_line (start 7.1 1.8) (end 7.1 2.3) (layer "F.SilkS") (width 0.12) (tstamp 926001fd-2747-4639-8c0f-4fc46ff7218d))
(fp_line (start -0.3 -2.01) (end -0.6 -2.01) (layer "F.SilkS") (width 0.12) (tstamp 935f462d-8b1e-4005-9f1e-17f537ab1756))
(fp_line (start 5 2.3) (end 5 1.8) (layer "F.SilkS") (width 0.12) (tstamp a29f8df0-3fae-4edf-8d9c-bd5a875b13e3))
(fp_line (start 12.06 -0.5) (end 11.45 -0.5) (layer "F.SilkS") (width 0.12) (tstamp a4f86a46-3bc8-4daa-9125-a63f297eb114))
(fp_line (start -1.45 -1.2) (end -1.45 2.3) (layer "F.SilkS") (width 0.12) (tstamp a5e521b9-814e-4853-a5ac-f158785c6269))
(fp_line (start 1 2.3) (end 1 1.8) (layer "F.SilkS") (width 0.12) (tstamp c09938fd-06b9-4771-9f63-2311626243b3))
(fp_line (start 11.45 2.3) (end 11.45 -1.2) (layer "F.SilkS") (width 0.12) (tstamp c1c799a0-3c93-493a-9ad7-8a0561bc69ee))
(fp_line (start 12.06 -1.81) (end -2.06 -1.81) (layer "F.SilkS") (width 0.12) (tstamp cb16d05e-318b-4e51-867b-70d791d75bea))
(fp_line (start 4.9 2.3) (end 4.9 1.8) (layer "F.SilkS") (width 0.12) (tstamp cb614b23-9af3-4aec-bed8-c1374e001510))
(fp_line (start 8.9 2.3) (end 8.9 1.8) (layer "F.SilkS") (width 0.12) (tstamp d39d813e-3e64-490c-ba5c-a64bb5ad6bd0))
(fp_line (start 6.9 2.3) (end 6.9 1.8) (layer "F.SilkS") (width 0.12) (tstamp e3fc1e69-a11c-4c84-8952-fefb9372474e))
(fp_line (start -2.06 -0.5) (end -1.45 -0.5) (layer "F.SilkS") (width 0.12) (tstamp ec5c2062-3a41-4636-8803-069e60a1641a))
(fp_line (start 12.45 3.3) (end 12.45 -2.2) (layer "F.CrtYd") (width 0.05) (tstamp 37f31dec-63fc-4634-a141-5dc5d2b60fe4))
(fp_line (start -2.45 3.3) (end 12.45 3.3) (layer "F.CrtYd") (width 0.05) (tstamp 88668202-3f0b-4d07-84d4-dcd790f57272))
(fp_line (start 12.45 -2.2) (end -2.45 -2.2) (layer "F.CrtYd") (width 0.05) (tstamp 91c1eb0a-67ae-4ef0-95ce-d060a03a7313))
(fp_line (start -2.45 -2.2) (end -2.45 3.3) (layer "F.CrtYd") (width 0.05) (tstamp c24d6ac8-802d-4df3-a210-9cb1f693e865))
(fp_line (start -2.36 -2.11) (end -2.36 -0.86) (layer "F.Fab") (width 0.1) (tstamp 8bc2c25a-a1f1-4ce8-b96a-a4f8f4c35079))
(fp_line (start -1.11 -2.11) (end -2.36 -2.11) (layer "F.Fab") (width 0.1) (tstamp 9cbf35b8-f4d3-42a3-bb16-04ffd03fd8fd))
(fp_line (start -1.95 -1.7) (end -1.95 2.8) (layer "F.Fab") (width 0.1) (tstamp b1ddb058-f7b2-429c-9489-f4e2242ad7e5))
(fp_line (start 11.95 -1.7) (end -1.95 -1.7) (layer "F.Fab") (width 0.1) (tstamp c106154f-d948-43e5-abfa-e1b96055d91b))
(fp_line (start -1.95 2.8) (end 11.95 2.8) (layer "F.Fab") (width 0.1) (tstamp eee16674-2d21-45b6-ab5e-d669125df26c))
(fp_line (start 11.95 2.8) (end 11.95 -1.7) (layer "F.Fab") (width 0.1) (tstamp f449bd37-cc90-4487-aee6-2a20b8d2843a))
(pad "1" thru_hole roundrect locked (at 0 0) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask) (roundrect_rratio 0.2083325)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 609b9e1b-4e3b-42b7-ac76-a62ec4d0e7c7))
(pad "2" thru_hole oval locked (at 2 0) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask)
(net 24 "VBUS") (pinfunction "Pin_2") (pintype "passive") (tstamp 7afa54c4-2181-41d3-81f7-39efc497ecae))
(pad "3" thru_hole oval locked (at 4 0) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask)
(net 10 "NCS") (pinfunction "Pin_3") (pintype "passive") (tstamp 70fb572d-d5ec-41e7-9482-63d4578b4f47))
(pad "4" thru_hole oval locked (at 6 0) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask)
(net 9 "RESET") (pinfunction "Pin_4") (pintype "passive") (tstamp eae0ab9f-65b2-44d3-aba7-873c3227fba7))
(pad "5" thru_hole oval locked (at 8 0) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask)
(net 8 "SCLK") (pinfunction "Pin_5") (pintype "passive") (tstamp 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea))
(pad "6" thru_hole oval locked (at 10 0) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask)
(net 7 "SDIO") (pinfunction "Pin_6") (pintype "passive") (tstamp cf386a39-fc62-49dd-8ec5-e044f6bd67ce))
(model "${KISYS3DMOD}/Connector_JST.3dshapes/JST_PH_B6B-PH-K_1x06_P2.00mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_JST:JST_PH_S5B-PH-K_1x05_P2.00mm_Horizontal" (layer "F.Cu")
(tedit 5B7745C6) (tstamp 00000000-0000-0000-0000-00006145ede4)
(at 158 143)
(descr "JST PH series connector, S5B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator")
(tags "connector JST PH top entry")
(property "Sheetfile" "rp2040_trackball_mouse.kicad_sch")
(property "Sheetname" "")
(path "/f0e45fde-fe93-464f-a4b8-8e309eac8242")
(attr through_hole)
(fp_text reference "J1" (at 4 -2.55) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5628507b-adb7-4141-9e4e-ea3a649a468c)
)
(fp_text value "Conn_01x05" (at 4 7.45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bbe411a0-2e88-4725-b110-84205d860b3c)
)
(fp_text user "${REFERENCE}" (at 4 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 534230a0-aab6-401a-860c-6d8475dd3255)
)
(fp_line (start 9.3 2.5) (end 9.3 4.1) (layer "F.SilkS") (width 0.12) (tstamp 089cdcef-649b-4de0-83f4-d723f0ac4c63))
(fp_line (start -1.14 0.14) (end -1.14 -1.46) (layer "F.SilkS") (width 0.12) (tstamp 109e80eb-b083-4dbe-9793-f59fbd30cc56))
(fp_line (start 9.3 4.1) (end 8.3 4.1) (layer "F.SilkS") (width 0.12) (tstamp 13833097-113f-40d8-a272-1bd67e07ccdd))
(fp_line (start 10.06 0.14) (end 9.14 0.14) (layer "F.SilkS") (width 0.12) (tstamp 18f8811d-e1cc-49cf-90eb-71d8c7d91df3))
(fp_line (start -0.86 0.14) (end -0.86 -1.075) (layer "F.SilkS") (width 0.12) (tstamp 2188758f-7b2b-4bcf-8cc6-c592e39bac9e))
(fp_line (start -2.06 6.36) (end 10.06 6.36) (layer "F.SilkS") (width 0.12) (tstamp 36ccad9c-f214-4436-a670-215a0a2b0c13))
(fp_line (start 9.14 -1.46) (end 9.14 0.14) (layer "F.SilkS") (width 0.12) (tstamp 3dff4120-8748-4a40-898a-468b4c6c98d4))
(fp_line (start -1.3 2.5) (end -1.3 4.1) (layer "F.SilkS") (width 0.12) (tstamp 4220c8a3-e5dc-4067-b6dc-6cf2209dc831))
(fp_line (start 9.14 0.14) (end 8.86 0.14) (layer "F.SilkS") (width 0.12) (tstamp 43777bed-4576-4aa7-84c2-7d4986523003))
(fp_line (start -0.3 4.1) (end -0.3 6.36) (layer "F.SilkS") (width 0.12) (tstamp 4858e9af-4c74-4b84-be6b-43d2fffe3fec))
(fp_line (start -0.3 2.5) (end -1.3 2.5) (layer "F.SilkS") (width 0.12) (tstamp 4b9b3a31-2b86-4670-ade9-9cf4f8583e7c))
(fp_line (start -0.3 4.1) (end -0.3 2.5) (layer "F.SilkS") (width 0.12) (tstamp 604d5075-82f7-4fbe-9060-0ee30a02d89a))
(fp_line (start -1.14 -1.46) (end -2.06 -1.46) (layer "F.SilkS") (width 0.12) (tstamp 722c5f47-49d1-417a-acf5-2e8e35f71eb8))
(fp_line (start 7.5 2) (end 7.5 6.36) (layer "F.SilkS") (width 0.12) (tstamp 738e1548-f4bb-4d2a-93ec-e9befdfff9f0))
(fp_line (start 10.06 6.36) (end 10.06 -1.46) (layer "F.SilkS") (width 0.12) (tstamp 926d1f2a-c336-4c68-9f3d-a7c412b559a3))
(fp_line (start -2.06 0.14) (end -1.14 0.14) (layer "F.SilkS") (width 0.12) (tstamp 98ee93da-81d1-4725-b70a-f0d3592ea2cf))
(fp_line (start -0.8 4.1) (end -0.8 6.36) (layer "F.SilkS") (width 0.12) (tstamp 9dc4c419-9dbe-4189-8978-db3449de0725))
(fp_line (start 8.3 2.5) (end 9.3 2.5) (layer "F.SilkS") (width 0.12) (tstamp aa4abb9a-5f4a-4f1a-a898-a8938407be2c))
(fp_line (start 10.06 -1.46) (end 9.14 -1.46) (layer "F.SilkS") (width 0.12) (tstamp c167a42f-8f94-4817-8d6a-8beef5aeda79))
(fp_line (start 0.5 6.36) (end 0.5 2) (layer "F.SilkS") (width 0.12) (tstamp c21fe370-ee71-41a0-9846-e7eef562a4d7))
(fp_line (start -1.3 4.1) (end -0.3 4.1) (layer "F.SilkS") (width 0.12) (tstamp c3cd7c4d-9df1-4c18-b8d2-07e24a7011ca))
(fp_line (start -2.06 -1.46) (end -2.06 6.36) (layer "F.SilkS") (width 0.12) (tstamp c5124f85-59bf-44ee-9530-dda0f5c56cdc))
(fp_line (start 0.5 2) (end 7.5 2) (layer "F.SilkS") (width 0.12) (tstamp cc968041-b670-4dbb-8673-df6e419a0bd6))
(fp_line (start 8.3 4.1) (end 8.3 2.5) (layer "F.SilkS") (width 0.12) (tstamp e61e8b4e-b3bc-4d32-b933-d5eb8eadc262))
(fp_line (start -0.86 0.14) (end -1.14 0.14) (layer "F.SilkS") (width 0.12) (tstamp f073cf98-6734-4ea9-827f-4c4cecb730a6))
(fp_line (start -2.45 -1.85) (end -2.45 6.75) (layer "F.CrtYd") (width 0.05) (tstamp 3c41fa83-bded-4f4d-b3e2-2055a406e982))
(fp_line (start 10.45 -1.85) (end -2.45 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 737f3fde-79ea-4deb-a07c-5f9fe7044987))
(fp_line (start 10.45 6.75) (end 10.45 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 7fae98d7-531d-4676-b8b5-26581bdc57ff))
(fp_line (start -2.45 6.75) (end 10.45 6.75) (layer "F.CrtYd") (width 0.05) (tstamp ec5d873b-a8d3-4730-9957-1f6103ca70c1))
(fp_line (start 9.25 -1.35) (end 9.25 0.25) (layer "F.Fab") (width 0.1) (tstamp 04c7e5fc-46f7-4ba1-9d88-f7f775d52712))
(fp_line (start 9.95 6.25) (end 9.95 -1.35) (layer "F.Fab") (width 0.1) (tstamp 3000b23d-7529-40f8-af7d-74510d8b62b3))
(fp_line (start -0.5 1.375) (end 0.5 1.375) (layer "F.Fab") (width 0.1) (tstamp 3ea12e2d-761e-4169-8fda-335ce8f8008b))
(fp_line (start 0 0.875) (end -0.5 1.375) (layer "F.Fab") (width 0.1) (tstamp 82850d40-ddb4-4671-b24c-4ae7e4bac384))
(fp_line (start 9.25 0.25) (end -1.25 0.25) (layer "F.Fab") (width 0.1) (tstamp 9ffed4f5-febe-4750-b63c-3ed050bd5b1a))
(fp_line (start -1.95 -1.35) (end -1.95 6.25) (layer "F.Fab") (width 0.1) (tstamp a1a51985-b3c5-4bd8-b1d0-1a1b82664ffa))
(fp_line (start -1.25 -1.35) (end -1.95 -1.35) (layer "F.Fab") (width 0.1) (tstamp a7d20def-772a-42c9-bbcc-08c4bdf960bb))
(fp_line (start -1.25 0.25) (end -1.25 -1.35) (layer "F.Fab") (width 0.1) (tstamp edfd2681-1660-471b-a1d2-c3d43b997978))
(fp_line (start -1.95 6.25) (end 9.95 6.25) (layer "F.Fab") (width 0.1) (tstamp ef7c9779-7b80-4468-b4a4-27f6f9ae042f))
(fp_line (start 9.95 -1.35) (end 9.25 -1.35) (layer "F.Fab") (width 0.1) (tstamp ef81c748-f187-4d77-9f8a-0659f09e1b41))
(fp_line (start 0.5 1.375) (end 0 0.875) (layer "F.Fab") (width 0.1) (tstamp f37026bc-3b55-4f37-b9b4-48430fddd0e6))
(pad "1" thru_hole roundrect locked (at 0 0) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask) (roundrect_rratio 0.2083333333)
(net 22 "D+") (pinfunction "Pin_1") (pintype "passive") (tstamp 929142db-672b-48b5-a75c-6f0d6b2e8173))
(pad "2" thru_hole oval locked (at 2 0) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask)
(net 23 "D-") (pinfunction "Pin_2") (pintype "passive") (tstamp b4f9d6a7-b699-4d59-9e97-8187a1b2a129))
(pad "3" thru_hole oval locked (at 4 0) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 70aac149-64d0-474f-b3c1-16c3956fe907))
(pad "4" thru_hole oval locked (at 6 0) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask)
(net 24 "VBUS") (pinfunction "Pin_4") (pintype "passive") (tstamp c004f72c-d771-4b38-bd3a-ebfea74b27fb))
(pad "5" thru_hole oval locked (at 8 0) (size 1.2 1.75) (drill 0.75) (layers *.Cu *.Mask)
(net 2 "Net-(C1-Pad1)") (pinfunction "Pin_5") (pintype "passive") (tstamp 09d80699-a6a9-4714-b5b0-09c47dd9807d))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_PH_S5B-PH-K_1x05_P2.00mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "keyswitches:CMI6273" (layer "F.Cu")
(tedit 61459B75) (tstamp 00000000-0000-0000-0000-000061462605)
(at 106.68 116.451 90)
(property "Sheetfile" "rp2040_trackball_mouse.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006143500e")
(attr through_hole)
(fp_text reference "SW1" (at -4.961 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9c8ccb2a-b1e9-4f2c-94fe-301b5975277e)
)
(fp_text value "SW_Push" (at 4.826 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a03e565f-d8cd-4032-aae3-b7327d4143dd)
)
(fp_line (start 3.0265 -3) (end 2.0265 -3) (layer "F.SilkS") (width 0.15) (tstamp 0147f16a-c952-4891-8f53-a9fb8cddeb8d))
(fp_line (start -2 -3) (end -3 -3) (layer "F.SilkS") (width 0.15) (tstamp 4e3d7c0d-12e3-42f2-b944-e4bcdbbcac2a))
(fp_line (start -3 -2) (end -3 -3) (layer "F.SilkS") (width 0.15) (tstamp 5b2b5c7d-f943-4634-9f0a-e9561705c49d))
(fp_line (start 3 2) (end 3 3) (layer "F.SilkS") (width 0.15) (tstamp 6a44418c-7bb4-4e99-8836-57f153c19721))
(fp_line (start -3 3) (end -3 2) (layer "F.SilkS") (width 0.15) (tstamp aa02e544-13f5-4cf8-a5f4-3e6cda006090))
(fp_line (start -3 3) (end -2 3) (layer "F.SilkS") (width 0.15) (tstamp c70d9ef3-bfeb-47e0-a1e1-9aeba3da7864))
(fp_line (start 2 3) (end 3 3) (layer "F.SilkS") (width 0.15) (tstamp d1262c4d-2245-4c4f-8f35-7bb32cd9e21e))
(fp_line (start 3.0265 -3) (end 3.0265 -2) (layer "F.SilkS") (width 0.15) (tstamp d22e95aa-f3db-4fbc-a331-048a2523233e))
(fp_line (start -3.1 3.1) (end 3.1 3.1) (layer "Eco2.User") (width 0.15) (tstamp 0d0bb7b2-a6e5-46d2-9492-a1aa6e5a7b2f))
(fp_line (start -3.1 3.1) (end -3.1 -3.1) (layer "Eco2.User") (width 0.15) (tstamp 15875808-74d5-4210-b8ca-aa8fbc04ae21))
(fp_line (start 3.1 -3.1) (end 3.1 3.1) (layer "Eco2.User") (width 0.15) (tstamp 81bbc3ff-3938-49ac-8297-ce2bcc9a42bd))
(fp_line (start 3.1 -3.1) (end -3.1 -3.1) (layer "Eco2.User") (width 0.15) (tstamp b1169a2d-8998-4b50-a48d-c520bcc1b8e1))
(fp_line (start 3.7 -3.3) (end 3.7 3.3) (layer "F.Fab") (width 0.15) (tstamp 0a3cc030-c9dd-4d74-9d50-715ed2b361a2))
(fp_line (start 3.7 3.3) (end -3.7 3.3) (layer "F.Fab") (width 0.15) (tstamp 8322f275-268c-4e87-a69f-4cfbf05e747f))
(fp_line (start -3.7 3.3) (end -3.7 -3.3) (layer "F.Fab") (width 0.15) (tstamp b6270a28-e0d9-4655-a18a-03dbf007b940))
(fp_line (start -3.7 -3.3) (end 3.7 -3.3) (layer "F.Fab") (width 0.15) (tstamp dd00c2e1-6027-4717-b312-4fab3ee52002))
(pad "1" thru_hole circle locked (at 2.54 0 90) (size 2 2) (drill 1.4986) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "1") (pintype "passive") (tstamp 1860e030-7a36-4298-b7fc-a16d48ab15ba))
(pad "2" thru_hole circle locked (at -2.54 0 90) (size 2 2) (drill 1.4986) (layers *.Cu *.Mask)
(net 12 "L_BTN") (pinfunction "2") (pintype "passive") (tstamp f3490fa5-5a27-423b-af60-53609669542c))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-00006146c299)
(at 110.998 95.623)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(property "Sheetfile" "rp2040_trackball_mouse.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000614734e8")
(attr through_hole)
(fp_text reference "U2" (at 0 7.493) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a9ec539a-d80d-40cc-803c-12b6adefe42a)
)
(fp_text value "PT5529B/L2/H3" (at 0 8.89) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c264c438-a475-4ad4-9915-0f1e6ecf3053)
)
(fp_text user "${REFERENCE}" (at 3.175 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 38f2d955-ea7a-4a21-aba6-02ae23f1bd4a)
)
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 0867287d-2e6a-4d69-a366-c29f88198f2b))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 587a157d-dedf-4558-a037-1a94bbba1848))
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 75286985-9fa5-4d30-89c5-493b6e63cd66))
(fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 78f88cf6-751c-4e9b-ae75-fb8b6d44ff39))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 9762c9ed-64d8-4f3e-baf6-f6ba6effc919))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp c19dbe3c-ced0-48f7-a91d-777569cfb936))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 2bf3f24b-fd30-41a7-a274-9b519491916b))
(fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 4831966c-bb32-4bc8-a400-0382a02ffa1c))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 4d4b0fcd-2c79-4fc3-b5fa-7a0741601344))
(fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp e25ce415-914a-48fe-bf09-324317917b2e))
(fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 0f41a909-27c4-4be2-9d5e-9ae2108c8ff5))
(fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 1b54105e-6590-4d26-a763-ecfcf81eedc4))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 35354519-a28c-40c4-befd-0943e98dea53))
(fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 632acde9-b7fd-4f04-8cb4-d2cbb06b3595))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp afd3dbad-e7a8-4e4c-b77c-4065a69aefa2))
(pad "1" thru_hole rect locked (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "ENCODER_A") (pinfunction "PTR_A") (pintype "passive") (tstamp e12e827e-36be-4503-8eef-6fc7e8bc5d49))
(pad "2" thru_hole oval locked (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 17 "Net-(R10-Pad2)") (pinfunction "COM") (pintype "passive") (tstamp dabe541b-b164-4180-97a4-5ca761b86800))
(pad "3" thru_hole oval locked (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "ENCODER_B") (pinfunction "PTR_B") (pintype "passive") (tstamp 6b25f522-8e2d-4cd8-9d5d-a2b80f60133b))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "keyswitches:CMI6273" (layer "F.Cu")
(tedit 61459B75) (tstamp 00000000-0000-0000-0000-00006146c73f)
(at 182.245 116.451 90)
(property "Sheetfile" "rp2040_trackball_mouse.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061434b61")
(attr through_hole)
(fp_text reference "SW2" (at -4.961 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 68e09be7-3bbc-4443-a838-209ce20b2bef)
)
(fp_text value "SW_Push" (at 4.445 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 67621f9e-0a6a-4778-ad69-04dcf300659c)
)
(fp_line (start -3 -2) (end -3 -3) (layer "F.SilkS") (width 0.15) (tstamp 128e34ce-eee7-477d-b905-a493e98db783))
(fp_line (start -2 -3) (end -3 -3) (layer "F.SilkS") (width 0.15) (tstamp 3172f2e2-18d2-4a80-ae30-5707b3409798))
(fp_line (start 3.0265 -3) (end 3.0265 -2) (layer "F.SilkS") (width 0.15) (tstamp 51c4dc0a-5b9f-4edf-a83f-4a12881e42ef))
(fp_line (start -3 3) (end -3 2) (layer "F.SilkS") (width 0.15) (tstamp 712d6a7d-2b62-464f-b745-fd2a6b0187f6))
(fp_line (start 2 3) (end 3 3) (layer "F.SilkS") (width 0.15) (tstamp 842e430f-0c35-45f3-a0b5-95ae7b7ae388))
(fp_line (start 3.0265 -3) (end 2.0265 -3) (layer "F.SilkS") (width 0.15) (tstamp 98e81e80-1f85-4152-be3f-99785ea97751))
(fp_line (start 3 2) (end 3 3) (layer "F.SilkS") (width 0.15) (tstamp b3d08afa-f296-4e3b-8825-73b6331d35bf))
(fp_line (start -3 3) (end -2 3) (layer "F.SilkS") (width 0.15) (tstamp c801d42e-dd94-493e-bd2f-6c3ddad43f55))
(fp_line (start -3.1 3.1) (end 3.1 3.1) (layer "Eco2.User") (width 0.15) (tstamp 03d88a85-11fd-47aa-954c-c318bb15294a))
(fp_line (start 3.1 -3.1) (end 3.1 3.1) (layer "Eco2.User") (width 0.15) (tstamp 0dcdf1b8-13c6-48b4-bd94-5d26038ff231))
(fp_line (start 3.1 -3.1) (end -3.1 -3.1) (layer "Eco2.User") (width 0.15) (tstamp 1a2f72d1-0b36-4610-afc4-4ad1660d5d3b))
(fp_line (start -3.1 3.1) (end -3.1 -3.1) (layer "Eco2.User") (width 0.15) (tstamp dde3dba8-1b81-466c-93a3-c284ff4da1ef))
(fp_line (start -3.7 3.3) (end -3.7 -3.3) (layer "F.Fab") (width 0.15) (tstamp 13475e15-f37c-4de8-857e-1722b0c39513))
(fp_line (start -3.7 -3.3) (end 3.7 -3.3) (layer "F.Fab") (width 0.15) (tstamp 58dc14f9-c158-4824-a84e-24a6a482a7a4))
(fp_line (start 3.7 3.3) (end -3.7 3.3) (layer "F.Fab") (width 0.15) (tstamp b635b16e-60bb-4b3e-9fc3-47d34eef8381))
(fp_line (start 3.7 -3.3) (end 3.7 3.3) (layer "F.Fab") (width 0.15) (tstamp f976e2cc-36f9-4479-a816-2c74d1d5da6f))
(pad "1" thru_hole circle locked (at 2.54 0 90) (size 2 2) (drill 1.4986) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "1") (pintype "passive") (tstamp 854dd5d4-5fd2-4730-bd49-a9cd8299a065))
(pad "2" thru_hole circle locked (at -2.54 0 90) (size 2 2) (drill 1.4986) (layers *.Cu *.Mask)
(net 11 "R_BTN") (pinfunction "2") (pintype "passive") (tstamp 2732632c-4768-42b6-bf7f-14643424019e))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x08_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 1e99a8bb-f22d-44d8-9f8e-4374ce678a46)
(at 135.636 146.939 90)
(descr "Through hole straight pin header, 2x08, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x08 2.54mm double row")
(property "Sheetfile" "rp2040_trackball_mouse.kicad_sch")
(property "Sheetname" "")
(path "/c360b637-6f5d-44e0-97f7-af09c2986ed7")
(attr through_hole)
(fp_text reference "J6" (at 1.27 -3.063 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8200d3ec-6774-4a75-ac6a-eb4cf4098bf4)
)
(fp_text value "Conn_02x08_Odd_Even" (at 1.27 20.11 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7aa34934-d834-4e9c-8ff7-760c6dbff4ff)
)
(fp_text user "${REFERENCE}" (at 1.27 8.89) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7008e248-661c-4c7c-b274-d987c71690ff)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 0955f3b4-e011-4448-a9d1-5ce23dba85b9))
(fp_line (start -1.33 1.27) (end 1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 0f5847c8-8800-4b2b-bcdc-38372d5c201e))
(fp_line (start 3.87 -1.33) (end 3.87 19.11) (layer "F.SilkS") (width 0.12) (tstamp 1813663a-5289-4632-9c86-86110debd5cf))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 33b46bec-5f99-469c-b9ef-87b9e130750a))
(fp_line (start -1.33 19.11) (end 3.87 19.11) (layer "F.SilkS") (width 0.12) (tstamp 4096c8e3-18de-4d14-8837-37b1085905cd))
(fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 89c503ab-3ca7-41ee-a265-48334e952ca8))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d5701db0-4e02-415a-9d7b-c12658ad8078))
(fp_line (start -1.33 1.27) (end -1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp d78b5a65-1fde-4ebc-9dc2-78efbddd07eb))
(fp_line (start 4.35 19.55) (end 4.35 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 120e4ed9-18e6-4f8b-9956-75004885aa94))
(fp_line (start -1.8 -1.8) (end -1.8 19.55) (layer "F.CrtYd") (width 0.05) (tstamp 2e14c269-852c-4387-93d7-b55d032d3510))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 74533a9e-591a-415d-88a9-e4b95f02a9c4))
(fp_line (start -1.8 19.55) (end 4.35 19.55) (layer "F.CrtYd") (width 0.05) (tstamp eaa3f6bf-38b4-49e2-a6c5-e35451af8923))
(fp_line (start 3.81 -1.27) (end 3.81 19.05) (layer "F.Fab") (width 0.1) (tstamp 22a5460d-3962-49b1-bc95-93493cc56635))
(fp_line (start -1.27 0) (end 0 -1.27) (layer "F.Fab") (width 0.1) (tstamp 5bed883f-269c-4842-b306-133b3c0e4c99))
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 6baf2211-be40-4a80-bb62-d72128787f05))
(fp_line (start -1.27 19.05) (end -1.27 0) (layer "F.Fab") (width 0.1) (tstamp a3c2d6d0-f497-43e2-b013-1ab2144ebe69))
(fp_line (start 3.81 19.05) (end -1.27 19.05) (layer "F.Fab") (width 0.1) (tstamp fd045709-5bc7-46ba-88b9-ec9e9e752a61))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 91d4a16d-06c7-4624-8996-ad3e9d06ec87))
(pad "2" thru_hole oval locked (at 2.54 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "NCS") (pinfunction "Pin_2") (pintype "passive") (tstamp ccdf8d8f-7080-4519-bb70-8191b1eb247b))
(pad "3" thru_hole oval locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "ENCODER_B") (pinfunction "Pin_3") (pintype "passive") (tstamp 73061b98-71f1-4aa5-ba0b-8c3a26582e96))
(pad "4" thru_hole oval locked (at 2.54 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp b20a01f8-d4ca-45cd-81ca-aa725eda74ee))
(pad "5" thru_hole oval locked (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 "L_BTN") (pinfunction "Pin_5") (pintype "passive") (tstamp bd777e39-53f5-4fa2-98a3-2f3894a3d5f7))
(pad "6" thru_hole oval locked (at 2.54 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "RESET") (pinfunction "Pin_6") (pintype "passive") (tstamp f4cb3ee5-91d0-487e-992f-01f2a10cb111))
(pad "7" thru_hole oval locked (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 32 "unconnected-(J6-Pad7)") (pinfunction "Pin_7") (pintype "passive+no_connect") (tstamp 9fb3c755-8c22-4290-98d8-79b510709e1a))
(pad "8" thru_hole oval locked (at 2.54 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "SCLK") (pinfunction "Pin_8") (pintype "passive") (tstamp 6eacf6ae-d78c-48de-8a6d-9bdd8ce04620))
(pad "9" thru_hole oval locked (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 33 "unconnected-(J6-Pad9)") (pinfunction "Pin_9") (pintype "passive+no_connect") (tstamp 38c1900a-5c63-45f1-9890-0b700a888ab6))
(pad "10" thru_hole oval locked (at 2.54 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "SDIO") (pinfunction "Pin_10") (pintype "passive") (tstamp 9965bd4c-d926-4336-a838-8abdffcad262))
(pad "11" thru_hole oval locked (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 34 "unconnected-(J6-Pad11)") (pinfunction "Pin_11") (pintype "passive+no_connect") (tstamp 472da5a0-705d-4029-a223-21e66297fddd))
(pad "12" thru_hole oval locked (at 2.54 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "ENCODER_A") (pinfunction "Pin_12") (pintype "passive") (tstamp 17b0d1c8-2c7e-4e8e-a6d4-af773760ea8c))
(pad "13" thru_hole oval locked (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 31 "unconnected-(J6-Pad13)") (pinfunction "Pin_13") (pintype "passive+no_connect") (tstamp 688b3b28-12a1-4cb3-9081-50f7c318cb71))
(pad "14" thru_hole oval locked (at 2.54 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_14") (pintype "passive") (tstamp 25b2320c-bad6-483e-9f81-bbc8be690cdd))
(pad "15" thru_hole oval locked (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_15") (pintype "passive") (tstamp 397cd0d0-ec81-466e-aecd-d2ceee76e173))
(pad "16" thru_hole oval locked (at 2.54 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "R_BTN") (pinfunction "Pin_16") (pintype "passive") (tstamp c010ff5b-3074-4de3-ad62-04fd0f280a41))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x08_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x08_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 23285c5a-7b12-49c4-b32b-ecfe8278cf8e)
(at 135.636 131.699 90)
(descr "Through hole straight pin header, 2x08, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x08 2.54mm double row")
(property "Sheetfile" "rp2040_trackball_mouse.kicad_sch")
(property "Sheetname" "")
(path "/778130e2-5dcf-4ba4-bd77-4acc3a461105")
(attr through_hole)
(fp_text reference "J5" (at 1.245 -2.6455 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 000a0380-3fce-4263-b8d1-923dc009b895)
)
(fp_text value "Conn_02x08_Odd_Even" (at 1.27 20.11 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7e4daa67-b867-4f25-8aab-653839cc08b8)
)
(fp_text user "${REFERENCE}" (at 1.27 8.89) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ad9260db-7af4-41ac-938c-facffdeeeda4)
)
(fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 1d2f80ac-779e-4757-b5f4-eb18c36f5af8))
(fp_line (start -1.33 1.27) (end 1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 45c5dafe-4671-417c-85a2-0101681dce0b))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 527657f3-36ba-4879-baf8-a42e095458d3))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 7dfd98fe-48ff-4f22-b179-591516a5f1ce))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 98bb3c0c-4720-4c23-84d0-2c32ea5682f5))
(fp_line (start -1.33 19.11) (end 3.87 19.11) (layer "F.SilkS") (width 0.12) (tstamp a9b02ec6-e6e2-4eac-8da5-3da941741fdc))
(fp_line (start 3.87 -1.33) (end 3.87 19.11) (layer "F.SilkS") (width 0.12) (tstamp ae1418fa-f841-4342-b1c8-d2397088d6c9))
(fp_line (start -1.33 1.27) (end -1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp f262af4b-ce6b-426d-8fea-5a4dc2950c95))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 1111372b-30f8-4237-82b2-3b7694912fb7))
(fp_line (start -1.8 19.55) (end 4.35 19.55) (layer "F.CrtYd") (width 0.05) (tstamp 1eed39f7-a4a0-49a8-b077-08f9a6c61362))
(fp_line (start 4.35 19.55) (end 4.35 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 54a9f41e-94f9-4e39-bade-d5eaef3748d1))
(fp_line (start -1.8 -1.8) (end -1.8 19.55) (layer "F.CrtYd") (width 0.05) (tstamp 58614d26-f7d0-4a75-ada9-cba7a7ad6267))
(fp_line (start -1.27 19.05) (end -1.27 0) (layer "F.Fab") (width 0.1) (tstamp 43fb37c7-803f-4ff5-a713-2ffe1847f76e))
(fp_line (start 3.81 19.05) (end -1.27 19.05) (layer "F.Fab") (width 0.1) (tstamp b009a2d9-8024-4bed-ac41-6240c5916cbf))
(fp_line (start 3.81 -1.27) (end 3.81 19.05) (layer "F.Fab") (width 0.1) (tstamp b6f9366a-ebd8-4a3b-806a-c9319f1a010b))
(fp_line (start -1.27 0) (end 0 -1.27) (layer "F.Fab") (width 0.1) (tstamp c13d7bc9-c88b-4cf9-b623-fa1c24f6384b))
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp cb985a35-2e53-4b76-baf8-d4ef6c28ee2c))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "unconnected-(J5-Pad1)") (pinfunction "Pin_1") (pintype "passive+no_connect") (tstamp 8ec179dd-d977-40eb-ad00-59717f03fb5b))
(pad "2" thru_hole oval locked (at 2.54 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 1fb2864f-b256-46af-867a-9f8ec276c368))
(pad "3" thru_hole oval locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 80e0b6ee-0969-45dc-8a07-7957911ff62d))
(pad "4" thru_hole oval locked (at 2.54 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 24 "VBUS") (pinfunction "Pin_4") (pintype "passive") (tstamp a35755c8-1f5b-4f2c-b6aa-5cb5dbb9bfba))
(pad "5" thru_hole oval locked (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "unconnected-(J5-Pad5)") (pinfunction "Pin_5") (pintype "passive+no_connect") (tstamp 207f3b04-5d05-4d5e-a65c-613b60a18274))
(pad "6" thru_hole oval locked (at 2.54 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 21 "unconnected-(J5-Pad6)") (pinfunction "Pin_6") (pintype "passive+no_connect") (tstamp 960d231c-d8b4-44a6-89ee-5c9c3c3c9d72))
(pad "7" thru_hole oval locked (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 "unconnected-(J5-Pad7)") (pinfunction "Pin_7") (pintype "passive+no_connect") (tstamp 022fd48e-5adf-4517-be85-752807a48858))
(pad "8" thru_hole oval locked (at 2.54 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 28 "RUN") (pinfunction "Pin_8") (pintype "passive") (tstamp 8d481c59-ef0b-475d-b72b-6f104fc7b12f))
(pad "9" thru_hole oval locked (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 26 "SWCLK") (pinfunction "Pin_9") (pintype "passive") (tstamp 0eb913cb-2e9c-477b-b795-6ef7b7345402))
(pad "10" thru_hole oval locked (at 2.54 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 22 "D+") (pinfunction "Pin_10") (pintype "passive") (tstamp c06c08ed-6273-418a-92c2-7cd466cb5356))
(pad "11" thru_hole oval locked (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 "SWDIO") (pinfunction "Pin_11") (pintype "passive") (tstamp c6ab7022-fdd5-4228-ba5e-68262e633141))
(pad "12" thru_hole oval locked (at 2.54 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 "D-") (pinfunction "Pin_12") (pintype "passive") (tstamp f0eeb323-482c-4f90-b194-d5a44bbfc1c8))
(pad "13" thru_hole oval locked (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_13") (pintype "passive") (tstamp 0df0949b-10ea-45bc-a8d2-1580cb661975))
(pad "14" thru_hole oval locked (at 2.54 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 "BOOTSEL") (pinfunction "Pin_14") (pintype "passive") (tstamp 3596a7a0-bc62-4cd1-81e4-5bc2b77e4f2f))
(pad "15" thru_hole oval locked (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 30 "unconnected-(J5-Pad15)") (pinfunction "Pin_15") (pintype "passive+no_connect") (tstamp 0fa5e5fa-9477-4712-8f05-dd168ee0455a))
(pad "16" thru_hole oval locked (at 2.54 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_16") (pintype "passive") (tstamp 6789269f-508b-4c18-974e-f8a726c38b08))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x08_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_SMD:SW_SPST_PTS810" (layer "F.Cu")
(tedit 5B0610A8) (tstamp 46be6f5b-3a85-426c-85a8-13ab147fa71e)
(at 176.022 135.89 90)
(descr "C&K Components, PTS 810 Series, Microminiature SMT Top Actuated, http://www.ckswitches.com/media/1476/pts810.pdf")
(tags "SPST Button Switch")
(property "Sheetfile" "rp2040_trackball_mouse.kicad_sch")
(property "Sheetname" "")
(path "/75f62f58-577d-4778-afae-31a34b7bccbd")
(attr smd)
(fp_text reference "SW3" (at 4.064 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd51dbdc-1b30-4b8d-9ee2-872891c61ef0)
)
(fp_text value "SW_Push" (at 0 2.6 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 318df4e9-70d2-46fb-b79e-5675494d17a8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp 0720461c-299d-4bb7-989d-154d9659e9e8)
)
(fp_line (start -2.2 1.58) (end -2.2 1.7) (layer "F.SilkS") (width 0.12) (tstamp 0c1301fd-7ebc-4e4b-bbd0-5d2d01e7305f))
(fp_line (start 2.2 -1.7) (end -2.2 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 2a11d77b-a242-4f70-8499-555c64f3d1aa))
(fp_line (start -2.2 1.7) (end 2.2 1.7) (layer "F.SilkS") (width 0.12) (tstamp 87ac1854-87f6-4be4-bf2f-80019e9e4dec))
(fp_line (start -2.2 -1.7) (end -2.2 -1.58) (layer "F.SilkS") (width 0.12) (tstamp 997de0d4-9f67-42ef-b478-97ef4461b239))
(fp_line (start -2.2 -0.57) (end -2.2 0.57) (layer "F.SilkS") (width 0.12) (tstamp b0c98be1-97c4-4eba-8cfc-1445a3eef063))
(fp_line (start 2.2 0.57) (end 2.2 -0.57) (layer "F.SilkS") (width 0.12) (tstamp d2fd18e0-8b33-4fcc-8e80-2a623c7e15cf))
(fp_line (start 2.2 -1.58) (end 2.2 -1.7) (layer "F.SilkS") (width 0.12) (tstamp d38839ad-2dde-4048-aa26-5346eeddecb0))
(fp_line (start 2.2 1.7) (end 2.2 1.58) (layer "F.SilkS") (width 0.12) (tstamp f012d41f-c575-4e0c-973d-7217435ab1b4))
(fp_line (start -2.85 1.85) (end -2.85 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 8b4f3ce8-1650-4421-9e4c-a79f980611db))
(fp_line (start -2.85 -1.85) (end 2.85 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp ca1e176e-4230-4412-b714-89712f843e00))
(fp_line (start 2.85 -1.85) (end 2.85 1.85) (layer "F.CrtYd") (width 0.05) (tstamp db50b412-e60e-4863-bb19-3dde8b5ec167))
(fp_line (start 2.85 1.85) (end -2.85 1.85) (layer "F.CrtYd") (width 0.05) (tstamp f8c428a6-8ea6-454d-9efb-e5c100c981d8))
(fp_line (start -2.1 1.6) (end 2.1 1.6) (layer "F.Fab") (width 0.1) (tstamp 07ac8978-53a7-4c30-a123-37cfbb2af7a0))
(fp_line (start -0.4 -1.1) (end 0.4 -1.1) (layer "F.Fab") (width 0.1) (tstamp 3c77bfe7-86c5-40d5-bb7b-ccef38595622))
(fp_line (start 2.1 -1.6) (end -2.1 -1.6) (layer "F.Fab") (width 0.1) (tstamp 6b61fbba-d6f4-462a-b450-58f9fedb0eb3))
(fp_line (start -2.1 -1.6) (end -2.1 1.6) (layer "F.Fab") (width 0.1) (tstamp 810cd5f8-0752-4fd3-94b6-ee694fe95c8d))
(fp_line (start 2.1 1.6) (end 2.1 -1.6) (layer "F.Fab") (width 0.1) (tstamp 90e29598-2246-4a35-b214-366dc6c1121e))
(fp_line (start 0.4 1.1) (end -0.4 1.1) (layer "F.Fab") (width 0.1) (tstamp ad2e79fb-7029-4654-8456-494a6e0594aa))
(fp_arc (start 0.4 -1.1) (mid 1.5 0) (end 0.4 1.1) (layer "F.Fab") (width 0.1) (tstamp 9b38e044-87da-4959-9bc2-2cd831de661e))
(fp_arc (start -0.4 1.1) (mid -1.5 0) (end -0.4 -1.1) (layer "F.Fab") (width 0.1) (tstamp b7531eb3-bc67-49db-9048-63c9a69aed77))
(pad "1" smd rect locked (at -2.075 -1.075 90) (size 1.05 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "BOOTSEL") (pinfunction "1") (pintype "passive") (tstamp 52a5d068-7b74-479d-bdab-5e02887f8f59))
(pad "1" smd rect locked (at 2.075 -1.075 90) (size 1.05 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "BOOTSEL") (pinfunction "1") (pintype "passive") (tstamp 667eb434-f502-436d-a803-16994b223198))
(pad "2" smd rect locked (at 2.075 1.075 90) (size 1.05 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp 4dc4f552-4fbe-434e-a266-1bfbe81d05d1))
(pad "2" smd rect locked (at -2.075 1.075 90) (size 1.05 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp 87be3b5c-c246-4950-ab3d-1c7c2efd7569))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_SPST_PTS810.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_SMD:SW_SPST_PTS810" (layer "F.Cu")
(tedit 5B0610A8) (tstamp 67684dea-2c10-4237-9754-a848791667ba)
(at 171.196 135.89 90)
(descr "C&K Components, PTS 810 Series, Microminiature SMT Top Actuated, http://www.ckswitches.com/media/1476/pts810.pdf")
(tags "SPST Button Switch")
(property "Sheetfile" "rp2040_trackball_mouse.kicad_sch")
(property "Sheetname" "")
(path "/3655904b-27db-4f47-ae6c-2f6040e9dcaf")
(attr smd)
(fp_text reference "SW4" (at 4.064 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 627854fa-48e8-4767-bdd1-0e322c1ff0a6)
)
(fp_text value "SW_Push" (at 0 2.6 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 41bdcdcf-96ef-47f6-9992-09a1f9edb942)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp 209e0e84-4a8d-4230-8cfb-1face98a2e72)
)
(fp_line (start 2.2 0.57) (end 2.2 -0.57) (layer "F.SilkS") (width 0.12) (tstamp 44c3f53b-44c2-4647-8bff-7b748b2b6e6a))
(fp_line (start 2.2 -1.7) (end -2.2 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 6f04d99a-4e8a-47c5-abb1-d116d664afaf))
(fp_line (start 2.2 1.7) (end 2.2 1.58) (layer "F.SilkS") (width 0.12) (tstamp 8333d76e-e1b8-439f-9369-3f32cf9a3675))
(fp_line (start -2.2 1.7) (end 2.2 1.7) (layer "F.SilkS") (width 0.12) (tstamp 8a1b921d-9b5d-4a2b-b1b1-ff2a0f21b8b0))
(fp_line (start 2.2 -1.58) (end 2.2 -1.7) (layer "F.SilkS") (width 0.12) (tstamp b4cce196-a374-4f98-aba5-d5d3d10f22d8))
(fp_line (start -2.2 -1.7) (end -2.2 -1.58) (layer "F.SilkS") (width 0.12) (tstamp c850b260-1f42-48e1-88d2-c6a27a285f93))
(fp_line (start -2.2 -0.57) (end -2.2 0.57) (layer "F.SilkS") (width 0.12) (tstamp dccbaa16-b364-445d-a6ea-dd9a758db64c))
(fp_line (start -2.2 1.58) (end -2.2 1.7) (layer "F.SilkS") (width 0.12) (tstamp e836ee5c-b239-4183-b211-28ec8d64a95a))
(fp_line (start 2.85 -1.85) (end 2.85 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 0cebf6a9-7a78-496b-95f2-a35b3cf49f19))
(fp_line (start 2.85 1.85) (end -2.85 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 3b8f5ee8-3373-4549-93ac-737ec2866f68))
(fp_line (start -2.85 -1.85) (end 2.85 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 5ffa8733-68de-4144-b7ff-00d656324597))
(fp_line (start -2.85 1.85) (end -2.85 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 967cc60c-dad7-40e8-bdbd-11c10e093e57))
(fp_line (start 2.1 -1.6) (end -2.1 -1.6) (layer "F.Fab") (width 0.1) (tstamp 0eedf353-06c7-464d-b9a2-d1092f86ddfc))
(fp_line (start 2.1 1.6) (end 2.1 -1.6) (layer "F.Fab") (width 0.1) (tstamp 370031a0-5345-4543-a9bf-78391baae50d))
(fp_line (start -2.1 -1.6) (end -2.1 1.6) (layer "F.Fab") (width 0.1) (tstamp a4e15eab-2a7d-4f87-ae3f-242682c410c5))
(fp_line (start -0.4 -1.1) (end 0.4 -1.1) (layer "F.Fab") (width 0.1) (tstamp cfdbfcae-21f4-4f0a-9b33-1dc1a7336fb3))
(fp_line (start 0.4 1.1) (end -0.4 1.1) (layer "F.Fab") (width 0.1) (tstamp e0a58a6e-b9ed-4abc-9f08-a8dd3618b0a3))
(fp_line (start -2.1 1.6) (end 2.1 1.6) (layer "F.Fab") (width 0.1) (tstamp f916e9cb-a39e-4de7-a5bf-5ef808aada51))
(fp_arc (start 0.4 -1.1) (mid 1.5 0) (end 0.4 1.1) (layer "F.Fab") (width 0.1) (tstamp 27a61c9c-b073-401e-a4bc-430b7c4a33be))
(fp_arc (start -0.4 1.1) (mid -1.5 0) (end -0.4 -1.1) (layer "F.Fab") (width 0.1) (tstamp 91eebec8-22cf-4712-9c10-fe9c5fc97d34))
(pad "1" smd rect locked (at -2.075 -1.075 90) (size 1.05 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "RUN") (pinfunction "1") (pintype "passive") (tstamp 6c12f0a8-17f0-433f-a924-25490eeafa67))
(pad "1" smd rect locked (at 2.075 -1.075 90) (size 1.05 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "RUN") (pinfunction "1") (pintype "passive") (tstamp bf2cab49-656b-47d4-bcf2-ad99951611e5))
(pad "2" smd rect locked (at 2.075 1.075 90) (size 1.05 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp 8aafa139-3946-4b61-b2c6-dcfe6a7ce34a))
(pad "2" smd rect locked (at -2.075 1.075 90) (size 1.05 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp ff152572-9f8b-4b82-87d4-7ce3bbec598a))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_SPST_PTS810.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000061451fed)
(at 113.5 106.455 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "rp2040_trackball_mouse.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006145afff")
(attr smd)
(fp_text reference "R10" (at -3.265 0.165 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 9193c41e-d425-447d-b95c-6986d66ea01c)
)
(fp_text value "0" (at 0 -1.43 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 27d56953-c620-4d5b-9c1c-e48bc3d9684a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp 29195ea4-8218-44a1-b4bf-466bee0082e4)
)
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "B.SilkS") (width 0.12) (tstamp 5cf2db29-f7ab-499a-9907-cdeba64bf0f3))
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "B.SilkS") (width 0.12) (tstamp feb26ecb-9193-46ea-a41b-d09305bf0a3e))
(fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 0ce8d3ab-2662-4158-8a2a-18b782908fc5))
(fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459))
(fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 382ca670-6ae8-4de6-90f9-f241d1337171))
(fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp b0906e10-2fbc-4309-a8b4-6fc4cd1a5490))
(fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp 29e058a7-50a3-43e5-81c3-bfee53da08be))
(fp_line (start 0.8 0.4125) (end 0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp 3fd54105-4b7e-4004-9801-76ec66108a22))
(fp_line (start -0.8 0.4125) (end 0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp 6fd4442e-30b3-428b-9306-61418a63d311))
(fp_line (start -0.8 -0.4125) (end -0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp 8d0c1d66-35ef-4a53-a28f-436a11b54f42))
(pad "1" smd roundrect locked (at -0.9125 0 90) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 24 "VBUS") (pintype "passive") (tstamp cff34251-839c-4da9-a0ad-85d0fc4e32af))
(pad "2" smd roundrect locked (at 0.9125 0 90) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 17 "Net-(R10-Pad2)") (pintype "passive") (tstamp d0fb0864-e79b-4bdc-8e8e-eed0cabe6d56))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000061451ffe)
(at 115.5 106.455 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "rp2040_trackball_mouse.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061441ff0")
(attr smd)
(fp_text reference "R11" (at -3.265 0.07 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp c8029a4c-945d-42ca-871a-dd73ff50a1a3)
)
(fp_text value "270" (at 0.037 1.594 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 6781326c-6e0d-4753-8f28-0f5c687e01f9)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp e1535036-5d36-405f-bb86-3819621c4f23)
)
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "B.SilkS") (width 0.12) (tstamp 9b3c58a7-a9b9-4498-abc0-f9f43e4f0292))
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "B.SilkS") (width 0.12) (tstamp e40e8cef-4fb0-4fc3-be09-3875b2cc8469))
(fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 15fe8f3d-6077-4e0e-81d0-8ec3f4538981))
(fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 814763c2-92e5-4a2c-941c-9bbd073f6e87))
(fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 82be7aae-5d06-4178-8c3e-98760c41b054))
(fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp e65b62be-e01b-4688-a999-1d1be370c4ae))
(fp_line (start 0.8 0.4125) (end 0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp 35a9f71f-ba35-47f6-814e-4106ac36c51e))
(fp_line (start -0.8 0.4125) (end 0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp 5b34a16c-5a14-4291-8242-ea6d6ac54372))
(fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp c094494a-f6f7-43fc-a007-4951484ddf3a))
(fp_line (start -0.8 -0.4125) (end -0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp c701ee8e-1214-4781-a973-17bef7b6e3eb))
(pad "1" smd roundrect locked (at -0.9125 0 90) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 24 "VBUS") (pintype "passive") (tstamp a6b7df29-bcf8-46a9-b623-7eaac47f5110))
(pad "2" smd roundrect locked (at 0.9125 0 90) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(D1-Pad2)") (pintype "passive") (tstamp d9c6d5d2-0b49-49ba-a970-cd2c32f74c54))
(model "${KISYS3DMOD}/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_Pad1.08x0.95mm_HandSolder" (layer "B.Cu")
(tedit 5F68FEEF) (tstamp 00000000-0000-0000-0000-00006145d76e)
(at 120 142.5 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "rp2040_trackball_mouse.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000615ce9c5")
(attr smd)
(fp_text reference "C4" (at 0 -1.772) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp da25bf79-0abb-4fac-a221-ca5c574dfc29)
)
(fp_text value "0.1u" (at 3.556 0) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 34cdc1c9-c9e2-44c4-9677-c1c7d7efd83d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp eae14f5f-515c-4a6f-ad0e-e8ef233d14bf)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "B.SilkS") (width 0.12) (tstamp 6f80f798-dc24-438f-a1eb-4ee2936267c8))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "B.SilkS") (width 0.12) (tstamp f78e02cd-9600-4173-be8d-67e530b5d19f))
(fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 088f77ba-fca9-42b3-876e-a6937267f957))
(fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 71989e06-8659-4605-b2da-4f729cc41263))
(fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 9a0b74a5-4879-4b51-8e8e-6d85a0107422))
(fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp f66398f1-1ae7-4d4d-939f-958c174c6bce))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 26801cfb-b53b-4a6a-a2f4-5f4986565765))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp aa79024d-ca7e-4c24-b127-7df08bbd0c75))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp c49d23ab-146d-4089-864f-2d22b5b414b9))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp c7af8405-da2e-4a34-b9b8-518f342f8995))
(pad "1" smd roundrect locked (at -0.8625 0 180) (size 1.075 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 24 "VBUS") (pintype "passive") (tstamp 6f675e5f-8fe6-4148-baf1-da97afc770f8))
(pad "2" smd roundrect locked (at 0.8625 0 180) (size 1.075 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 6e435cd4-da2b-4602-a0aa-5dd988834dff))
(model "${KISYS3DMOD}/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_Pad0.98x0.95mm_HandSolder" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000614604c9)
(at 129.413 132.207)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "rp2040_trackball_mouse.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000614afa95")
(attr smd)
(fp_text reference "R15" (at 0 -1.27) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 4f66b314-0f62-4fb6-8c3c-f9c6a75cd3ec)
)
(fp_text value "15k" (at 0 -1.27) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 01e9b6e7-adf9-4ee7-9447-a588630ee4a2)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp b7199d9b-bebb-4100-9ad3-c2bd31e21d65)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "B.SilkS") (width 0.12) (tstamp 0c3dceba-7c95-4b3d-b590-0eb581444beb))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "B.SilkS") (width 0.12) (tstamp abe07c9a-17c3-43b5-b7a6-ae867ac27ea7))
(fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 6595b9c7-02ee-4647-bde5-6b566e35163e))
(fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 965308c8-e014-459a-b9db-b8493a601c62))
(fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp b1c649b1-f44d-46c7-9dea-818e75a1b87e))
(fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp f3628265-0155-43e2-a467-c40ff783e265))
(fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955))
(fp_line (start -0.8 0.4125) (end 0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp 7d928d56-093a-4ca8-aed1-414b7e703b45))
(fp_line (start 0.8 0.4125) (end 0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp 8a650ebf-3f78-4ca4-a26b-a5028693e36d))
(fp_line (start -0.8 -0.4125) (end -0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp ca87f11b-5f48-4b57-8535-68d3ec2fe5a9))
(pad "1" smd roundrect locked (at -0.9125 0) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 5 "ENCODER_A") (pintype "passive") (tstamp 16a9ae8c-3ad2-439b-8efe-377c994670c7))
(pad "2" smd roundrect locked (at 0.9125 0) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 770ad51a-7219-4633-b24a-bd20feb0a6c5))
(model "${KISYS3DMOD}/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_Pad1.08x0.95mm_HandSolder" (layer "B.Cu")
(tedit 5F68FEEF) (tstamp 00000000-0000-0000-0000-0000614604f9)
(at 110.49 134.747 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "rp2040_trackball_mouse.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006145aa75")
(attr smd)
(fp_text reference "C11" (at 3.302 0) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp e5203297-b913-4288-a576-12a92185cb52)
)
(fp_text value "(not Mount)" (at 3.429 0) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 1f8b2c0c-b042-4e2e-80f6-4959a27b238f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "B.SilkS") (width 0.12) (tstamp b873bc5d-a9af-4bd9-afcb-87ce4d417120))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "B.SilkS") (width 0.12) (tstamp f7667b23-296e-4362-a7e3-949632c8954b))
(fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 03c7f780-fc1b-487a-b30d-567d6c09fdc8))
(fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 4107d40a-e5df-4255-aacc-13f9928e090c))
(fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5))
(fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp c04386e0-b49e-4fff-b380-675af13a62cb))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 700e8b73-5976-423f-a3f3-ab3d9f3e9760))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 79e31048-072a-4a40-a625-26bb0b5f046b))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp b4300db7-1220-431a-b7c3-2edbdf8fa6fc))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp c76d4423-ef1b-4a6f-8176-33d65f2877bb))
(pad "1" smd roundrect locked (at -0.8625 0 180) (size 1.075 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 18 "Net-(C11-Pad1)") (pintype "passive") (tstamp e0f06b5c-de63-4833-a591-ca9e19217a35))
(pad "2" smd roundrect locked (at 0.8625 0 180) (size 1.075 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 0ae82096-0994-4fb0-9a2a-d4ac4804abac))
(model "${KISYS3DMOD}/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_Pad0.98x0.95mm_HandSolder" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000061460529)
(at 125.603 132.207)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "rp2040_trackball_mouse.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000614aaced")
(attr smd)
(fp_text reference "R13" (at 0 -1.27) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 275aa44a-b61f-489f-9e2a-819a0fe0d1eb)
)
(fp_text value "0" (at 0 -1.397) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 6c67e4f6-9d04-4539-b356-b76e915ce848)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp 0e1ed1c5-7428-4dc7-b76e-49b2d5f8177d)
)
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "B.SilkS") (width 0.12) (tstamp 8d9a3ecc-539f-41da-8099-d37cea9c28e7))
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "B.SilkS") (width 0.12) (tstamp e472dac4-5b65-4920-b8b2-6065d140a69d))
(fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 0351df45-d042-41d4-ba35-88092c7be2fc))
(fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 240e5dac-6242-47a5-bbef-f76d11c715c0))
(fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp aa2ea573-3f20-43c1-aa99-1f9c6031a9aa))
(fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp f40d350f-0d3e-4f8a-b004-d950f2f8f1ba))
(fp_line (start 0.8 0.4125) (end 0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp 37e8181c-a81e-498b-b2e2-0aef0c391059))
(fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp 676efd2f-1c48-4786-9e4b-2444f1e8f6ff))
(fp_line (start -0.8 -0.4125) (end -0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp b447dbb1-d38e-4a15-93cb-12c25382ea53))
(fp_line (start -0.8 0.4125) (end 0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp cfa5c16e-7859-460d-a0b8-cea7d7ea629c))
(pad "1" smd roundrect locked (at -0.9125 0) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(R13-Pad1)") (pintype "passive") (tstamp 2d67a417-188f-4014-9282-000265d80009))
(pad "2" smd roundrect locked (at 0.9125 0) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 5 "ENCODER_A") (pintype "passive") (tstamp 14c51520-6d91-4098-a59a-5121f2a898f7))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000061460559)
(at 125.603 136.017)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "rp2040_trackball_mouse.kicad_sch")
(property "Sheetname" "")
(path "/4da6845f-55b1-4c3f-852b-d9d811da09d6")
(attr smd)
(fp_text reference "R16" (at 3.175 0) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp df32840e-2912-4088-b54c-9a85f64c0265)
)
(fp_text value "20k" (at 3.048 0) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp c332fa55-4168-4f55-88a5-f82c7c21040b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp 0755aee5-bc01-4cb5-b830-583289df50a3)
)
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "B.SilkS") (width 0.12) (tstamp 6d26d68f-1ca7-4ff3-b058-272f1c399047))
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "B.SilkS") (width 0.12) (tstamp d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a))
(fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 4fb21471-41be-4be8-9687-66030f97befc))
(fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 70e15522-1572-4451-9c0d-6d36ac70d8c6))
(fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 7599133e-c681-4202-85d9-c20dac196c64))
(fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp dde51ae5-b215-445e-92bb-4a12ec410531))
(fp_line (start -0.8 -0.4125) (end -0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp 68877d35-b796-44db-9124-b8e744e7412e))