-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbeeball.kicad_pcb
21397 lines (21374 loc) · 753 KB
/
beeball.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits false)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "VDD")
(net 3 "VCC")
(net 4 "miso")
(net 5 "sw1")
(net 6 "sw2")
(net 7 "sw3")
(net 8 "unconnected-(U1-Pad5)")
(net 9 "unconnected-(U1-Pad6)")
(net 10 "sclk")
(net 11 "mosi")
(net 12 "unconnected-(U1-Pad14)")
(net 13 "unconnected-(U2-Pad1)")
(net 14 "unconnected-(U2-Pad2)")
(net 15 "unconnected-(U2-Pad6)")
(net 16 "unconnected-(U2-Pad14)")
(net 17 "unconnected-(U2-Pad16)")
(net 18 "unconnected-(U3-Pad4)")
(net 19 "Net-(R1-Pad2)")
(net 20 "Net-(C3-Pad1)")
(net 21 "Net-(R2-Pad1)")
(net 22 "unconnected-(U1-Pad4)")
(net 23 "motion")
(net 24 "ncs")
(footprint "Project Footprints:MX-Alps-Choc-1U" (layer "F.Cu")
(tedit 5CE00D88) (tstamp abc4338d-5228-49fc-ba1d-925bf1159552)
(at 175.26 83.82)
(property "Sheetfile" "beeball.kicad_sch")
(property "Sheetname" "")
(path "/afa9596b-7321-4d8b-bae4-34853e850ba4")
(attr through_hole)
(fp_text reference "SW3" (at 0 -3.175 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.2)))
(tstamp 6f8b692b-1506-40d1-9cc4-78cfd327872b)
)
(fp_text value "SW_Push" (at 0 -6 180) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.2)))
(tstamp 9ee1cd2c-b2fc-4c64-98d8-e119cde3d204)
)
(fp_line (start -5 7) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 27a2a2d4-d062-4f0b-8e2c-705cbb6d5a8d))
(fp_line (start 7 -5) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 2a6c49c1-8f04-4591-9033-5f4760d4d4fc))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 32808547-8de7-4288-b6b8-67906103c747))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 3b259571-e848-4ffc-b251-823e9a8739c1))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 44da4e9e-8cc8-4b85-9444-474f6192ca1d))
(fp_line (start 7 -7) (end 5 -7) (layer "Dwgs.User") (width 0.15) (tstamp 4f34ccfa-3678-4030-91a7-15576aaacebb))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 61f90261-f0ee-4339-bb83-b30cba8d3329))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 76c2ae7e-2d22-48b1-a7cd-39e9fb057f87))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp bab223c2-3b8d-4e8c-ac74-2f2a811faa27))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp cf76546f-9573-43ba-bb9c-3db95fbdd84f))
(fp_line (start -7 7) (end -7 5) (layer "Dwgs.User") (width 0.15) (tstamp e046e914-8ab6-42a0-a981-67bc5f21d5c8))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp fa17e0ae-62f7-4ed8-bac5-d3e6925e5732))
(pad "" np_thru_hole circle (at 5.08 0 228.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 0b867e21-17af-4732-a4ea-cfe9ded42485))
(pad "" np_thru_hole circle (at -5.08 0 228.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 80107aae-9b8f-4464-ab74-0993a23e6fa1))
(pad "" np_thru_hole circle (at 0 0 180) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 99d869c3-d622-4dd5-92da-6cc69568f6e1))
(pad "" np_thru_hole circle (at 5.5 0 228.1) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp fa45d606-b133-49bc-9c85-17f9f771d55f))
(pad "" np_thru_hole circle (at -5.5 0 228.1) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp fb0d840a-ecfb-43f2-8b5d-c79a8b6efedf))
(pad "1" thru_hole circle (at 0 5.9 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 7 "sw3") (pinfunction "1") (pintype "passive") (tstamp 388ca549-a371-441d-8b00-9fb6ba1106f7))
(pad "1" thru_hole circle (at 2.5 4 180) (size 2.25 2.25) (drill 1.47) (layers *.Cu *.Mask)
(net 7 "sw3") (pinfunction "1") (pintype "passive") (tstamp 4f620935-b979-43c8-89b2-07b6a48e6f30))
(pad "1" thru_hole oval (at 3.81 2.54 228.1) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu *.Mask)
(net 7 "sw3") (pinfunction "1") (pintype "passive") (tstamp 8feebff9-125d-4f6a-9962-e275c0d0f0c5))
(pad "2" thru_hole circle (at -2.54 5.08 180) (size 2.25 2.25) (drill 1.47) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp 00789051-495a-4582-a246-a5e7d9370f69))
(pad "2" thru_hole circle (at -5 3.8 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp 745eaafc-de32-4c0b-a23c-545323dab39c))
(pad "2" thru_hole oval (at -2.5 4.5 266.1) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp 7d15850c-fb8b-47d6-8e27-68b059df3112))
(model "${KIPRJMOD}/models/MX Switch.step"
(offset (xyz -0.3 -0.3 5.5))
(scale (xyz 1 1 1))
(rotate (xyz 0 180 90))
)
(model "${KIPRJMOD}/models/MX Keycap 1U R4.step"
(offset (xyz 0 0 12))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
(model "${KIPRJMOD}/models/Kailh-PG1350.step" hide
(offset (xyz 0 -0.2 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/models/MBK-Keycap-Black.step" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/models/MBK-Keycap-White.step" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Project Footprints:MX-Alps-Choc-1U" (layer "F.Cu")
(tedit 5CE00D88) (tstamp ddc07675-0a0c-4d3e-b98f-3a3c14be122f)
(at 156.21 81.28)
(property "Sheetfile" "beeball.kicad_sch")
(property "Sheetname" "")
(path "/39bf60a3-fdf8-491d-a06c-055f6b4cb421")
(attr through_hole)
(fp_text reference "SW2" (at 0 -3.175 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.2)))
(tstamp bc1add0b-8ccc-42a6-a02c-6483f0f38f0f)
)
(fp_text value "SW_Push" (at 0 -6 180) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.2)))
(tstamp 5ee5877a-6be6-4af6-a8e4-dde9a0fcb4f7)
)
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 0147cc10-93de-4b94-9d07-27c6f00641c3))
(fp_line (start -5 7) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 0c8479da-6933-4cc8-9a3e-5782a923a7e2))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 0cc189e5-591b-454f-a011-c48cdb6af05c))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 4b0c3d4e-b1ad-49ca-99b3-6b4a32b8eeec))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 7050408e-a950-4572-9303-c8c6b50e1fee))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 9456cb69-e1b4-4352-af6a-9ed4abd73d88))
(fp_line (start 7 -5) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp a41a3d69-66b2-41dc-af61-4e0edddbf6e3))
(fp_line (start 7 -7) (end 5 -7) (layer "Dwgs.User") (width 0.15) (tstamp b0a2adc0-89dd-4c04-9164-75e0e2154fb0))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp bb417da1-c544-4c56-8063-3017e32ac227))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp c06f0b83-016d-4ca3-a418-89f5090add2a))
(fp_line (start -7 7) (end -7 5) (layer "Dwgs.User") (width 0.15) (tstamp f25c05b7-7a90-49e3-8e2f-fb481811040c))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp f84467dd-9f5f-4970-8fbe-ddd9e388c18c))
(pad "" np_thru_hole circle (at -5.08 0 228.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 0ad0c84c-c7c6-4f87-a151-f9bd4b21e150))
(pad "" np_thru_hole circle (at 0 0 180) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 15800f1a-b6f5-48b6-919a-ce0e6473364a))
(pad "" np_thru_hole circle (at -5.5 0 228.1) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp a91c3c0f-40af-438b-b4c4-00b342258a6d))
(pad "" np_thru_hole circle (at 5.5 0 228.1) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp ac5fdb38-3615-4b73-8b16-ad39f02ce0d6))
(pad "" np_thru_hole circle (at 5.08 0 228.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp fe40c929-7d37-4a72-ac18-98f4cb01333d))
(pad "1" thru_hole circle (at 2.5 4 180) (size 2.25 2.25) (drill 1.47) (layers *.Cu *.Mask)
(net 6 "sw2") (pinfunction "1") (pintype "passive") (tstamp 17711c4f-958c-422d-ae3e-64f0c79e08cb))
(pad "1" thru_hole circle (at 0 5.9 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 6 "sw2") (pinfunction "1") (pintype "passive") (tstamp 61e39d27-57fc-4e90-abdc-f4a2113d019d))
(pad "1" thru_hole oval (at 3.81 2.54 228.1) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu *.Mask)
(net 6 "sw2") (pinfunction "1") (pintype "passive") (tstamp e47fde59-b505-4bda-8e55-f441e7d5bbe2))
(pad "2" thru_hole oval (at -2.5 4.5 266.1) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp 79a067ec-96bb-4e01-ade0-f6907b72f75c))
(pad "2" thru_hole circle (at -5 3.8 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp 93f67f13-4459-4aa7-a231-af88c7cfbaf8))
(pad "2" thru_hole circle (at -2.54 5.08 180) (size 2.25 2.25) (drill 1.47) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp ffc36421-5625-4186-84f2-41067accdd34))
(model "${KIPRJMOD}/models/MX Switch.step"
(offset (xyz -0.3 -0.3 5.5))
(scale (xyz 1 1 1))
(rotate (xyz 0 180 90))
)
(model "${KIPRJMOD}/models/MX Keycap 1U R4.step"
(offset (xyz 0 0 12))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
(model "${KIPRJMOD}/models/Kailh-PG1350.step" hide
(offset (xyz 0 -0.2 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/models/MBK-Keycap-Black.step" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/models/MBK-Keycap-White.step" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Project Footprints:MX-Alps-Choc-1U" (layer "F.Cu")
(tedit 5CE00D88) (tstamp ec24d483-945b-4c12-9100-a4b7d2e72c0d)
(at 104.14 114.3)
(property "Sheetfile" "beeball.kicad_sch")
(property "Sheetname" "")
(path "/4aa52e76-8df3-4a0c-b2db-be7ae9ce5fbb")
(attr through_hole)
(fp_text reference "SW1" (at 0 -3.175 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.2)))
(tstamp 68e5ca04-1d87-44b9-9f1b-cd3b9758ec56)
)
(fp_text value "SW_Push" (at 0 -6 180) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.2)))
(tstamp 7151c4c0-22b3-4a7e-a1ac-831ff0bdefe9)
)
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 07f9c39d-6d91-4468-a522-abff2fcc06e5))
(fp_line (start -5 7) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 0f2690ce-7078-4049-b54b-be6b66827216))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 1a99b0be-c340-48d7-b230-58bf26b4e466))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 321f3033-a18f-48d8-8cea-3adf52daf87c))
(fp_line (start -7 7) (end -7 5) (layer "Dwgs.User") (width 0.15) (tstamp 485d5f06-1b5b-4df0-b5ba-324780df8270))
(fp_line (start 7 -7) (end 5 -7) (layer "Dwgs.User") (width 0.15) (tstamp 86de6068-d85c-4490-9522-a6badb0871fc))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9b557167-78b4-470c-bea2-d327fc2aac11))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp a4df12db-c71e-40ad-9586-9763c988eb94))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp a5245ee4-2aed-4a56-85ad-c2e09d418554))
(fp_line (start 7 -5) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp ade4e9f5-125c-40cf-b3b9-2b015199331e))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp d1bf458d-aeb5-4aab-ab6e-8b9c78ad4fcc))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp d5b66c81-ee7d-4e46-9eef-d267c2b3339e))
(pad "" np_thru_hole circle (at 5.5 0 228.1) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp 26ab0f91-a7f8-460d-85da-cb351645c574))
(pad "" np_thru_hole circle (at 0 0 180) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 412d26c2-ecb0-4a25-a6a8-9cc1ac52b713))
(pad "" np_thru_hole circle (at -5.08 0 228.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 85101e1d-710e-4750-99ad-efe52fc614dd))
(pad "" np_thru_hole circle (at -5.5 0 228.1) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp c7636dec-562a-44b8-a0aa-8a1fbeb6032c))
(pad "" np_thru_hole circle (at 5.08 0 228.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp f86a4d82-c342-459c-b735-039c99b91581))
(pad "1" thru_hole oval (at 3.81 2.54 228.1) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu *.Mask)
(net 5 "sw1") (pinfunction "1") (pintype "passive") (tstamp 1b1d66e6-0b0e-4f5b-89be-0c2032181ec1))
(pad "1" thru_hole circle (at 0 5.9 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 5 "sw1") (pinfunction "1") (pintype "passive") (tstamp 1cd02fb2-1065-408b-86e5-f8bba111f0d3))
(pad "1" thru_hole circle (at 2.5 4 180) (size 2.25 2.25) (drill 1.47) (layers *.Cu *.Mask)
(net 5 "sw1") (pinfunction "1") (pintype "passive") (tstamp f5d6fac1-697d-4daf-921b-5b3c13d5e39a))
(pad "2" thru_hole oval (at -2.5 4.5 266.1) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp 3d229bdd-e417-45b1-8697-b1467bb524c6))
(pad "2" thru_hole circle (at -5 3.8 180) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp a14ccca5-826b-4095-82b7-5bf0771720ff))
(pad "2" thru_hole circle (at -2.54 5.08 180) (size 2.25 2.25) (drill 1.47) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp d7ba2171-f6dc-435f-be65-eca4629ce561))
(model "${KIPRJMOD}/models/MX Switch.step"
(offset (xyz -0.3 -0.3 5.5))
(scale (xyz 1 1 1))
(rotate (xyz 0 180 90))
)
(model "${KIPRJMOD}/models/MX Keycap 1U R4.step"
(offset (xyz 0 0 12))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
(model "${KIPRJMOD}/models/Kailh-PG1350.step" hide
(offset (xyz 0 -0.2 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/models/MBK-Keycap-Black.step" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/models/MBK-Keycap-White.step" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad" (layer "B.Cu")
(tedit 56D1B4CB) (tstamp 33a6df02-4a98-4578-8b6b-a786fad3a0c4)
(at 104.14 101.2)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "beeball.kicad_sch")
(property "Sheetname" "")
(path "/6a86cf05-0add-42b9-a9a0-9b4aeb996306")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 4.2) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 64ee4733-47d3-4d19-a6e8-4f5b0cac54ff)
)
(fp_text value "MountingHole_Pad" (at 0 -4.2) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp d6ced9e3-1315-4a6e-8fa4-6e4039e4e316)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp cd954ab0-c5bf-46e5-ae47-b50dad236045)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 46e386bf-962b-46b6-8a32-48168d862279))
(fp_circle (center 0 0) (end 3.45 0) (layer "B.CrtYd") (width 0.05) (fill none) (tstamp b195ac77-5325-46f3-8cb3-2b0c8e47a690))
(pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask) (tstamp 250b5650-3f4c-49f1-9bbf-4b384da5f659))
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 39a79327-4187-4b29-b7c6-471b00312021)
(at 134.62 81.28)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "beeball.kicad_sch")
(property "Sheetname" "")
(property "manf#" "0805B105K100CT")
(path "/826d360c-90a6-4158-91bc-b021a1e17b80")
(attr smd)
(fp_text reference "C1" (at -2.54 0) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp ec4d0616-64a2-45cc-997f-287b5cf51933)
)
(fp_text value "0.1uF" (at 5.08 0) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp fc356a56-9245-4fa1-9cb7-be96b82515ef)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 56c7449f-2a6e-47f9-91b2-aa0844e14d90)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "B.SilkS") (width 0.12) (tstamp 80cfa437-8be0-4cd4-a7f8-1748af22401d))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "B.SilkS") (width 0.12) (tstamp b9a9f800-6024-4f60-83e9-4a035b702494))
(fp_line (start -1.7 -0.98) (end -1.7 0.98) (layer "B.CrtYd") (width 0.05) (tstamp 2d9faaf9-165e-43ba-8e36-a19be2b27a78))
(fp_line (start -1.7 0.98) (end 1.7 0.98) (layer "B.CrtYd") (width 0.05) (tstamp 71d43d5a-ea8e-4d6e-90c6-4367136a727f))
(fp_line (start 1.7 0.98) (end 1.7 -0.98) (layer "B.CrtYd") (width 0.05) (tstamp c79d6295-50c8-48bd-adbe-750a4f163dce))
(fp_line (start 1.7 -0.98) (end -1.7 -0.98) (layer "B.CrtYd") (width 0.05) (tstamp ca991cf4-65e7-48e1-afd4-34f67c39c08f))
(fp_line (start 1 0.625) (end 1 -0.625) (layer "B.Fab") (width 0.1) (tstamp 92cd95a9-7c2c-4c93-98e5-ab498d59ade7))
(fp_line (start 1 -0.625) (end -1 -0.625) (layer "B.Fab") (width 0.1) (tstamp b16d8c71-74a2-4d30-b5e5-8c7a15809efc))
(fp_line (start -1 -0.625) (end -1 0.625) (layer "B.Fab") (width 0.1) (tstamp e051ccf0-b391-4970-b014-b49bb229fafc))
(fp_line (start -1 0.625) (end 1 0.625) (layer "B.Fab") (width 0.1) (tstamp f4d22215-e360-436b-9a66-21570754896e))
(pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 3 "VCC") (pintype "passive") (tstamp 28f5d608-7c18-4593-ab02-1477ca705fa3))
(pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 4d4cff5b-d729-461a-8603-fb24cde2c99b))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 418cd292-5ccc-43ea-adb0-4cf4ebf742d4)
(at 134.62 73.66 180)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "beeball.kicad_sch")
(property "Sheetname" "")
(property "manf#" "0805B105K100CT")
(path "/9a994614-c5d3-4948-ae7c-5ba40f2d839f")
(attr smd)
(fp_text reference "C4" (at 2.54 0) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp faf67413-57b4-487d-b245-b07347aef050)
)
(fp_text value "0.1uF" (at -5.08 0) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 940e1c11-8fb2-42d4-bcc5-eed598aab803)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp c3927777-115b-4bc5-9dce-d53147947a1c)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "B.SilkS") (width 0.12) (tstamp aec4b0bc-0ae6-45bb-97e3-52f007aa11ac))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "B.SilkS") (width 0.12) (tstamp f0e776dd-1a17-4737-b770-e7ae53d1316c))
(fp_line (start -1.7 -0.98) (end -1.7 0.98) (layer "B.CrtYd") (width 0.05) (tstamp 324aa384-8a61-4f43-ad1b-ebf3259a18f2))
(fp_line (start 1.7 0.98) (end 1.7 -0.98) (layer "B.CrtYd") (width 0.05) (tstamp 4172dbfd-be8c-4604-981c-1c8db841c037))
(fp_line (start 1.7 -0.98) (end -1.7 -0.98) (layer "B.CrtYd") (width 0.05) (tstamp 723259cc-8ac3-45a6-8f4a-9ae938d18a22))
(fp_line (start -1.7 0.98) (end 1.7 0.98) (layer "B.CrtYd") (width 0.05) (tstamp dd934526-117f-4790-82a4-d415a798371e))
(fp_line (start -1 -0.625) (end -1 0.625) (layer "B.Fab") (width 0.1) (tstamp 83df16e2-9546-46fc-b032-d68b7651e5d3))
(fp_line (start 1 -0.625) (end -1 -0.625) (layer "B.Fab") (width 0.1) (tstamp 8dbf0f25-4708-4274-85f1-d9365f4319a0))
(fp_line (start -1 0.625) (end 1 0.625) (layer "B.Fab") (width 0.1) (tstamp eeea5fae-8be3-45b2-8424-dad72addf42a))
(fp_line (start 1 0.625) (end 1 -0.625) (layer "B.Fab") (width 0.1) (tstamp f7ac99e3-0e32-463a-a11d-24681b5cb43a))
(pad "1" smd roundrect (at -0.95 0 180) (size 1 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 6dc4a718-b44c-4747-a8e1-04d27a95f1fe))
(pad "2" smd roundrect (at 0.95 0 180) (size 1 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 20 "Net-(C3-Pad1)") (pintype "passive") (tstamp ce68b1cb-ed50-4079-9625-a1d3ac9d893c))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 4457b029-4665-4941-b4ae-db8e1831f850)
(at 134.62 86.36 180)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "beeball.kicad_sch")
(property "Sheetname" "")
(property "manf#" "MCWR08X39R0FTL")
(path "/14ed50ef-bdf0-47cd-8a0b-cfc99af743a0")
(attr smd)
(fp_text reference "R1" (at 2.54 0) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp eb9973b4-f487-4782-8c5f-2a5abc191754)
)
(fp_text value "39" (at -5.08 0) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp c66a65b2-a228-4416-969e-9c68b8f03b86)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 4b42f7cb-3a58-432b-aaf9-555ffa9624ab)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "B.SilkS") (width 0.12) (tstamp 38569b65-a598-48f3-bb20-ec3c16e35fe8))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "B.SilkS") (width 0.12) (tstamp 7c98eb64-1896-4caa-8f5d-4d4d34cdf125))
(fp_line (start -1.68 0.95) (end 1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp 8f6a88c6-2411-46c5-8b13-3bab92c91259))
(fp_line (start 1.68 -0.95) (end -1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp b44eb5a9-6e52-4479-9a45-0fe298b846a9))
(fp_line (start 1.68 0.95) (end 1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp c5afa752-fa17-4b0b-b370-7c41555241e0))
(fp_line (start -1.68 -0.95) (end -1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp d34eadb8-6070-42a7-937e-400d0e2722a7))
(fp_line (start -1 -0.625) (end -1 0.625) (layer "B.Fab") (width 0.1) (tstamp 38a3c662-1120-4d34-b0e1-a62617b8eeb9))
(fp_line (start 1 -0.625) (end -1 -0.625) (layer "B.Fab") (width 0.1) (tstamp b2cb2a8f-2105-4688-880d-e6f002330241))
(fp_line (start 1 0.625) (end 1 -0.625) (layer "B.Fab") (width 0.1) (tstamp ecaee6f2-6deb-469e-8942-50f5cc3d66bf))
(fp_line (start -1 0.625) (end 1 0.625) (layer "B.Fab") (width 0.1) (tstamp f82ccbb1-4593-4bf2-9e8e-e43e79710511))
(pad "1" smd roundrect (at -0.9125 0 180) (size 1.025 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.243902439)
(net 2 "VDD") (pintype "passive") (tstamp 9a5ed3ef-7092-4046-8c6d-f22dd18acaf9))
(pad "2" smd roundrect (at 0.9125 0 180) (size 1.025 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.243902439)
(net 19 "Net-(R1-Pad2)") (pintype "passive") (tstamp c399cda7-8fa7-4eb8-8b8d-d9cf8460e1ba))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad" (layer "B.Cu")
(tedit 56D1B4CB) (tstamp 5dcf3354-38a8-4d80-962e-e0de90860fd1)
(at 180.74 70.72)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "beeball.kicad_sch")
(property "Sheetname" "")
(path "/74ae0038-0133-4cb9-bb45-74ec7afdfbd3")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at 0 4.2) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 84981892-7c78-492d-8f90-563fbb02c488)
)
(fp_text value "MountingHole_Pad" (at 0 -4.2) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 0a213714-f553-4bd8-813f-b5deba940475)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp d2ac6a17-6864-4498-8ce2-e2221fbec372)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 4730cdca-8d9a-446f-a759-d2efa8f224db))
(fp_circle (center 0 0) (end 3.45 0) (layer "B.CrtYd") (width 0.05) (fill none) (tstamp 9c4fe6d6-0b94-4d31-98b6-139951162708))
(pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask) (tstamp 15650b4b-1fc9-4d98-8a4e-d041126ac6cf))
)
(footprint "Project Footprints:PMW3360DM-T2QU" (layer "B.Cu")
(tedit 5FFE2271) (tstamp 66ca849c-9e62-4dff-b92d-f2f31f52ce5f)
(at 124.46 78.74 -90)
(property "Sheetfile" "beeball.kicad_sch")
(property "Sheetname" "")
(path "/db7c8969-6376-43d5-8abb-97f64469f91d")
(attr through_hole)
(fp_text reference "U2" (at 10.16 0) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp f6bdf547-be20-4886-bf2f-cea5f1696113)
)
(fp_text value "PMW3360DM-T2QU" (at 0 0 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 1896f19f-c290-4393-a302-7b523fdae3fc)
)
(fp_line (start -7.18 4.55) (end 9.02 4.55) (layer "B.SilkS") (width 0.1) (tstamp 017270be-9ada-4551-8b4c-adf78f5e602b))
(fp_line (start 9.02 4.55) (end 9.02 -4.55) (layer "B.SilkS") (width 0.1) (tstamp 08a51b22-2a29-4724-a6ce-105de3fc0437))
(fp_line (start 9.02 -4.55) (end -7.18 -4.55) (layer "B.SilkS") (width 0.1) (tstamp 134c37b9-75ca-4591-a3f1-689eccf0945b))
(fp_line (start -7.18 -4.55) (end -7.18 -4.318) (layer "B.SilkS") (width 0.1) (tstamp 855dd25f-16c0-49d4-a3b1-f0f3a6d3eab0))
(fp_line (start -7.18 4.318) (end -7.18 4.55) (layer "B.SilkS") (width 0.1) (tstamp 92c9178f-708d-43c2-a751-47176e89afc3))
(fp_circle (center -7.239 -5.334) (end -7.059395 -5.334) (layer "B.SilkS") (width 0.12) (fill solid) (tstamp b7672238-dd68-4a7a-b266-49c08d54ea56))
(fp_rect (start -8.44 4.3) (end 8.82 -4.3) (layer "Edge.Cuts") (width 0.12) (fill none) (tstamp 36582a4e-7901-482c-bba2-95ff0b9b9f50))
(fp_rect (start -8.89 6.096) (end 9.144 -6.096) (layer "B.CrtYd") (width 0.05) (fill none) (tstamp aa76ec50-2d75-44ad-9443-d73d7192c694))
(pad "1" thru_hole rect (at -5.66 -5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 13 "unconnected-(U2-Pad1)") (pinfunction "NC") (pintype "no_connect") (tstamp 3afdb838-4fd4-43a4-837e-19e7976d82d8))
(pad "2" thru_hole circle (at -3.88 -5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 14 "unconnected-(U2-Pad2)") (pinfunction "NC") (pintype "no_connect") (tstamp 19150ea6-563a-4de6-b5d0-6338f6c00c27))
(pad "3" thru_hole circle (at -2.1 -5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 20 "Net-(C3-Pad1)") (pinfunction "VDDPIX") (pintype "power_in") (tstamp 20637949-487d-4fe2-ade1-c92f125f08d8))
(pad "4" thru_hole circle (at -0.32 -5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 2 "VDD") (pinfunction "VDD") (pintype "power_in") (tstamp ad3f4697-f3c6-4eb0-bce3-1072ad40e853))
(pad "5" thru_hole circle (at 1.46 -5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 3 "VCC") (pinfunction "VDDIO") (pintype "power_in") (tstamp d0083533-3277-4b45-a114-608193b974e4))
(pad "6" thru_hole circle (at 3.24 -5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 15 "unconnected-(U2-Pad6)") (pinfunction "NC") (pintype "no_connect") (tstamp 6dae00cc-78a0-4d57-bf70-7f006ba4736c))
(pad "7" thru_hole circle (at 5.02 -5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 21 "Net-(R2-Pad1)") (pinfunction "~{NRESET}") (pintype "input") (tstamp 8dfef3b2-3e66-4c7b-8279-0e1fbc43229b))
(pad "8" thru_hole circle (at 6.8 -5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 669adc66-de0c-46eb-8f4d-4399cfc9f858))
(pad "9" thru_hole circle (at 7.69 5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 23 "motion") (pinfunction "MOTION") (pintype "output") (tstamp 147a8ef6-a3de-47bc-8c99-ca2daf8ad933))
(pad "10" thru_hole circle (at 5.91 5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 10 "sclk") (pinfunction "SCLK") (pintype "input") (tstamp 2aacde89-da49-4c70-aade-d30e4f550496))
(pad "11" thru_hole circle (at 4.13 5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 11 "mosi") (pinfunction "MOSI") (pintype "input") (tstamp 3e28c8ec-f760-4ce1-8ac1-4d3258cfc52c))
(pad "12" thru_hole circle (at 2.35 5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 4 "miso") (pinfunction "MISO") (pintype "output") (tstamp 2c76b3bc-2926-433b-8ff3-1758866db0fd))
(pad "13" thru_hole circle (at 0.57 5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 24 "ncs") (pinfunction "~{NCS}") (pintype "input") (tstamp b0abccd0-bb98-439a-9a39-883d0e694978))
(pad "14" thru_hole circle (at -1.21 5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 16 "unconnected-(U2-Pad14)") (pinfunction "NC") (pintype "no_connect") (tstamp 28d134bc-c5d7-4cab-8838-43f79c8e84c2))
(pad "15" thru_hole circle (at -2.99 5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 19 "Net-(R1-Pad2)") (pinfunction "LED_P") (pintype "input") (tstamp 754a08de-272a-4ef7-ab20-67b5f5cf6ab0))
(pad "16" thru_hole circle (at -4.77 5.35 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 17 "unconnected-(U2-Pad16)") (pinfunction "NC") (pintype "no_connect") (tstamp b8372749-4725-40b8-9e1d-9df5f7ddeb0b))
(model "${KIPRJMOD}/models/PMW3360 v12.step"
(offset (xyz 0 0 2.36))
(scale (xyz 1 1 1))
(rotate (xyz 180 180 90))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 6ca83413-7c81-4593-b6b6-18284862a218)
(at 116.332 68.072 90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "beeball.kicad_sch")
(property "Sheetname" "")
(property "manf#" "MCWR08X1002FTL")
(path "/33341e80-eb1f-44ed-bb1b-1f75245eaad0")
(attr smd)
(fp_text reference "R3" (at -2.54 0 180) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp f86d49ed-6401-4306-8474-4a1f1f112ad9)
)
(fp_text value "10K" (at 0 -1.65 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 1235cf27-bbd6-4e6e-adb8-0c29467e15d3)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 2e0bebd3-1644-4a02-8950-a026acc393f8)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "B.SilkS") (width 0.12) (tstamp 01aaf98d-89bc-4c93-8a6c-22812b7249ca))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "B.SilkS") (width 0.12) (tstamp 62699bba-c926-4b86-a8b1-b50eb17a7cb5))
(fp_line (start -1.68 -0.95) (end -1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp 0334ef86-7023-44d0-bf1b-db0c15f92642))
(fp_line (start 1.68 0.95) (end 1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 9bc8f768-fe23-47ac-8991-f463756c2ab2))
(fp_line (start 1.68 -0.95) (end -1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp a9c27236-e63e-498b-8d93-8cf29d28f635))
(fp_line (start -1.68 0.95) (end 1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp e7e8a011-1787-48cf-997f-3eb8cc8333d4))
(fp_line (start -1 -0.625) (end -1 0.625) (layer "B.Fab") (width 0.1) (tstamp 2f2c3043-a6ae-47b7-953e-923d585c1394))
(fp_line (start 1 -0.625) (end -1 -0.625) (layer "B.Fab") (width 0.1) (tstamp 98d5cc8f-68dc-4ea9-9a25-dd657db648d0))
(fp_line (start -1 0.625) (end 1 0.625) (layer "B.Fab") (width 0.1) (tstamp cc763f40-9d0f-4d59-921f-0b3d8435cb27))
(fp_line (start 1 0.625) (end 1 -0.625) (layer "B.Fab") (width 0.1) (tstamp f29239d0-b6ec-4de3-a33d-979ce49750a1))
(pad "1" smd roundrect (at -0.9125 0 90) (size 1.025 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.243902439)
(net 4 "miso") (pintype "passive") (tstamp 1d61cd30-fa63-47aa-861f-ee7e7b27cbef))
(pad "2" smd roundrect (at 0.9125 0 90) (size 1.025 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.243902439)
(net 3 "VCC") (pintype "passive") (tstamp b159e42b-9af6-49e0-9ca2-e15d0671ee4b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 6de2a5d7-cb57-4fd9-89ca-047471a2af63)
(at 134.62 76.2)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "beeball.kicad_sch")
(property "Sheetname" "")
(property "manf#" "MCTT21F475Z100CT")
(path "/0284c7b2-795c-4621-8ef6-00f120f9c463")
(attr smd)
(fp_text reference "C3" (at -2.54 0) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 9c0935cd-50c8-405c-a33b-f702c2a80396)
)
(fp_text value "4.7uF" (at 5.08 0) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp f2c0b6a8-016d-47bb-b563-57a090ec4dfc)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 559ff54a-69a4-475f-82c5-96fb182dace6)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "B.SilkS") (width 0.12) (tstamp 0fff1894-0ae0-42a6-b31e-005e97b9da0c))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "B.SilkS") (width 0.12) (tstamp 28285da6-c3b0-46e6-a034-88d8345421c1))
(fp_line (start 1.7 -0.98) (end -1.7 -0.98) (layer "B.CrtYd") (width 0.05) (tstamp 204c93e1-7934-444c-9c0c-a919c62a909c))
(fp_line (start -1.7 0.98) (end 1.7 0.98) (layer "B.CrtYd") (width 0.05) (tstamp 6786b89b-312d-432f-a990-d898b548b1b0))
(fp_line (start 1.7 0.98) (end 1.7 -0.98) (layer "B.CrtYd") (width 0.05) (tstamp 9152f0ed-87b4-4875-b46a-375d58cc94b6))
(fp_line (start -1.7 -0.98) (end -1.7 0.98) (layer "B.CrtYd") (width 0.05) (tstamp d5dddb18-375a-437b-a9a2-9656e8556873))
(fp_line (start -1 0.625) (end 1 0.625) (layer "B.Fab") (width 0.1) (tstamp 7a803979-4137-43b2-890a-58e4554e62d4))
(fp_line (start -1 -0.625) (end -1 0.625) (layer "B.Fab") (width 0.1) (tstamp b9e36e9f-69a0-49fd-92c0-101649266f2e))
(fp_line (start 1 -0.625) (end -1 -0.625) (layer "B.Fab") (width 0.1) (tstamp d2c10fd4-314a-4fa2-9881-dce99342eeb9))
(fp_line (start 1 0.625) (end 1 -0.625) (layer "B.Fab") (width 0.1) (tstamp d3acebf4-428c-46b9-9807-e0d9009f2516))
(pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 20 "Net-(C3-Pad1)") (pintype "passive") (tstamp 6bbc367d-dcb0-428f-8838-0cd258450faf))
(pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp eb3e6b91-d1a0-44f3-a873-a8198d8fd194))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23-5" (layer "B.Cu")
(tedit 5F6F9B37) (tstamp 6ffceae3-59c1-4b05-80b5-d74c73479c18)
(at 134.627491 70.90677)
(descr "SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "beeball.kicad_sch")
(property "Sheetname" "")
(path "/2ed213ba-7bde-4ecd-8b55-711bdb069007")
(attr smd)
(fp_text reference "U3" (at -3.152918 -0.093881) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp db92a30f-ad32-4364-ba94-67697906f6bc)
)
(fp_text value "TLV70019_SOT23-5" (at 9.644509 0) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp c8551bbb-f874-41b3-8d1d-cbd1a79226d1)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp 39fd188c-cf53-444d-abcb-0f7e25811992)
)
(fp_line (start 0 1.56) (end -1.8 1.56) (layer "B.SilkS") (width 0.12) (tstamp 19b3c93c-58e9-4697-bb93-894ef5e84d69))
(fp_line (start 0 -1.56) (end -0.8 -1.56) (layer "B.SilkS") (width 0.12) (tstamp 1d771493-8294-44a9-a3f0-45821257ec13))
(fp_line (start 0 1.56) (end 0.8 1.56) (layer "B.SilkS") (width 0.12) (tstamp 3453e1c8-c34c-45eb-a469-29b1e87bbf6b))
(fp_line (start 0 -1.56) (end 0.8 -1.56) (layer "B.SilkS") (width 0.12) (tstamp 7d795350-2b23-4429-a043-ed9ebe8c23f1))
(fp_line (start -2.05 -1.7) (end 2.05 -1.7) (layer "B.CrtYd") (width 0.05) (tstamp 644449c9-5ec9-4c6e-b261-4d3d27301ada))
(fp_line (start 2.05 1.7) (end -2.05 1.7) (layer "B.CrtYd") (width 0.05) (tstamp 852fb7ed-f900-441e-80f6-02d8ad58e241))
(fp_line (start -2.05 1.7) (end -2.05 -1.7) (layer "B.CrtYd") (width 0.05) (tstamp b3b5a829-9c45-47bb-9606-fb6280d18b55))
(fp_line (start 2.05 -1.7) (end 2.05 1.7) (layer "B.CrtYd") (width 0.05) (tstamp cf2bb4a4-2483-4c3b-882a-95225eef9e7e))
(fp_line (start -0.4 1.45) (end 0.8 1.45) (layer "B.Fab") (width 0.1) (tstamp 610ca2bd-214a-4da4-9eac-51e2d01f7efa))
(fp_line (start 0.8 1.45) (end 0.8 -1.45) (layer "B.Fab") (width 0.1) (tstamp 8995a07f-e722-4948-b106-a56a779e5439))
(fp_line (start 0.8 -1.45) (end -0.8 -1.45) (layer "B.Fab") (width 0.1) (tstamp 9529b36d-f668-4424-ac35-7e8a102d3709))
(fp_line (start -0.8 -1.45) (end -0.8 1.05) (layer "B.Fab") (width 0.1) (tstamp 95f431f8-266e-46c1-b305-5a5b0f3dd68e))
(fp_line (start -0.8 1.05) (end -0.4 1.45) (layer "B.Fab") (width 0.1) (tstamp f43843af-016c-4e0b-8b30-51700416918a))
(pad "1" smd roundrect (at -1.1375 0.95) (size 1.325 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 3 "VCC") (pinfunction "IN") (pintype "power_in") (tstamp 57296ee6-1497-4f64-b7f5-2bb3fa305864))
(pad "2" smd roundrect (at -1.1375 0) (size 1.325 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 2ac80469-3b5b-425b-a62a-a84f9d7e69ca))
(pad "3" smd roundrect (at -1.1375 -0.95) (size 1.325 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 3 "VCC") (pinfunction "EN") (pintype "input") (tstamp a0a7f069-19fa-4666-928c-8472bb1fd70f))
(pad "4" smd roundrect (at 1.1375 -0.95) (size 1.325 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 18 "unconnected-(U3-Pad4)") (pinfunction "NC") (pintype "no_connect") (tstamp e97d8d10-50c2-4cc8-923a-dd2da085dc10))
(pad "5" smd roundrect (at 1.1375 0.95) (size 1.325 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "VDD") (pinfunction "OUT") (pintype "power_out") (tstamp 419b9218-4ebd-475d-aeb1-0db2ea9d60e5))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Project Footprints:Seeeduino XIAO" (layer "B.Cu")
(tedit 5EA16CE1) (tstamp 8506c97a-8215-4719-94d5-57bb3f1a8068)
(at 104.14 76.60725 180)
(property "Sheetfile" "beeball.kicad_sch")
(property "Sheetname" "")
(path "/95a936b4-1122-4875-af7e-49f5189decf2")
(attr smd)
(fp_text reference "U1" (at 0 0) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 7410568a-af90-4a4e-a67d-5fd1863e0d95)
)
(fp_text value "SeeeduinoXIAO" (at 0 -2.54) (layer "B.Fab")
(effects (font (size 0.6096 0.6096) (thickness 0.0762)) (justify mirror))
(tstamp 0dcb5ab5-f291-489d-b2bc-0f0b25b801ee)
)
(fp_line (start 4.3 4.5) (end -4.3 4.5) (layer "B.SilkS") (width 0.127) (tstamp 12481f4a-71b0-43a4-a69b-bc048ed999f0))
(fp_line (start 8.89 -10.4775) (end 8.89 10.4775) (layer "B.SilkS") (width 0.127) (tstamp 39125f99-6caa-4e69-9ae5-ca3bd6e3a49c))
(fp_line (start -8.19 10.4775) (end -8.89 9.7775) (layer "B.SilkS") (width 0.127) (tstamp 544c9ad7-a0b6-4f88-9dcd-908e3e2acf79))
(fp_line (start -4.3 4.5) (end -4.3 11.8) (layer "B.SilkS") (width 0.127) (tstamp 56dc9d1a-d125-4218-be7e-afbadad9f13c))
(fp_line (start 8.89 10.4775) (end -8.19 10.4775) (layer "B.SilkS") (width 0.127) (tstamp 5c9202d7-6a93-43b3-87c0-77347fd72885))
(fp_line (start 4.3 11.8) (end 4.3 4.5) (layer "B.SilkS") (width 0.127) (tstamp 628f0a9f-12ce-4a6a-8ea2-8c2cdfc4161e))
(fp_line (start -4.3 11.8) (end 4.3 11.8) (layer "B.SilkS") (width 0.127) (tstamp 8aab4608-39e8-491a-83a8-7194f36094f1))
(fp_line (start -8.89 9.7775) (end -8.89 -10.4775) (layer "B.SilkS") (width 0.127) (tstamp ea020aa6-c820-47b1-bdf7-82790dcca121))
(fp_line (start -8.89 -10.4775) (end 8.89 -10.4775) (layer "B.SilkS") (width 0.127) (tstamp f753d3ee-689c-4dd5-a288-b018ad927185))
(fp_circle (center -9.8044 7.62) (end -9.5504 7.62) (layer "B.SilkS") (width 0) (fill solid) (tstamp 604495b3-3885-49af-8442-bcf3d7361dc4))
(fp_line (start -6.9837 10.4775) (end 6.9837 10.4775) (layer "B.Fab") (width 0.0254) (tstamp 08fa8ff6-09a7-484c-b1d9-0e3b7c49bb26))
(fp_line (start -8.89 -8.5712) (end -8.89 8.5712) (layer "B.Fab") (width 0.0254) (tstamp 321eb03e-d5d7-4c98-9326-4c49d56670ae))
(fp_line (start 8.89 -8.5712) (end 8.89 8.5712) (layer "B.Fab") (width 0.0254) (tstamp 6f13bfbf-7f19-4b33-9de2-b8c15c8c88ee))
(fp_line (start -6.9837 -10.4775) (end 6.9837 -10.4775) (layer "B.Fab") (width 0.0254) (tstamp 9959c68a-7d2a-4f14-b245-3548992673f3))
(fp_arc (start -6.9837 10.4775) (mid -8.331658 9.919158) (end -8.89 8.5712) (layer "B.Fab") (width 0.0254) (tstamp 01422660-08c8-48f3-98ca-26cbe7f98f5b))
(fp_arc (start 8.89 8.5712) (mid 8.331658 9.919158) (end 6.9837 10.4775) (layer "B.Fab") (width 0.0254) (tstamp 65e58d89-f213-4051-b36b-7b3454867ad5))
(fp_arc (start 6.9837 -10.4775) (mid 8.331658 -9.919158) (end 8.89 -8.5712) (layer "B.Fab") (width 0.0254) (tstamp 9d541d6f-313d-4469-a000-68242c1dd6d6))
(fp_arc (start -8.89 -8.5712) (mid -8.331658 -9.919158) (end -6.9837 -10.4775) (layer "B.Fab") (width 0.0254) (tstamp baaf14d0-0c5c-4bf0-82d7-5ee71082500d))
(pad "1" smd oval (at -8.08228 7.62 180) (size 2.74828 1.99898) (layers "B.Cu" "B.Paste" "B.Mask")
(net 5 "sw1") (pinfunction "PA02_A0_D0") (pintype "bidirectional") (tstamp 63ace593-9960-4666-bb08-47e6f085cee8))
(pad "2" smd oval (at -8.08228 5.08 180) (size 2.74828 1.99898) (layers "B.Cu" "B.Paste" "B.Mask")
(net 6 "sw2") (pinfunction "PA4_A1_D1") (pintype "bidirectional") (tstamp 47a2dd37-ad02-4281-9a66-8ff7ab400570))
(pad "3" smd oval (at -8.08228 2.54 180) (size 2.74828 1.99898) (layers "B.Cu" "B.Paste" "B.Mask")
(net 7 "sw3") (pinfunction "PA10_A2_D2") (pintype "bidirectional") (tstamp 5a67196f-9472-4a8d-961f-eac8ec999d85))
(pad "4" smd oval (at -8.08228 0 180) (size 2.74828 1.99898) (layers "B.Cu" "B.Paste" "B.Mask")
(net 22 "unconnected-(U1-Pad4)") (pinfunction "PA11_A3_D3") (pintype "bidirectional+no_connect") (tstamp a1b97586-5ccb-4d4b-808f-ce5452376c86))
(pad "5" smd oval (at -8.08228 -2.54 180) (size 2.74828 1.99898) (layers "B.Cu" "B.Paste" "B.Mask")
(net 8 "unconnected-(U1-Pad5)") (pinfunction "PA8_A4_D4_SDA") (pintype "bidirectional+no_connect") (tstamp d5eb7c6e-b098-49b0-b366-c8b7c67afed0))
(pad "6" smd oval (at -8.08228 -5.08 180) (size 2.74828 1.99898) (layers "B.Cu" "B.Paste" "B.Mask")
(net 9 "unconnected-(U1-Pad6)") (pinfunction "PA9_A5_D5_SCL") (pintype "bidirectional+no_connect") (tstamp e1df8cea-32a4-457d-86df-d8e326022a52))
(pad "7" smd oval (at -8.08228 -7.62 180) (size 2.74828 1.99898) (layers "B.Cu" "B.Paste" "B.Mask")
(net 23 "motion") (pinfunction "PB08_A6_D6_TX") (pintype "bidirectional") (tstamp a6187c22-3622-4a1a-a49a-b21e96986f96))
(pad "8" smd oval (at 8.08228 -7.62 180) (size 2.74828 1.99898) (layers "B.Cu" "B.Paste" "B.Mask")
(net 24 "ncs") (pinfunction "PB09_A7_D7_RX") (pintype "bidirectional") (tstamp 504cb9e4-5572-4208-bc9d-30a7efff8b9a))
(pad "9" smd oval (at 8.08228 -5.08 180) (size 2.74828 1.99898) (layers "B.Cu" "B.Paste" "B.Mask")
(net 10 "sclk") (pinfunction "PA7_A8_D8_SCK") (pintype "bidirectional") (tstamp fda94f0a-876e-4bf0-ad10-35819851e3e9))
(pad "10" smd oval (at 8.08228 -2.54 180) (size 2.74828 1.99898) (layers "B.Cu" "B.Paste" "B.Mask")
(net 4 "miso") (pinfunction "PA5_A9_D9_MISO") (pintype "bidirectional") (tstamp f0e6fae4-0008-43ed-8719-bf62839f601f))
(pad "11" smd oval (at 8.08228 0 180) (size 2.74828 1.99898) (layers "B.Cu" "B.Paste" "B.Mask")
(net 11 "mosi") (pinfunction "PA6_A10_D10_MOSI") (pintype "bidirectional") (tstamp 72e9c34a-4fbc-4581-8ad2-e93bc3c3ccb0))
(pad "12" smd oval (at 8.08228 2.54 180) (size 2.74828 1.99898) (layers "B.Cu" "B.Paste" "B.Mask")
(net 3 "VCC") (pinfunction "3V3") (pintype "power_in") (tstamp e9597133-3d67-41f8-aabc-5b61d8d3c3c1))
(pad "13" smd oval (at 8.08228 5.08 180) (size 2.74828 1.99898) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp b42a4498-7f71-4787-a0f1-b44423616ac9))
(pad "14" smd oval (at 8.08228 7.62 180) (size 2.74828 1.99898) (layers "B.Cu" "B.Paste" "B.Mask")
(net 12 "unconnected-(U1-Pad14)") (pinfunction "5V") (pintype "power_in+no_connect") (tstamp af66589f-0dae-4737-851f-f8cddd35005b))
(model "${KIPRJMOD}/models/STEP214 Seeeduino XIAO Arduino.STEP"
(offset (xyz 0 0 1.2))
(scale (xyz 1 1 1))
(rotate (xyz 90 180 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp dda99588-2771-46db-93be-e17985c5ea19)
(at 134.62 78.74)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "beeball.kicad_sch")
(property "Sheetname" "")
(property "manf#" "0805B105K100CT")
(path "/fbd50095-b735-4120-bd53-03d3d604947b")
(attr smd)
(fp_text reference "C2" (at -2.54 0) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 2d900352-d819-4aef-965b-f06b1be14f3c)
)
(fp_text value "1uF" (at 5.08 0) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 5bd93e4e-4a13-4adc-9d2c-a40df0087f54)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 02ed8fdb-ab83-4d35-b97e-cb408410844c)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "B.SilkS") (width 0.12) (tstamp 987e003f-eb69-4aa8-b149-3073ced0ada0))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "B.SilkS") (width 0.12) (tstamp ac2b52e2-2317-4f26-8fe6-7d16ff0671d8))
(fp_line (start -1.7 -0.98) (end -1.7 0.98) (layer "B.CrtYd") (width 0.05) (tstamp 7c165bbe-0b32-4556-ac73-35431353ff3f))
(fp_line (start -1.7 0.98) (end 1.7 0.98) (layer "B.CrtYd") (width 0.05) (tstamp 7ce70744-d79e-4297-ab88-f68814a2687b))
(fp_line (start 1.7 -0.98) (end -1.7 -0.98) (layer "B.CrtYd") (width 0.05) (tstamp aa2ac294-8694-49e3-a963-437c5d78f37a))
(fp_line (start 1.7 0.98) (end 1.7 -0.98) (layer "B.CrtYd") (width 0.05) (tstamp dc8254ad-24dc-4e62-8a96-76265c32a38b))
(fp_line (start -1 -0.625) (end -1 0.625) (layer "B.Fab") (width 0.1) (tstamp 0d9eb26a-3039-44b7-b836-6830fac41cd2))
(fp_line (start -1 0.625) (end 1 0.625) (layer "B.Fab") (width 0.1) (tstamp 20891f4e-e425-4f6f-8142-07bc5c89d804))
(fp_line (start 1 0.625) (end 1 -0.625) (layer "B.Fab") (width 0.1) (tstamp 2a7e8182-a267-4f0e-8e86-0d4daf89949e))
(fp_line (start 1 -0.625) (end -1 -0.625) (layer "B.Fab") (width 0.1) (tstamp 31bf31d3-3072-44e5-a0c0-363c8d4585fd))
(pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "VDD") (pintype "passive") (tstamp 2bc36471-be5f-4d3f-8cf5-82377b0f1132))
(pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp b75d83d1-34d6-4e6b-8534-9863cf13e35c))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp eda204ec-8aa7-4b3c-87bb-8620d7a1577a)
(at 134.62 83.82)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "beeball.kicad_sch")
(property "Sheetname" "")
(property "manf#" "MCWR08X1002FTL")
(path "/9d8b9da4-151a-4fb8-91ab-a027db0b2f45")
(attr smd)
(fp_text reference "R2" (at -2.54 0) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp a6407e05-fc54-4f2e-956c-f0b1c634dbdb)
)
(fp_text value "10K" (at 5.08 0) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 1496669d-d4a8-4a2a-8799-5de5ba9a879b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp c28d4176-34c8-403d-b4bb-523e915e8292)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "B.SilkS") (width 0.12) (tstamp 4fd7b3c8-1004-4329-a55f-81ca78a359cf))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "B.SilkS") (width 0.12) (tstamp 79b9608a-d462-479c-8621-90f8acb8646d))
(fp_line (start -1.68 0.95) (end 1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp 0e4359dc-5490-4bd4-a9aa-beb9c6056d76))
(fp_line (start 1.68 0.95) (end 1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp aee13adf-d5e4-412b-837b-67e2eb6dafde))
(fp_line (start -1.68 -0.95) (end -1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp bdd55b10-6fe2-415e-ac36-8054d27346c6))
(fp_line (start 1.68 -0.95) (end -1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp f4bc2348-c416-484f-b49a-1f7e802e0ffc))
(fp_line (start -1 -0.625) (end -1 0.625) (layer "B.Fab") (width 0.1) (tstamp 0bc24894-8d14-42bb-92d6-1527a6bea47d))
(fp_line (start 1 0.625) (end 1 -0.625) (layer "B.Fab") (width 0.1) (tstamp 58792359-59d5-46b4-bba4-17d301948e2d))
(fp_line (start -1 0.625) (end 1 0.625) (layer "B.Fab") (width 0.1) (tstamp a2035411-83c3-419c-a456-bf06bbe8b2cf))
(fp_line (start 1 -0.625) (end -1 -0.625) (layer "B.Fab") (width 0.1) (tstamp b8f02eb0-79e1-47ff-8aad-0453ddf97a5e))
(pad "1" smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.243902439)
(net 21 "Net-(R2-Pad1)") (pintype "passive") (tstamp 9930e1c7-5e13-4126-bedd-cf53d5240774))
(pad "2" smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.243902439)
(net 2 "VDD") (pintype "passive") (tstamp 0c5b55e8-7100-4c62-8d03-84d63f58c2a3))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad" (layer "B.Cu")
(tedit 56D1B4CB) (tstamp f954cb1a-c039-49d3-ab60-eda94c3ce64f)
(at 141.5 81.28)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "beeball.kicad_sch")
(property "Sheetname" "")
(path "/1291612c-9680-4f68-9209-36d8bcacf249")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0 4.2) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp dd1a6714-3473-471b-a094-356a6a5c7ce4)
)
(fp_text value "MountingHole_Pad" (at 0 -4.2) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 9700ddb4-d157-4b7d-95cb-6db3aed8d429)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 70afd96d-2ed7-4461-9291-3a926950a1c9)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 1e7a2dc0-5aca-4968-8166-cfb33f63c628))
(fp_circle (center 0 0) (end 3.45 0) (layer "B.CrtYd") (width 0.05) (fill none) (tstamp 7ad9db10-34ab-4cc5-87d4-cad35e43a3c2))
(pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask) (tstamp b651e86f-43e7-469a-9f81-a462126c198e))
)
(gr_arc (start 93.98 68.58) (mid 94.723949 66.783949) (end 96.52 66.04) (layer "Edge.Cuts") (width 0.1) (tstamp 26a1c8f8-cba2-4bd1-9862-076e9496ed8d))
(gr_arc (start 114.3 121.92) (mid 113.556051 123.716051) (end 111.76 124.46) (layer "Edge.Cuts") (width 0.1) (tstamp 2a220be7-f9db-4156-a7d8-12ad49ced1eb))
(gr_line (start 111.76 124.46) (end 96.52 124.46) (layer "Edge.Cuts") (width 0.1) (tstamp 2ee30790-c707-49c6-9d59-15e0f1050f64))
(gr_line (start 185.42 68.58) (end 185.42 93.98) (layer "Edge.Cuts") (width 0.1) (tstamp 5de3ce1e-0c95-457c-bd15-39af8ad160de))
(gr_arc (start 182.88 66.04) (mid 184.676051 66.783949) (end 185.42 68.58) (layer "Edge.Cuts") (width 0.1) (tstamp 5ee4854e-379b-4c1e-84fd-f47a9d724ef3))
(gr_line (start 114.3 121.92) (end 114.3 99.06) (layer "Edge.Cuts") (width 0.1) (tstamp 62cc8598-77af-402e-b8a2-e05ba490eb55))
(gr_arc (start 96.52 124.46) (mid 94.723949 123.716051) (end 93.98 121.92) (layer "Edge.Cuts") (width 0.1) (tstamp 630fedfb-6340-45a0-965a-6cfa32375cd4))
(gr_line (start 106.8 78) (end 110.4 78) (layer "Edge.Cuts") (width 0.1) (tstamp 65535e7c-e4a0-4938-89cb-fc62be737205))
(gr_line (start 96.52 66.04) (end 182.88 66.04) (layer "Edge.Cuts") (width 0.1) (tstamp 75de0b59-2e46-415a-a758-36dc125e5f7d))
(gr_line (start 110.4 72.5) (end 110.4 78) (layer "Edge.Cuts") (width 0.1) (tstamp 90e6223c-cb0d-4fb8-97cc-572d2d7a239f))
(gr_line (start 106.8 72.5) (end 110.4 72.5) (layer "Edge.Cuts") (width 0.1) (tstamp afdfb964-2989-411e-b8da-976fae81b2cb))
(gr_arc (start 114.3 99.06) (mid 115.043949 97.263949) (end 116.84 96.52) (layer "Edge.Cuts") (width 0.1) (tstamp ceacb285-f46f-4c95-a87b-3084ddc23254))
(gr_arc (start 185.42 93.98) (mid 184.676051 95.776051) (end 182.88 96.52) (layer "Edge.Cuts") (width 0.1) (tstamp d601608d-23bf-4ebc-96a0-84d6d72dc1c4))
(gr_line (start 93.98 121.92) (end 93.98 68.58) (layer "Edge.Cuts") (width 0.1) (tstamp dca176ee-5e8a-4734-9e50-d66eac4715ce))
(gr_line (start 182.88 96.52) (end 116.84 96.52) (layer "Edge.Cuts") (width 0.1) (tstamp e7f2db96-868a-449f-afcf-35541728f481))
(gr_line (start 106.8 72.5) (end 106.8 78) (layer "Edge.Cuts") (width 0.1) (tstamp e8aa8d19-fba8-450b-bfa1-94abbbecc995))
(segment (start 131.82 85.54) (end 129.81 85.54) (width 0.25) (layer "F.Cu") (net 1) (tstamp 5a45aa12-e5a9-45c3-b1c3-45b6595b3ac7))
(segment (start 136.83 82.54) (end 135.251284 84.118715) (width 0.25) (layer "F.Cu") (net 1) (tstamp 68ab37ee-8fee-45cc-bd0c-4742ec1c1551))
(segment (start 169.466501 88.413499) (end 170.26 87.62) (width 0.25) (layer "F.Cu") (net 1) (tstamp 73573b5a-7f25-43ad-bc3b-e23cd4ca1d09))
(segment (start 153.67 87.289931) (end 154.793569 88.4135) (width 0.25) (layer "F.Cu") (net 1) (tstamp ca62bc18-d72f-432e-a686-91b09fedfe8d))
(segment (start 156.207782 88.999286) (end 168.052287 88.999286) (width 0.25) (layer "F.Cu") (net 1) (tstamp f953e42d-da06-4b44-acb2-333ec24715b3))
(segment (start 153.67 86.36) (end 153.67 87.289931) (width 0.25) (layer "F.Cu") (net 1) (tstamp f9a67403-12d3-42ff-86e8-67c35292297a))
(via (at 136.83 82.54) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 8276e5b5-05aa-406b-a749-9bc1ef4ebaf0))
(arc (start 135.251284 84.118715) (mid 133.676997 85.17062) (end 131.82 85.54) (width 0.25) (layer "F.Cu") (net 1) (tstamp 0ee60cc2-a296-4641-9a41-5b953829b1bb))
(arc (start 156.207782 88.999286) (mid 155.442415 88.847045) (end 154.793569 88.4135) (width 0.25) (layer "F.Cu") (net 1) (tstamp 605bf3a2-9202-4ced-a5d7-e847bf11eecd))
(arc (start 168.052287 88.999286) (mid 168.817654 88.847045) (end 169.466501 88.413499) (width 0.25) (layer "F.Cu") (net 1) (tstamp 672d43bc-a9e9-4a19-91f2-8f7513e35f8f))
(segment (start 99.08745 68.50108) (end 96.06128 71.52725) (width 0.25) (layer "B.Cu") (net 1) (tstamp 0194bd3f-4cba-45d9-b1cc-bc0127b06371))
(segment (start 135.57 73.66) (end 135.57 73.656551) (width 0.25) (layer "B.Cu") (net 1) (tstamp 1b22553e-b976-47e0-9123-023b38b5e70e))
(segment (start 101.04132 119.38) (end 101.6 119.38) (width 0.25) (layer "B.Cu") (net 1) (tstamp 1bb2d909-012f-4d92-8374-b8f7a49425df))
(segment (start 125.065193 66.31468) (end 104.651237 66.31468) (width 0.25) (layer "B.Cu") (net 1) (tstamp 33cbf7a5-344d-4e8f-ab59-268d8dbcd631))
(segment (start 135.57 76.2) (end 135.57 78.74) (width 0.25) (layer "B.Cu") (net 1) (tstamp 476be1c0-8e11-4e3e-8606-154d7aafee9a))
(segment (start 135.57 73.656551) (end 136.604182 72.622369) (width 0.25) (layer "B.Cu") (net 1) (tstamp 4e30e0d3-45d2-43f9-9ff3-0eb7f06c99f3))
(segment (start 94.23765 74.634303) (end 94.23765 88.316702) (width 0.25) (layer "B.Cu") (net 1) (tstamp 610a3e1a-7358-4b92-8aa0-809084ce04b8))
(segment (start 151.21 85.08) (end 152.05066 85.92066) (width 0.25) (layer "B.Cu") (net 1) (tstamp 63a105b7-e979-4b05-aff2-c9a5107bd160))
(segment (start 96.05772 71.585795) (end 94.808643 72.834872) (width 0.25) (layer "B.Cu") (net 1) (tstamp 65814f77-02d7-455a-9ce7-7c22ad516e6f))
(segment (start 136.2 81.91) (end 136.83 82.54) (width 0.25) (layer "B.Cu") (net 1) (tstamp 707ac614-de9b-4953-ae4b-31925d59f5ff))
(segment (start 153.11132 86.36) (end 153.67 86.36) (width 0.25) (layer "B.Cu") (net 1) (tstamp 7414ce21-1375-4ab5-8d34-e1acd9ce12af))
(segment (start 99.14 118.1) (end 99.98066 118.94066) (width 0.25) (layer "B.Cu") (net 1) (tstamp 7ff3d921-226b-4f98-830a-b981b20c58f2))
(segment (start 136.83 82.54) (end 138.198427 83.908427) (width 0.25) (layer "B.Cu") (net 1) (tstamp 8250e71b-1a71-4753-86a2-500b88948c90))
(segment (start 136.859646 71.899886) (end 136.859646 71.798985) (width 0.25) (layer "B.Cu") (net 1) (tstamp 89ed9b5b-7962-4e18-b9ac-5bff55713ce2))
(segment (start 135.57 78.74) (end 135.57 81.28) (width 0.25) (layer "B.Cu") (net 1) (tstamp 941355d9-cc60-4d1c-bba6-4078a30529f4))
(segment (start 132.697336 70.699725) (end 130.608336 68.610725) (width 0.25) (layer "B.Cu") (net 1) (tstamp 9794a5a4-4e7e-4ba8-9d7f-f0e26c6ee67b))
(segment (start 135.57 73.66) (end 135.57 76.2) (width 0.25) (layer "B.Cu") (net 1) (tstamp a5c6b898-c730-4538-99da-e95288f516fd))
(segment (start 172.16132 88.9) (end 172.72 88.9) (width 0.25) (layer "B.Cu") (net 1) (tstamp ae8c5775-399c-400e-9535-b2fcb63df87e))
(segment (start 133.489991 70.90677) (end 135.96743 70.90677) (width 0.25) (layer "B.Cu") (net 1) (tstamp b06e9d89-43d2-44ee-a310-561bc780ec7e))
(segment (start 133.489991 70.90677) (end 133.197186 70.90677) (width 0.25) (layer "B.Cu") (net 1) (tstamp bec8588b-911d-449c-bc8c-04afa033a0bb))
(segment (start 170.26 87.62) (end 171.10066 88.46066) (width 0.25) (layer "B.Cu") (net 1) (tstamp d0cf2c4d-2a9d-4d45-ac29-04444ef7ad35))
(segment (start 141.026854 85.08) (end 151.21 85.08) (width 0.25) (layer "B.Cu") (net 1) (tstamp d5cc7f91-b237-43e4-a37a-8371bff9da89))
(segment (start 94.23765 95.212368) (end 94.23765 88.316702) (width 0.25) (layer "B.Cu") (net 1) (tstamp f1c0af05-34dc-4797-8d56-760882b88268))
(segment (start 96.05772 71.52725) (end 96.05772 71.585795) (width 0.25) (layer "B.Cu") (net 1) (tstamp f2a70bf0-02e6-4810-a255-348bf4c7a8ee))
(segment (start 96.06128 71.52725) (end 96.05772 71.52725) (width 0.25) (layer "B.Cu") (net 1) (tstamp f3d8eeb2-d3ec-4489-a5d8-139c2105c026))
(segment (start 94.23765 95.212368) (end 94.23765 109.816702) (width 0.25) (layer "B.Cu") (net 1) (tstamp fa3e3dc3-2fa1-45f4-a9c1-588d019b065e))
(segment (start 96.62834 115.58834) (end 99.14 118.1) (width 0.25) (layer "B.Cu") (net 1) (tstamp fd0290f4-408d-40dd-aca6-3c8c9510600a))
(arc (start 138.198427 83.908427) (mid 139.49612 84.775518) (end 141.026854 85.08) (width 0.25) (layer "B.Cu") (net 1) (tstamp 63e3f612-7207-40ec-94e9-6fd10b75f185))
(arc (start 135.57 80.389045) (mid 135.733731 81.21218) (end 136.2 81.91) (width 0.25) (layer "B.Cu") (net 1) (tstamp 65658a37-1052-4fcf-92e9-e088bd3dccb3))
(arc (start 136.859646 71.798985) (mid 136.79173 71.457549) (end 136.598322 71.168094) (width 0.25) (layer "B.Cu") (net 1) (tstamp 6fcde1b4-22f8-44bc-9d45-5aad5203d977))
(arc (start 104.651237 66.31468) (mid 101.662739 66.881437) (end 99.08745 68.50108) (width 0.25) (layer "B.Cu") (net 1) (tstamp 73444cce-24ea-470d-9c01-bb2f5344edaf))
(arc (start 133.197186 70.90677) (mid 132.926669 70.85296) (end 132.697336 70.699725) (width 0.25) (layer "B.Cu") (net 1) (tstamp 7fb4b697-bc2f-45f5-8bdb-fea2be88e887))
(arc (start 171.10066 88.46066) (mid 171.587295 88.785819) (end 172.16132 88.9) (width 0.25) (layer "B.Cu") (net 1) (tstamp 847aa42b-0af3-4547-8735-39bc07c1e18c))
(arc (start 136.604182 72.622369) (mid 136.793257 72.282533) (end 136.859646 71.899886) (width 0.25) (layer "B.Cu") (net 1) (tstamp 8aefccd3-9e44-4347-ae48-74b24a3286c1))
(arc (start 136.598322 71.168094) (mid 136.308866 70.974685) (end 135.96743 70.90677) (width 0.25) (layer "B.Cu") (net 1) (tstamp 9f3fa803-43cf-4a55-b5a6-21a3df67cc2c))
(arc (start 101.04132 119.38) (mid 100.467295 119.265819) (end 99.98066 118.94066) (width 0.25) (layer "B.Cu") (net 1) (tstamp cdb681ae-6b81-4e46-985f-1af39e037ede))
(arc (start 94.23765 109.816702) (mid 94.85897 112.94029) (end 96.62834 115.58834) (width 0.25) (layer "B.Cu") (net 1) (tstamp cf765aee-a462-4eed-828b-a37ec728e1d3))
(arc (start 130.608336 68.610725) (mid 128.06512 66.911402) (end 125.065193 66.31468) (width 0.25) (layer "B.Cu") (net 1) (tstamp ef882f9f-74e0-4b7b-a496-e57e3cf1e340))
(arc (start 94.808643 72.834872) (mid 94.38438 73.690763) (end 94.23765 74.634303) (width 0.25) (layer "B.Cu") (net 1) (tstamp f3c5089d-11e1-4548-ac9c-14640fea541f))
(arc (start 153.11132 86.36) (mid 152.537295 86.245819) (end 152.05066 85.92066) (width 0.25) (layer "B.Cu") (net 1) (tstamp f3fc2b13-fe64-42e7-9cc4-4b0ff0e67617))
(segment (start 134.629674 82.278779) (end 134.629674 80.378265) (width 0.25) (layer "B.Cu") (net 2) (tstamp 3e082196-8120-4357-9931-209becdda095))
(segment (start 134.149837 79.219837) (end 133.83 78.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 4b6517d5-9b81-4a09-b50e-1b65a0ab4048))
(segment (start 135.5325 83.82) (end 135.081087 83.368587) (width 0.25) (layer "B.Cu") (net 2) (tstamp 4fb34fe7-1b10-4f1c-86e3-2d8825fd4007))
(segment (start 133.83 78.9) (end 133.51 78.58) (width 0.25) (layer "B.Cu") (net 2) (tstamp 85660427-96f6-4404-8d57-779b4dda2a53))
(segment (start 134.619886 73.159289) (end 134.619886 77.118443) (width 0.25) (layer "B.Cu") (net 2) (tstamp 956320f9-edb8-4c84-b585-0d56745d6bbf))
(segment (start 133.83 78.58) (end 134.144943 78.265057) (width 0.25) (layer "B.Cu") (net 2) (tstamp 9655d1f5-c1de-4db1-b329-7b7b92111db6))
(segment (start 135.5325 83.82) (end 135.5325 86.36) (width 0.25) (layer "B.Cu") (net 2) (tstamp 99b6a1b1-3607-41b7-876d-6f355b8c712f))
(segment (start 135.573937 71.85677) (end 135.764991 71.85677) (width 0.25) (layer "B.Cu") (net 2) (tstamp b788a77f-2c77-4e62-8d5c-4c0fbf28142e))
(segment (start 133.123725 78.42) (end 129.81 78.42) (width 0.25) (layer "B.Cu") (net 2) (tstamp ba2d584b-9bac-4f0e-8228-941a1b8832f8))
(segment (start 135.247788 71.991865) (end 135.001385 72.238269) (width 0.25) (layer "B.Cu") (net 2) (tstamp cc9b2a20-fabd-44e0-92dd-9ad9bb1b4c99))
(arc (start 133.83 78.58) (mid 133.763725 78.74) (end 133.83 78.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 05fab240-a9cc-4a71-a59d-bd371618d27d))
(arc (start 134.629674 82.278779) (mid 134.746992 82.868578) (end 135.081087 83.368587) (width 0.25) (layer "B.Cu") (net 2) (tstamp 2919053a-0a85-40ff-82aa-3397c3074c53))
(arc (start 133.51 78.58) (mid 133.332775 78.461582) (end 133.123725 78.42) (width 0.25) (layer "B.Cu") (net 2) (tstamp 96738b4a-fb5d-41b6-be93-0bf2152c8e83))
(arc (start 135.573937 71.85677) (mid 135.397426 71.89188) (end 135.247788 71.991865) (width 0.25) (layer "B.Cu") (net 2) (tstamp a526cadd-24b9-4de1-b011-b4aa440bfb85))
(arc (start 133.51 78.58) (mid 133.67 78.646274) (end 133.83 78.58) (width 0.25) (layer "B.Cu") (net 2) (tstamp dbb92a72-4520-4cec-8704-cef51af853cd))
(arc (start 134.619886 77.118443) (mid 134.496452 77.738986) (end 134.144943 78.265057) (width 0.25) (layer "B.Cu") (net 2) (tstamp dc081ec6-cbe4-42cc-81a7-c3cb9df1fe60))
(arc (start 135.001385 72.238269) (mid 134.719034 72.660836) (end 134.619886 73.159289) (width 0.25) (layer "B.Cu") (net 2) (tstamp eb7b45e9-5d7d-4d33-bf7a-e18874d7a07c))
(arc (start 134.149837 79.219837) (mid 134.504968 79.751328) (end 134.629674 80.378265) (width 0.25) (layer "B.Cu") (net 2) (tstamp f37521fe-b5fe-45cd-b033-364431b0b1f4))
(segment (start 131.167441 77.882703) (end 131.167441 72.322137) (width 0.25) (layer "F.Cu") (net 3) (tstamp 07b22a56-b64d-4b6b-9c27-a54f2fafe037))
(segment (start 131.953407 70.168216) (end 131.953407 70.98041) (width 0.25) (layer "F.Cu") (net 3) (tstamp 321eae74-bc68-4e92-94ea-4468bc1a3e20))
(segment (start 132.211303 69.5456) (end 132.469199 69.287704) (width 0.25) (layer "F.Cu") (net 3) (tstamp 62842c38-164b-4bb6-b6f2-5924bba8c822))
(segment (start 131.953407 70.98041) (end 131.560424 71.373393) (width 0.25) (layer "F.Cu") (net 3) (tstamp 6d0c1fa6-6696-4de3-93cc-6abed3042c0e))
(segment (start 130.48872 79.521279) (end 129.81 80.2) (width 0.25) (layer "F.Cu") (net 3) (tstamp b726c0cb-25ce-4905-b4ce-467bd43bd2e5))
(via (at 132.469199 69.287704) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 226ac491-2ee9-41e2-8a40-06f66cef41af))
(via (at 131.953407 70.98041) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 539c28e8-475e-4ae5-b56e-147e9afc860f))
(arc (start 131.560424 71.373393) (mid 131.269573 71.80868) (end 131.167441 72.322137) (width 0.25) (layer "F.Cu") (net 3) (tstamp 194628f5-d42f-4840-b0ab-5d8749fbd9a0))
(arc (start 131.167441 77.882703) (mid 130.991047 78.769494) (end 130.48872 79.521279) (width 0.25) (layer "F.Cu") (net 3) (tstamp c865d0a3-f273-4c77-abe5-b9509b567ff7))
(arc (start 132.211303 69.5456) (mid 132.020431 69.831258) (end 131.953407 70.168216) (width 0.25) (layer "F.Cu") (net 3) (tstamp cbd9c7a3-3846-43b3-a3c6-58998e0ee845))
(segment (start 133.13 80.74) (end 133.67 81.28) (width 0.25) (layer "B.Cu") (net 3) (tstamp 16e7cd61-e102-4ed6-b4b4-e48ea603d1ea))
(segment (start 131.826324 80.2) (end 129.81 80.2) (width 0.25) (layer "B.Cu") (net 3) (tstamp 36a7fb76-ed01-4137-9682-89a26251ba22))
(segment (start 130.042952 69.069955) (end 131.953407 70.98041) (width 0.25) (layer "B.Cu") (net 3) (tstamp 4f83e4da-b5bb-47cc-8638-71e3f04114b2))
(segment (start 116.332 67.1595) (end 125.430705 67.1595) (width 0.25) (layer "B.Cu") (net 3) (tstamp 5958f18d-f059-4442-8007-1198874464e2))
(segment (start 133.159879 71.85677) (end 133.489991 71.85677) (width 0.25) (layer "B.Cu") (net 3) (tstamp 6657b9ad-cf73-4a2b-af91-cf398ecdd450))
(segment (start 133.013911 69.832416) (end 132.469199 69.287704) (width 0.25) (layer "B.Cu") (net 3) (tstamp 6ea6afed-1943-40e2-b8da-3569dc3b748b))
(segment (start 116.332 67.1595) (end 106.346417 67.1595) (width 0.25) (layer "B.Cu") (net 3) (tstamp 9627400d-e8f2-44eb-9737-16f05eed6df9))
(segment (start 133.314128 69.95677) (end 133.489991 69.95677) (width 0.25) (layer "B.Cu") (net 3) (tstamp 9cb0cd71-2a10-4fd4-843f-1855ec98131a))
(segment (start 131.953407 70.98041) (end 132.596342 71.623345) (width 0.25) (layer "B.Cu") (net 3) (tstamp 9df8abea-0c83-42d1-bfcd-de210f7ed8c6))
(segment (start 100.574779 69.55019) (end 96.05772 74.06725) (width 0.25) (layer "B.Cu") (net 3) (tstamp a47ca0f0-1272-4c92-81c6-223879630a80))
(arc (start 132.596342 71.623345) (mid 132.854895 71.796104) (end 133.159879 71.85677) (width 0.25) (layer "B.Cu") (net 3) (tstamp 01212232-9379-4568-82ba-7d6f4a627262))
(arc (start 106.346417 67.1595) (mid 103.222828 67.780819) (end 100.574779 69.55019) (width 0.25) (layer "B.Cu") (net 3) (tstamp 5cc3461a-45b6-4b27-ab8b-a723e63abeac))
(arc (start 133.13 80.74) (mid 132.531868 80.340341) (end 131.826324 80.2) (width 0.25) (layer "B.Cu") (net 3) (tstamp c78fb20f-60f4-4bc6-9354-0b7f3c76992e))
(arc (start 133.013911 69.832416) (mid 133.151651 69.924451) (end 133.314128 69.95677) (width 0.25) (layer "B.Cu") (net 3) (tstamp d5af25fc-1a28-4561-9a6a-94c1820727f2))
(arc (start 125.430705 67.1595) (mid 127.926835 67.656009) (end 130.042952 69.069955) (width 0.25) (layer "B.Cu") (net 3) (tstamp f45db3e9-ee5a-43e3-bcea-7aedbbb33fad))
(segment (start 115.841282 80.642475) (end 115.393758 80.194951) (width 0.25) (layer "F.Cu") (net 4) (tstamp 1fa9a01c-068f-49aa-b38d-753df6af9d7e))
(segment (start 116.921702 81.09) (end 119.11 81.09) (width 0.25) (layer "F.Cu") (net 4) (tstamp 9ac93ec0-25ad-4123-87be-318fbc6a3ada))
(segment (start 115.367898 80.18424) (end 115.35275 80.18424) (width 0.25) (layer "F.Cu") (net 4) (tstamp 9ec359c8-6bac-44a0-a68b-3702d6ffc10c))
(segment (start 103.069112 82.038118) (end 103.543171 81.564059) (width 0.25) (layer "F.Cu") (net 4) (tstamp a11cf41f-e4ed-4768-bec4-bcd4c711a2b6))
(segment (start 104.68765 81.09) (end 116.921702 81.09) (width 0.25) (layer "F.Cu") (net 4) (tstamp e31b6cd0-e2fb-414d-9b6b-62045d8b1da2))
(via (at 115.35275 80.18424) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 4) (tstamp 48499810-dbb7-4896-93f0-1ced9e122e6a))
(via (at 103.069112 82.038118) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 4) (tstamp 807014f2-7f3e-447f-975e-79a5731f77cd))
(arc (start 115.393758 80.194951) (mid 115.381893 80.187023) (end 115.367898 80.18424) (width 0.25) (layer "F.Cu") (net 4) (tstamp 7f8f4e0d-9cc1-47a8-bea6-0fcf9e9c73b4))
(arc (start 115.841282 80.642475) (mid 116.336983 80.973692) (end 116.921702 81.09) (width 0.25) (layer "F.Cu") (net 4) (tstamp edb88773-4295-48c1-ac9f-2e84874c057a))
(arc (start 103.543171 81.564059) (mid 104.068263 81.213212) (end 104.68765 81.09) (width 0.25) (layer "F.Cu") (net 4) (tstamp ef06afe5-a679-4e12-a453-76f4768226a8))
(segment (start 97.503154 80.592684) (end 96.05772 79.14725) (width 0.25) (layer "B.Cu") (net 4) (tstamp 078773db-55ba-4f02-8f27-ebed8d61731c))
(segment (start 115.35275 80.18424) (end 115.842375 79.694615) (width 0.25) (layer "B.Cu") (net 4) (tstamp 59ee5218-df84-4803-909d-cb285d4eef9d))
(segment (start 103.069112 82.038118) (end 100.99274 82.038118) (width 0.25) (layer "B.Cu") (net 4) (tstamp 8fd02bfc-82d3-48aa-a35e-212d37f03b87))
(segment (start 116.332 78.512555) (end 116.332 68.9845) (width 0.25) (layer "B.Cu") (net 4) (tstamp d780c982-09c6-4b5f-981a-6ab4374d73d5))
(arc (start 116.332 78.512555) (mid 116.20475 79.152281) (end 115.842375 79.694615) (width 0.25) (layer "B.Cu") (net 4) (tstamp 12ca9bb8-4af1-40ec-b823-95769c96febe))