-
Notifications
You must be signed in to change notification settings - Fork 0
/
PICO probe holder.kicad_pcb
9871 lines (9860 loc) · 365 KB
/
PICO probe holder.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 "Nutzer.1")
(51 "User.2" user "Nutzer.2")
(52 "User.3" user "Nutzer.3")
(53 "User.4" user "Nutzer.4")
(54 "User.5" user "Nutzer.5")
(55 "User.6" user "Nutzer.6")
(56 "User.7" user "Nutzer.7")
(57 "User.8" user "Nutzer.8")
(58 "User.9" user "Nutzer.9")
)
(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)
(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 true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "Net-(J1-Pad1)")
(net 2 "Net-(J1-Pad7)")
(net 3 "Net-(J1-Pad2)")
(net 4 "Net-(J1-Pad3)")
(net 5 "Net-(J1-Pad4)")
(net 6 "unconnected-(U1-Pad9)")
(net 7 "unconnected-(U1-Pad10)")
(net 8 "unconnected-(U1-Pad11)")
(net 9 "unconnected-(U1-Pad12)")
(net 10 "unconnected-(U1-Pad14)")
(net 11 "unconnected-(U1-Pad15)")
(net 12 "unconnected-(U1-Pad16)")
(net 13 "unconnected-(U1-Pad17)")
(net 14 "unconnected-(U1-Pad19)")
(net 15 "unconnected-(U1-Pad20)")
(net 16 "unconnected-(U1-Pad21)")
(net 17 "unconnected-(U1-Pad22)")
(net 18 "unconnected-(U1-Pad24)")
(net 19 "unconnected-(U1-Pad25)")
(net 20 "unconnected-(U1-Pad26)")
(net 21 "unconnected-(U1-Pad27)")
(net 22 "unconnected-(U1-Pad1)")
(net 23 "unconnected-(U1-Pad29)")
(net 24 "unconnected-(U1-Pad2)")
(net 25 "unconnected-(U1-Pad31)")
(net 26 "unconnected-(U1-Pad32)")
(net 27 "unconnected-(U1-Pad34)")
(net 28 "unconnected-(U1-Pad35)")
(net 29 "unconnected-(U1-Pad37)")
(net 30 "unconnected-(U1-Pad40)")
(net 31 "unconnected-(U1-Pad41)")
(net 32 "unconnected-(U1-Pad43)")
(net 33 "GND")
(net 34 "Net-(J1-Pad6)")
(net 35 "Net-(J2-Pad1)")
(net 36 "Net-(J2-Pad3)")
(net 37 "Net-(SW1-Pad1)")
(footprint "Connector_JST:JST_XH_B7B-XH-A_1x07_P2.50mm_Vertical" (layer "F.Cu")
(tedit 5C28146C) (tstamp 2887f18d-0aa0-4560-89a5-469e7311c504)
(at 122.04 133.35)
(descr "JST XH series connector, B7B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator")
(tags "connector JST XH vertical")
(property "Sheetfile" "PICO probe holder.kicad_sch")
(property "Sheetname" "")
(path "/c92fca4c-3099-4b1d-9e29-2a91f735da40")
(attr through_hole)
(fp_text reference "J1" (at 7.5 -3.55) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 37094ddf-4b43-4eb6-9a04-57cb3dbae667)
)
(fp_text value "Conn_01x07_Male" (at 7.5 4.6) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 20aca1eb-2553-472c-8233-9bbcdbd26359)
)
(fp_text user "${REFERENCE}" (at 7.5 2.7) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2a2704ca-1e38-4667-a57e-250b58db2b2c)
)
(fp_line (start 16.8 -0.2) (end 16.8 2.75) (layer "F.SilkS") (width 0.12) (tstamp 092df2d6-1f53-4186-a4e3-4abee19ed276))
(fp_line (start 15.75 -1.7) (end 17.55 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 2016cf60-b1d4-4bf0-adcd-6cb000921b3f))
(fp_line (start 0.75 -2.45) (end 0.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 23236696-4fa7-4f79-b007-5a84bfe2e477))
(fp_line (start -2.55 -0.2) (end -1.8 -0.2) (layer "F.SilkS") (width 0.12) (tstamp 3b40c555-0066-4897-b4d0-cd83d297b3c0))
(fp_line (start -2.85 -2.75) (end -2.85 -1.5) (layer "F.SilkS") (width 0.12) (tstamp 480978ff-758f-46c3-b54a-fda001b5db50))
(fp_line (start -0.75 -2.45) (end -2.55 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 49b40c59-5505-4c87-b5a3-89bcc8df62ea))
(fp_line (start -2.55 -2.45) (end -2.55 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 5420edfd-3c9c-4738-90db-5de14da1841d))
(fp_line (start 17.56 3.51) (end 17.56 -2.46) (layer "F.SilkS") (width 0.12) (tstamp 59854ca3-e281-45b8-aa21-85ebb2fe097f))
(fp_line (start 14.25 -1.7) (end 14.25 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 60afe7c5-b996-4ae7-b7bc-167709a11eb8))
(fp_line (start -2.56 -2.46) (end -2.56 3.51) (layer "F.SilkS") (width 0.12) (tstamp 65c45f9d-cac5-457d-acf9-a62255e39310))
(fp_line (start -0.75 -1.7) (end -0.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp 67ebf665-a501-43a3-93c0-a302746c46f6))
(fp_line (start 17.55 -0.2) (end 16.8 -0.2) (layer "F.SilkS") (width 0.12) (tstamp 77753433-cb2a-4c08-8d35-ead6f1d063cc))
(fp_line (start 0.75 -1.7) (end 14.25 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 9670f29e-2225-4fb8-9d52-cf00f2bb7876))
(fp_line (start -1.6 -2.75) (end -2.85 -2.75) (layer "F.SilkS") (width 0.12) (tstamp 9d3212a5-7964-48fe-ab47-abf554789a92))
(fp_line (start -2.55 -1.7) (end -0.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp ac169c25-e80d-4c3a-8735-566e0206daec))
(fp_line (start 14.25 -2.45) (end 0.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp ac83793c-f714-4d53-ae77-f98beb1d5225))
(fp_line (start 17.56 -2.46) (end -2.56 -2.46) (layer "F.SilkS") (width 0.12) (tstamp ade0e234-9126-4f4a-9bc0-b4f1831f17ba))
(fp_line (start 17.55 -2.45) (end 15.75 -2.45) (layer "F.SilkS") (width 0.12) (tstamp b10741f8-ca9e-4242-9683-da499a99d7bf))
(fp_line (start 15.75 -2.45) (end 15.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp bf62fce8-932b-4990-b9f3-15dbc2821355))
(fp_line (start 16.8 2.75) (end 7.5 2.75) (layer "F.SilkS") (width 0.12) (tstamp ddd9386a-f620-4c80-b7a4-ddbda9db439f))
(fp_line (start -1.8 -0.2) (end -1.8 2.75) (layer "F.SilkS") (width 0.12) (tstamp e72077da-f8b1-42fa-8022-d3a12ee0a828))
(fp_line (start 17.55 -1.7) (end 17.55 -2.45) (layer "F.SilkS") (width 0.12) (tstamp ea24fe97-e060-4bd0-ae43-a22d1e6c62fc))
(fp_line (start -2.56 3.51) (end 17.56 3.51) (layer "F.SilkS") (width 0.12) (tstamp eddecb06-4f62-4b26-b38b-357fd151a889))
(fp_line (start -1.8 2.75) (end 7.5 2.75) (layer "F.SilkS") (width 0.12) (tstamp fba89f98-968f-4df6-94d6-de7f4e850e02))
(fp_line (start 17.95 3.9) (end 17.95 -2.85) (layer "F.CrtYd") (width 0.05) (tstamp 15a4ff0a-c1ec-4283-9dc9-b4d50d3620f4))
(fp_line (start -2.95 -2.85) (end -2.95 3.9) (layer "F.CrtYd") (width 0.05) (tstamp 160101b9-b9b5-4132-a1cc-53550b8cc791))
(fp_line (start 17.95 -2.85) (end -2.95 -2.85) (layer "F.CrtYd") (width 0.05) (tstamp a93cdcba-4cf6-46cd-a652-329be4ef4fce))
(fp_line (start -2.95 3.9) (end 17.95 3.9) (layer "F.CrtYd") (width 0.05) (tstamp c2eb3818-2425-42e8-91a0-cc7a2bbd7dfd))
(fp_line (start -2.45 -2.35) (end -2.45 3.4) (layer "F.Fab") (width 0.1) (tstamp 134635eb-a5bb-4dbd-9f31-b7893528360b))
(fp_line (start 0 -1.35) (end 0.625 -2.35) (layer "F.Fab") (width 0.1) (tstamp 4ac47f42-6592-4785-a2e7-71fd59971d50))
(fp_line (start 17.45 -2.35) (end -2.45 -2.35) (layer "F.Fab") (width 0.1) (tstamp 53a72b92-2c91-4f65-b6eb-58668668cc05))
(fp_line (start 17.45 3.4) (end 17.45 -2.35) (layer "F.Fab") (width 0.1) (tstamp 9c13d89a-e493-4189-ad77-917977dfe42a))
(fp_line (start -2.45 3.4) (end 17.45 3.4) (layer "F.Fab") (width 0.1) (tstamp ceb6181e-e575-44b1-b903-d7edc38c8c5c))
(fp_line (start -0.625 -2.35) (end 0 -1.35) (layer "F.Fab") (width 0.1) (tstamp d965654e-8854-481d-b8c8-a3df8883a8ba))
(pad "1" thru_hole roundrect (at 0 0) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask) (roundrect_rratio 0.147059)
(net 1 "Net-(J1-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 14a91714-63ca-4199-b9e8-72a4be9a1ffc))
(pad "2" thru_hole oval (at 2.5 0) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask)
(net 3 "Net-(J1-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp b2dbaaf6-5e18-4b2e-8388-efbc552b1818))
(pad "3" thru_hole oval (at 5 0) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask)
(net 4 "Net-(J1-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp 45cad4e0-7787-4406-be96-394fab725a94))
(pad "4" thru_hole oval (at 7.5 0) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask)
(net 5 "Net-(J1-Pad4)") (pinfunction "Pin_4") (pintype "passive") (tstamp 0754d766-38e2-4197-bffa-1fa7933b19c1))
(pad "5" thru_hole oval (at 10 0) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask)
(net 33 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp 30e93c1c-e221-468e-9699-16107fded339))
(pad "6" thru_hole oval (at 12.5 0) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask)
(net 34 "Net-(J1-Pad6)") (pinfunction "Pin_6") (pintype "passive") (tstamp 6a46cf4c-9d1e-4658-ab8a-c024c53e1d8a))
(pad "7" thru_hole oval (at 15 0) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask)
(net 2 "Net-(J1-Pad7)") (pinfunction "Pin_7") (pintype "passive") (tstamp a793fa66-47f7-4b7f-9fde-f2aae99a9347))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_XH_B7B-XH-A_1x07_P2.50mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "ene9ba_footprint:RPi_Pico_SMD_TH" (layer "F.Cu")
(tedit 5F638C80) (tstamp 6d7c2e86-d608-4fc0-bcf7-35c71063fe44)
(at 129.45 83.82)
(descr "Through hole straight pin header, 2x20, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x20 2.54mm double row")
(property "Sheetfile" "PICO probe holder.kicad_sch")
(property "Sheetname" "")
(path "/6316acb7-63a1-40e7-8695-2822d4a240b5")
(attr through_hole)
(fp_text reference "U1" (at 0 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2a6b41d0-b2b4-448f-b144-f3f20353eb05)
)
(fp_text value "Pico" (at 0 2.159) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 91e74aa6-705f-40ba-b6bd-d9322523111d)
)
(fp_text user "GP17" (at 13.054 21.59 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 0b95d5f8-be59-4aa4-9e3b-2ddb0751a97c)
)
(fp_text user "SWCLK" (at -5.7 26.2) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 0ebc7e3d-c040-4c6e-aaf8-1870c68a4ff3)
)
(fp_text user "VSYS" (at 13.2 -21.59 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 0fe48391-8f53-4252-b2ae-7bbbd9bf6af6)
)
(fp_text user "ADC_VREF" (at 14 -12.5 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 119cd2ee-6025-406f-acfc-adcac3592135)
)
(fp_text user "AGND" (at 13.054 -6.35 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 1da291cc-3aa5-4632-8f99-7dae246a7f56)
)
(fp_text user "GP16" (at 13.054 24.13 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 21f7e9f1-0a4c-49be-a4ca-8c8253ab27e6)
)
(fp_text user "GP8" (at -12.8 1.27 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 238b4f36-a253-431c-a93e-34af7da002ac)
)
(fp_text user "GP26" (at 13.054 -1.27 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 35519fd5-08ff-4fab-91c9-037e2a0c1c90)
)
(fp_text user "GND" (at 12.8 6.35 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 4605c20a-6c32-4ba9-9d98-157265e5d2d4)
)
(fp_text user "GP21" (at 13.054 8.9 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 4bee3b93-9a25-4a62-bc3b-7a216b6aba9d)
)
(fp_text user "GP11" (at -13.2 11.43 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 5193b92c-0f95-414f-9c12-4288fbf1289f)
)
(fp_text user "GP7" (at -12.7 -1.3 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 56504f65-96d9-4604-a878-5df8bedb6653)
)
(fp_text user "GP27" (at 13.054 -3.8 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 5d8b52e3-6cf3-4957-a7be-c8e9a1edb540)
)
(fp_text user "GP13" (at -13.054 16.51 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 6752af1f-7117-4db8-a4d6-67772bc5edb1)
)
(fp_text user "GP18" (at 13.054 16.51 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 6a9026f4-97ad-4ca6-b8a7-4b78e7eaa11b)
)
(fp_text user "GP22" (at 13.054 3.81 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 6d7a616c-ac20-4197-b8c5-9e5133e13b25)
)
(fp_text user "GND" (at 12.8 -19.05 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 7982b0aa-ef8e-47f9-a2a9-295924d921de)
)
(fp_text user "SWDIO" (at 5.6 26.2) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 7b669a9c-8885-4737-8192-e35d45fe2c93)
)
(fp_text user "GP3" (at -12.8 -13.97 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 7e881b05-98b1-4290-99fa-d895271485f2)
)
(fp_text user "GND" (at -12.8 -6.35 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 88a77af6-5cc0-4264-b177-412fab1f38d2)
)
(fp_text user "3V3" (at 12.9 -13.9 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 8ba9c3fb-46f6-4875-a664-e313ccfeba0c)
)
(fp_text user "GP6" (at -12.8 -3.81 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 8ef8ab63-d78b-49e0-89aa-d7de17fdbe74)
)
(fp_text user "3V3_EN" (at 13.7 -17.2 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 99a27256-a88a-4355-b453-612ad2615aaf)
)
(fp_text user "GP4" (at -12.8 -11.43 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 9a8828a5-2e2e-4063-b51c-f89d08e28152)
)
(fp_text user "GP5" (at -12.8 -8.89 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 9b4b514c-b288-40ab-af4d-fb8827371f01)
)
(fp_text user "GP19" (at 13.054 13.97 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 9ceea79f-ef80-4e41-a251-1e78376f0a53)
)
(fp_text user "GND" (at 12.8 19.05 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 9e19b2a4-ed99-43e2-8f47-aa18bac2b22e)
)
(fp_text user "GP20" (at 13.054 11.43 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 9fd9e8ec-fc98-4154-ad2e-11ac105668bf)
)
(fp_text user "GND" (at -12.8 6.35 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp a174e5fd-6a2e-44e2-8acc-20c14c8a9718)
)
(fp_text user "VBUS" (at 13.3 -24.2 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp a587fbd2-119d-431c-964c-d65c1fee09ba)
)
(fp_text user "GP10" (at -13.054 8.89 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp ab4e121c-071f-4432-a221-b67e64d6ff8d)
)
(fp_text user "GP15" (at -13.054 24.13 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp aede887e-5713-4410-b301-8003185f738f)
)
(fp_text user "GP0" (at -12.8 -24.13 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp c0ed410a-0280-4a8c-8ff3-f58b7b1340fc)
)
(fp_text user "GP12" (at -13.2 13.97 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp c1815e63-5999-4d25-8dc0-c63ae372e426)
)
(fp_text user "GP1" (at -12.9 -21.6 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp c6c65753-d91c-4ba2-af2d-d160b7cd94a1)
)
(fp_text user "GP9" (at -12.8 3.81 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp d868ec48-42f4-4608-baef-8e135bf87a69)
)
(fp_text user "GP28" (at 13.054 -9.144 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp da9cac19-080a-44fc-94cf-8e4d6da93cd3)
)
(fp_text user "GP2" (at -12.9 -16.51 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp e1bb8278-8661-48b3-8c4a-2e2543ea53b5)
)
(fp_text user "GND" (at -12.8 -19.05 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp ea8af268-a61a-4080-9052-189d35ada315)
)
(fp_text user "RUN" (at 13 1.27 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp f0438862-6f0b-4bc2-aa8e-eb45642585c1)
)
(fp_text user "GP14" (at -13.1 21.59 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp f0975aab-9018-4c2c-83a3-ecbae5bfb12a)
)
(fp_text user "GND" (at -12.8 19.05 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp f8933443-3eda-49a4-a3dd-e25c75852b5a)
)
(fp_text user "Copper Keepouts shown on Dwgs layer" (at 0.1 -30.2) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 04b75106-8d7d-48e6-ae2b-ca4f98924cb4)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 76d746f4-3f58-4c51-b2a3-c1e775832b8f)
)
(fp_line (start 10.5 -2.7) (end 10.5 -2.3) (layer "F.SilkS") (width 0.12) (tstamp 04c05bc0-3dda-43a6-af25-09f950940dd8))
(fp_line (start -3.7 25.5) (end -10.5 25.5) (layer "F.SilkS") (width 0.12) (tstamp 06246b13-4cc5-4813-9e84-3092eaa4c6ff))
(fp_line (start 10.5 12.5) (end 10.5 12.9) (layer "F.SilkS") (width 0.12) (tstamp 0bf360fe-d53b-4fba-8e46-9750b65ec503))
(fp_line (start -10.5 -5.3) (end -10.5 -4.9) (layer "F.SilkS") (width 0.12) (tstamp 0e99bc84-7b91-48e8-914f-64b870ddaaea))
(fp_line (start -10.5 7.4) (end -10.5 7.8) (layer "F.SilkS") (width 0.12) (tstamp 0f2380dd-3d0c-4344-9111-056457fe100b))
(fp_line (start 10.5 -0.2) (end 10.5 0.2) (layer "F.SilkS") (width 0.12) (tstamp 14c9319a-850d-4254-aa4f-5f36c5dcf324))
(fp_line (start -10.5 -25.5) (end 10.5 -25.5) (layer "F.SilkS") (width 0.12) (tstamp 1a3908e6-1e81-477c-b81d-11898b35bbc6))
(fp_line (start -10.5 -15.4) (end -10.5 -15) (layer "F.SilkS") (width 0.12) (tstamp 1b4be093-1a7b-4454-8070-4dd739e51e0d))
(fp_line (start 10.5 15.1) (end 10.5 15.5) (layer "F.SilkS") (width 0.12) (tstamp 2168b05f-acf6-44d7-a1f6-3db3d25175d7))
(fp_line (start -10.5 -22.833) (end -7.493 -22.833) (layer "F.SilkS") (width 0.12) (tstamp 2b23d0e4-c3a2-4f0d-9455-e00e556f6b81))
(fp_line (start -10.5 -12.9) (end -10.5 -12.5) (layer "F.SilkS") (width 0.12) (tstamp 2ca9ffbb-a786-4e56-9793-1ea44e250feb))
(fp_line (start 10.5 -5.3) (end 10.5 -4.9) (layer "F.SilkS") (width 0.12) (tstamp 3070e453-5a48-4337-bc8a-aaea9f0903c4))
(fp_line (start 10.5 4.9) (end 10.5 5.3) (layer "F.SilkS") (width 0.12) (tstamp 3a3c2d06-2914-4049-8266-3e33b3477ac7))
(fp_line (start -10.5 -10.4) (end -10.5 -10) (layer "F.SilkS") (width 0.12) (tstamp 3cbf0079-fd32-4253-a192-734de2b6823b))
(fp_line (start -10.5 20.1) (end -10.5 20.5) (layer "F.SilkS") (width 0.12) (tstamp 3e78fc52-54f0-47bd-8712-670ab6f5336c))
(fp_line (start 10.5 -12.9) (end 10.5 -12.5) (layer "F.SilkS") (width 0.12) (tstamp 3fec1831-49fe-435d-a6eb-ba520e55f450))
(fp_line (start -10.5 17.6) (end -10.5 18) (layer "F.SilkS") (width 0.12) (tstamp 457aad0d-626d-4ee5-8691-0f5a203e44f3))
(fp_line (start 10.5 7.4) (end 10.5 7.8) (layer "F.SilkS") (width 0.12) (tstamp 476016a1-85a2-490a-9e22-631280b45f0e))
(fp_line (start -10.5 -18) (end -10.5 -17.6) (layer "F.SilkS") (width 0.12) (tstamp 49371403-6674-4834-91b2-f03f0da5c9df))
(fp_line (start 10.5 -25.5) (end 10.5 -25.2) (layer "F.SilkS") (width 0.12) (tstamp 5830b252-f9bf-4c02-87b8-7eda50f7a6a1))
(fp_line (start -1.5 25.5) (end -1.1 25.5) (layer "F.SilkS") (width 0.12) (tstamp 5d39eaa6-1063-496d-94bf-38c228872342))
(fp_line (start 10.5 22.7) (end 10.5 23.1) (layer "F.SilkS") (width 0.12) (tstamp 68088798-20ff-4f22-bf25-f788547d7ede))
(fp_line (start -10.5 -20.5) (end -10.5 -20.1) (layer "F.SilkS") (width 0.12) (tstamp 6a39023a-a193-4053-9314-e48e7fa182bd))
(fp_line (start 10.5 -10.4) (end 10.5 -10) (layer "F.SilkS") (width 0.12) (tstamp 6fb29b39-d38b-4fe4-9627-ba1d524fd9c7))
(fp_line (start 10.5 10) (end 10.5 10.4) (layer "F.SilkS") (width 0.12) (tstamp 74a11fb2-4d5c-4874-ac13-c84be9c8bd99))
(fp_line (start 10.5 -23.1) (end 10.5 -22.7) (layer "F.SilkS") (width 0.12) (tstamp 7b48c09d-366d-471a-ab6a-af36bac922ac))
(fp_line (start 10.5 20.1) (end 10.5 20.5) (layer "F.SilkS") (width 0.12) (tstamp 80dec395-b03d-42e4-894e-d6e2d9479fc8))
(fp_line (start -7.493 -22.833) (end -7.493 -25.5) (layer "F.SilkS") (width 0.12) (tstamp 831551e9-d1a7-41ec-a611-e552a75a9404))
(fp_line (start 10.5 2.3) (end 10.5 2.7) (layer "F.SilkS") (width 0.12) (tstamp 8a37a2ac-9063-4f9f-8082-a7cf43d90bfd))
(fp_line (start 10.5 -7.8) (end 10.5 -7.4) (layer "F.SilkS") (width 0.12) (tstamp 8da24d4e-7dc6-4522-ac07-504b8e25e6eb))
(fp_line (start 10.5 -15.4) (end 10.5 -15) (layer "F.SilkS") (width 0.12) (tstamp 93b90371-971d-4766-a673-0ae183e0ebf1))
(fp_line (start -10.5 -2.7) (end -10.5 -2.3) (layer "F.SilkS") (width 0.12) (tstamp 93de6b54-010c-4a31-a08a-d11be2aedd9d))
(fp_line (start 10.5 -18) (end 10.5 -17.6) (layer "F.SilkS") (width 0.12) (tstamp 97af4b27-e566-489d-b53d-b40c94681afb))
(fp_line (start 10.5 17.6) (end 10.5 18) (layer "F.SilkS") (width 0.12) (tstamp a2512eb5-1205-4c98-854b-ff2f58d6be51))
(fp_line (start -10.5 2.3) (end -10.5 2.7) (layer "F.SilkS") (width 0.12) (tstamp a39d52c1-2020-4018-824d-ae6a843ea56a))
(fp_line (start 10.5 -20.5) (end 10.5 -20.1) (layer "F.SilkS") (width 0.12) (tstamp a54460d0-1b47-4c4a-89eb-2ee3a9226f14))
(fp_line (start -10.5 12.5) (end -10.5 12.9) (layer "F.SilkS") (width 0.12) (tstamp ab8bc8da-9fb2-454e-9c07-a665edb35426))
(fp_line (start -10.5 4.9) (end -10.5 5.3) (layer "F.SilkS") (width 0.12) (tstamp ac57bf13-f9c0-4cc2-ad04-7a6ba98578e1))
(fp_line (start 10.5 25.5) (end 3.7 25.5) (layer "F.SilkS") (width 0.12) (tstamp bbe51e1f-e697-4c04-8bf9-02c0c3c6731e))
(fp_line (start 1.1 25.5) (end 1.5 25.5) (layer "F.SilkS") (width 0.12) (tstamp bee8f0ee-3740-4a43-b70d-e9aa4b364373))
(fp_line (start -10.5 22.7) (end -10.5 23.1) (layer "F.SilkS") (width 0.12) (tstamp bfb983d4-33d7-434d-a8de-68d21eefb4ce))
(fp_line (start -10.5 15.1) (end -10.5 15.5) (layer "F.SilkS") (width 0.12) (tstamp dc818b6d-85d3-44e5-bc64-794d2473a569))
(fp_line (start -10.5 10) (end -10.5 10.4) (layer "F.SilkS") (width 0.12) (tstamp e40a3b3c-aaa1-4c07-a4de-489c28df891f))
(fp_line (start -10.5 -23.1) (end -10.5 -22.7) (layer "F.SilkS") (width 0.12) (tstamp ec311434-f026-4644-9a4c-261b7ece686d))
(fp_line (start -10.5 -7.8) (end -10.5 -7.4) (layer "F.SilkS") (width 0.12) (tstamp f03478ba-f8e8-4ce7-a1fa-dca7b15de97a))
(fp_line (start -10.5 -0.2) (end -10.5 0.2) (layer "F.SilkS") (width 0.12) (tstamp fa5e550a-15ca-428e-9a28-8858ec4b8cc1))
(fp_line (start -10.5 -25.5) (end -10.5 -25.2) (layer "F.SilkS") (width 0.12) (tstamp fbc5bfad-105f-41f4-afe7-005c43564954))
(fp_poly (pts
(xy -1.5 -11.5)
(xy -3.5 -11.5)
(xy -3.5 -13.5)
(xy -1.5 -13.5)
) (layer "Dwgs.User") (width 0.1) (fill solid) (tstamp 249cef6d-6e38-4ebb-bf7b-c4567d4a2239))
(fp_poly (pts
(xy -1.5 -14)
(xy -3.5 -14)
(xy -3.5 -16)
(xy -1.5 -16)
) (layer "Dwgs.User") (width 0.1) (fill solid) (tstamp 5e1866e0-7fc9-4bfe-b82d-d200c9cd8c20))
(fp_poly (pts
(xy -1.5 -16.5)
(xy -3.5 -16.5)
(xy -3.5 -18.5)
(xy -1.5 -18.5)
) (layer "Dwgs.User") (width 0.1) (fill solid) (tstamp 8c334f51-6a0b-406c-9f2c-47b0eaeba7c1))
(fp_poly (pts
(xy 3.7 -20.2)
(xy -3.7 -20.2)
(xy -3.7 -24.9)
(xy 3.7 -24.9)
) (layer "Dwgs.User") (width 0.1) (fill solid) (tstamp aba21c1b-7164-4ac1-b852-2ab77931dfce))
(fp_line (start -11 -26) (end 11 -26) (layer "F.CrtYd") (width 0.12) (tstamp 6e2190a8-0a8f-4569-8c96-006456c6e6b2))
(fp_line (start 11 -26) (end 11 26) (layer "F.CrtYd") (width 0.12) (tstamp 6faf24c9-afc6-43f9-9326-68c5c2ccabec))
(fp_line (start -11 26) (end -11 -26) (layer "F.CrtYd") (width 0.12) (tstamp 8afd9c35-4e4d-476d-9e26-4a9f78600246))
(fp_line (start 11 26) (end -11 26) (layer "F.CrtYd") (width 0.12) (tstamp f722ea3c-0557-407a-b5bf-641f8a291a63))
(fp_line (start -10.5 -24.2) (end -9.2 -25.5) (layer "F.Fab") (width 0.12) (tstamp 0150a597-9ca4-4081-88d2-6ff7d09ea1a2))
(fp_line (start -10.5 25.5) (end -10.5 -25.5) (layer "F.Fab") (width 0.12) (tstamp 12a61f3b-c9a1-475a-b95a-228fd98d7166))
(fp_line (start 10.5 25.5) (end -10.5 25.5) (layer "F.Fab") (width 0.12) (tstamp a294cc83-b7a3-4d8e-8390-ecf01eed960d))
(fp_line (start -10.5 -25.5) (end 10.5 -25.5) (layer "F.Fab") (width 0.12) (tstamp e22a8115-21c4-4079-b548-13d39057d641))
(fp_line (start 10.5 -25.5) (end 10.5 25.5) (layer "F.Fab") (width 0.12) (tstamp f467e92c-cfec-45d6-9135-43909aa23e31))
(pad "" np_thru_hole oval (at -2.425 -20.97) (size 1.5 1.5) (drill 1.5) (layers *.Cu *.Mask) (tstamp 196b4d12-8e07-4703-8fe8-4da98394f0b6))
(pad "" np_thru_hole oval (at 2.725 -24) (size 1.8 1.8) (drill 1.8) (layers *.Cu *.Mask) (tstamp c034b99a-2648-448e-baa6-0eff97e95a31))
(pad "" np_thru_hole oval (at 2.425 -20.97) (size 1.5 1.5) (drill 1.5) (layers *.Cu *.Mask) (tstamp d076536f-da37-4d8c-8f35-e9649c792465))
(pad "" np_thru_hole oval (at -2.725 -24) (size 1.8 1.8) (drill 1.8) (layers *.Cu *.Mask) (tstamp f778b720-4dba-4694-97cb-af3248f3da0b))
(pad "1" thru_hole oval (at -8.89 -24.13) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 22 "unconnected-(U1-Pad1)") (pinfunction "GPIO0") (pintype "bidirectional") (tstamp 00285115-56ef-45e8-8528-f99553a17b5e))
(pad "1" smd rect (at -8.89 -24.13) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "unconnected-(U1-Pad1)") (pinfunction "GPIO0") (pintype "bidirectional") (tstamp 679644e3-5194-49c9-bc2f-670fb057cc6d))
(pad "2" thru_hole oval (at -8.89 -21.59) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 24 "unconnected-(U1-Pad2)") (pinfunction "GPIO1") (pintype "bidirectional") (tstamp 942bb509-0865-4ee6-a623-811abdc04cfe))
(pad "2" smd rect (at -8.89 -21.59) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "unconnected-(U1-Pad2)") (pinfunction "GPIO1") (pintype "bidirectional") (tstamp f3472f66-06f8-4d1d-8970-a78970a3d87c))
(pad "3" smd rect (at -8.89 -19.05) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 0787ede9-95c1-4b0a-9bc2-b45cb9e49f9b))
(pad "3" thru_hole rect (at -8.89 -19.05) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 33 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 57184437-fcd7-4f17-b91e-bb6262dffb85))
(pad "4" thru_hole oval (at -8.89 -16.51) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 5 "Net-(J1-Pad4)") (pinfunction "GPIO2") (pintype "bidirectional") (tstamp 8cbb6c57-e33d-447e-ba35-edd9102428e5))
(pad "4" smd rect (at -8.89 -16.51) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(J1-Pad4)") (pinfunction "GPIO2") (pintype "bidirectional") (tstamp ce33ad8a-c2e6-426e-a4ca-cd2e064f3711))
(pad "5" thru_hole oval (at -8.89 -13.97) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 34 "Net-(J1-Pad6)") (pinfunction "GPIO3") (pintype "bidirectional") (tstamp 0868def6-5403-4cbf-93a7-6389dbc95ce3))
(pad "5" smd rect (at -8.89 -13.97) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "Net-(J1-Pad6)") (pinfunction "GPIO3") (pintype "bidirectional") (tstamp 79e03ae3-04c1-4136-9d11-edbf8450c5e6))
(pad "6" thru_hole oval (at -8.89 -11.43) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 3 "Net-(J1-Pad2)") (pinfunction "GPIO4") (pintype "bidirectional") (tstamp 8610c623-6e26-45d0-8346-2d01e6f540e2))
(pad "6" smd rect (at -8.89 -11.43) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(J1-Pad2)") (pinfunction "GPIO4") (pintype "bidirectional") (tstamp baa88fca-098c-4fc0-9b12-9583d4b93589))
(pad "7" thru_hole oval (at -8.89 -8.89) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 4 "Net-(J1-Pad3)") (pinfunction "GPIO5") (pintype "bidirectional") (tstamp 946097a6-5de6-41e1-a2a9-3fde8f1e91e9))
(pad "7" smd rect (at -8.89 -8.89) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(J1-Pad3)") (pinfunction "GPIO5") (pintype "bidirectional") (tstamp e91f253b-96a6-44ee-96e3-20b404cccf96))
(pad "8" smd rect (at -8.89 -6.35) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "GND") (pinfunction "GND") (pintype "power_in") (tstamp ce74344b-32a5-45f1-b0fc-6903c09e3eed))
(pad "8" thru_hole rect (at -8.89 -6.35) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 33 "GND") (pinfunction "GND") (pintype "power_in") (tstamp d7070859-dedb-4e15-8c3c-a55445f4810e))
(pad "9" thru_hole oval (at -8.89 -3.81) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 6 "unconnected-(U1-Pad9)") (pinfunction "GPIO6") (pintype "bidirectional") (tstamp b7a2ae26-da33-4e81-a563-708d7b6972d1))
(pad "9" smd rect (at -8.89 -3.81) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "unconnected-(U1-Pad9)") (pinfunction "GPIO6") (pintype "bidirectional") (tstamp c5449947-3eb6-438a-a259-9adb710c7987))
(pad "10" smd rect (at -8.89 -1.27) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "unconnected-(U1-Pad10)") (pinfunction "GPIO7") (pintype "bidirectional") (tstamp 3c5f9d0f-421a-4a95-82bb-a1d8b812a4c6))
(pad "10" thru_hole oval (at -8.89 -1.27) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 7 "unconnected-(U1-Pad10)") (pinfunction "GPIO7") (pintype "bidirectional") (tstamp af8379f6-aca4-4c68-88d2-144d961c43cd))
(pad "11" smd rect (at -8.89 1.27) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "unconnected-(U1-Pad11)") (pinfunction "GPIO8") (pintype "bidirectional") (tstamp 2ef496d7-ab49-4982-9d58-a0c76b781f8d))
(pad "11" thru_hole oval (at -8.89 1.27) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 8 "unconnected-(U1-Pad11)") (pinfunction "GPIO8") (pintype "bidirectional") (tstamp d0d3b33b-5670-48ba-8a91-62efcaa81f41))
(pad "12" smd rect (at -8.89 3.81) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "unconnected-(U1-Pad12)") (pinfunction "GPIO9") (pintype "bidirectional") (tstamp 39682296-4e33-40ef-bab8-a76b04d018ef))
(pad "12" thru_hole oval (at -8.89 3.81) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 9 "unconnected-(U1-Pad12)") (pinfunction "GPIO9") (pintype "bidirectional") (tstamp c50bf281-2b66-459e-a9e3-1a9500cd5eb0))
(pad "13" thru_hole rect (at -8.89 6.35) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 33 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 6558fe1b-a3c8-432c-ad80-f285a01e900f))
(pad "13" smd rect (at -8.89 6.35) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 953d45d5-e11a-4df6-a8ea-bd278753d364))
(pad "14" thru_hole oval (at -8.89 8.89) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 10 "unconnected-(U1-Pad14)") (pinfunction "GPIO10") (pintype "bidirectional") (tstamp 5492858d-1b8c-4f1a-b061-e929f40eed8a))
(pad "14" smd rect (at -8.89 8.89) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "unconnected-(U1-Pad14)") (pinfunction "GPIO10") (pintype "bidirectional") (tstamp a9633d26-daae-48a7-b5dd-6c0f294c3c20))
(pad "15" smd rect (at -8.89 11.43) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "unconnected-(U1-Pad15)") (pinfunction "GPIO11") (pintype "bidirectional") (tstamp 14855801-8f44-4f5e-ab81-ed42d847ed77))
(pad "15" thru_hole oval (at -8.89 11.43) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 11 "unconnected-(U1-Pad15)") (pinfunction "GPIO11") (pintype "bidirectional") (tstamp c081b96e-0b0f-4ef0-bf28-677d9edbaf46))
(pad "16" smd rect (at -8.89 13.97) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "unconnected-(U1-Pad16)") (pinfunction "GPIO12") (pintype "bidirectional") (tstamp 4055b357-393c-467b-b2cc-71034cd4083f))
(pad "16" thru_hole oval (at -8.89 13.97) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 12 "unconnected-(U1-Pad16)") (pinfunction "GPIO12") (pintype "bidirectional") (tstamp f05569b3-6143-4fe4-a78f-67d920e91f17))
(pad "17" thru_hole oval (at -8.89 16.51) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 13 "unconnected-(U1-Pad17)") (pinfunction "GPIO13") (pintype "bidirectional") (tstamp 51226bfd-6ec6-404b-9079-e56e2cba4e37))
(pad "17" smd rect (at -8.89 16.51) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "unconnected-(U1-Pad17)") (pinfunction "GPIO13") (pintype "bidirectional") (tstamp e4c5aa6b-a75e-4fd0-97fb-9ccf912712e8))
(pad "18" thru_hole rect (at -8.89 19.05) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 33 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 13fd50f6-1d47-4741-8619-6c6f05880696))
(pad "18" smd rect (at -8.89 19.05) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "GND") (pinfunction "GND") (pintype "power_in") (tstamp dde91a35-c57f-471e-9e48-d233081da16f))
(pad "19" smd rect (at -8.89 21.59) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "unconnected-(U1-Pad19)") (pinfunction "GPIO14") (pintype "bidirectional") (tstamp 546148dc-8a5c-4178-ace4-1d6889891417))
(pad "19" thru_hole oval (at -8.89 21.59) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 14 "unconnected-(U1-Pad19)") (pinfunction "GPIO14") (pintype "bidirectional") (tstamp 5b2587c1-1662-49eb-8a7b-bef16ed23d9c))
(pad "20" thru_hole oval (at -8.89 24.13) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 15 "unconnected-(U1-Pad20)") (pinfunction "GPIO15") (pintype "bidirectional") (tstamp 131f8ef3-4ce9-4a79-b966-2078febcf498))
(pad "20" smd rect (at -8.89 24.13) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "unconnected-(U1-Pad20)") (pinfunction "GPIO15") (pintype "bidirectional") (tstamp fc2d10b5-de6a-4e08-b5c4-9b7dbfc09f9e))
(pad "21" thru_hole oval (at 8.89 24.13) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 16 "unconnected-(U1-Pad21)") (pinfunction "GPIO16") (pintype "bidirectional") (tstamp dca49b5d-8373-458c-a20a-219df7795251))
(pad "21" smd rect (at 8.89 24.13) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "unconnected-(U1-Pad21)") (pinfunction "GPIO16") (pintype "bidirectional") (tstamp e96348a7-aacd-4721-a07b-c736626505a1))
(pad "22" thru_hole oval (at 8.89 21.59) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 17 "unconnected-(U1-Pad22)") (pinfunction "GPIO17") (pintype "bidirectional") (tstamp 169c3de2-c7c8-4610-b91b-a9f8fbbda482))
(pad "22" smd rect (at 8.89 21.59) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "unconnected-(U1-Pad22)") (pinfunction "GPIO17") (pintype "bidirectional") (tstamp e396078f-402b-4c5c-b573-d0f4f5cbadf5))
(pad "23" smd rect (at 8.89 19.05) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 590dbea1-342c-423f-9920-ea67e378a0c1))
(pad "23" thru_hole rect (at 8.89 19.05) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 33 "GND") (pinfunction "GND") (pintype "power_in") (tstamp eecd9c71-0368-41a9-ace3-bd018cdcaf71))
(pad "24" thru_hole oval (at 8.89 16.51) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 18 "unconnected-(U1-Pad24)") (pinfunction "GPIO18") (pintype "bidirectional") (tstamp a84167a5-3fcc-45b7-9498-b172a3729496))
(pad "24" smd rect (at 8.89 16.51) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "unconnected-(U1-Pad24)") (pinfunction "GPIO18") (pintype "bidirectional") (tstamp b68fb755-a6f4-4cdc-81fa-00c58dff8c81))
(pad "25" thru_hole oval (at 8.89 13.97) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 19 "unconnected-(U1-Pad25)") (pinfunction "GPIO19") (pintype "bidirectional") (tstamp 94b6b5f0-f01b-4ffa-a5fa-84fa522d0ba9))
(pad "25" smd rect (at 8.89 13.97) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "unconnected-(U1-Pad25)") (pinfunction "GPIO19") (pintype "bidirectional") (tstamp da90ff7d-1c83-49a0-ab85-12713556e74c))
(pad "26" smd rect (at 8.89 11.43) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "unconnected-(U1-Pad26)") (pinfunction "GPIO20") (pintype "bidirectional") (tstamp 983433cc-102b-4b43-a9ae-d81e4e410214))
(pad "26" thru_hole oval (at 8.89 11.43) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 20 "unconnected-(U1-Pad26)") (pinfunction "GPIO20") (pintype "bidirectional") (tstamp d8f0cdd3-1d40-4791-9fb1-0cbfb6888f07))
(pad "27" thru_hole oval (at 8.89 8.89) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 21 "unconnected-(U1-Pad27)") (pinfunction "GPIO21") (pintype "bidirectional") (tstamp 2efb3996-67b6-47f4-868c-904d2b56b7f8))
(pad "27" smd rect (at 8.89 8.89) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "unconnected-(U1-Pad27)") (pinfunction "GPIO21") (pintype "bidirectional") (tstamp ff4bc895-62b8-4a28-a60d-2b935f5d17d0))
(pad "28" thru_hole rect (at 8.89 6.35) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 33 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 23b8c23a-2853-40c3-a53a-30fd914fa018))
(pad "28" smd rect (at 8.89 6.35) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 354cdb34-ab34-41da-ae5f-9e0e75256366))
(pad "29" thru_hole oval (at 8.89 3.81) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 23 "unconnected-(U1-Pad29)") (pinfunction "GPIO22") (pintype "bidirectional") (tstamp 117f6fce-4f6e-4649-a84d-010b44e16fb7))
(pad "29" smd rect (at 8.89 3.81) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "unconnected-(U1-Pad29)") (pinfunction "GPIO22") (pintype "bidirectional") (tstamp ec99da8a-ed80-4172-9b0e-c3433a0641fd))
(pad "30" thru_hole oval (at 8.89 1.27) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 37 "Net-(SW1-Pad1)") (pinfunction "RUN") (pintype "input") (tstamp 2362ab0b-f0e6-45cd-ae55-35e0b04223a0))
(pad "30" smd rect (at 8.89 1.27) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "Net-(SW1-Pad1)") (pinfunction "RUN") (pintype "input") (tstamp 3c6e5582-ed52-4848-b93d-0595f2132de1))
(pad "31" smd rect (at 8.89 -1.27) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "unconnected-(U1-Pad31)") (pinfunction "GPIO26_ADC0") (pintype "bidirectional") (tstamp 322ce47b-b261-4cc9-9ac9-b731fc171ab9))
(pad "31" thru_hole oval (at 8.89 -1.27) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 25 "unconnected-(U1-Pad31)") (pinfunction "GPIO26_ADC0") (pintype "bidirectional") (tstamp c8c138fb-3b8c-48e7-8eed-12e7b3c121de))
(pad "32" smd rect (at 8.89 -3.81) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "unconnected-(U1-Pad32)") (pinfunction "GPIO27_ADC1") (pintype "bidirectional") (tstamp 033cb8a0-f785-4a7a-9124-745e0c035c18))
(pad "32" thru_hole oval (at 8.89 -3.81) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 26 "unconnected-(U1-Pad32)") (pinfunction "GPIO27_ADC1") (pintype "bidirectional") (tstamp 89dba8ed-6d52-4248-8ebf-04e6c6c88d41))
(pad "33" thru_hole rect (at 8.89 -6.35) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 33 "GND") (pinfunction "AGND") (pintype "power_in") (tstamp ba7b530d-9be0-4def-8454-8e16aafbce41))
(pad "33" smd rect (at 8.89 -6.35) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "GND") (pinfunction "AGND") (pintype "power_in") (tstamp c02f163d-7ad2-44f1-a24d-9a554c371384))
(pad "34" thru_hole oval (at 8.89 -8.89) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 27 "unconnected-(U1-Pad34)") (pinfunction "GPIO28_ADC2") (pintype "bidirectional") (tstamp a4ad2a42-7fbf-4229-aa42-a4b8c66f5d7d))
(pad "34" smd rect (at 8.89 -8.89) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "unconnected-(U1-Pad34)") (pinfunction "GPIO28_ADC2") (pintype "bidirectional") (tstamp c6a9b2da-bd30-4983-ad00-dc03e640a581))
(pad "35" smd rect (at 8.89 -11.43) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "unconnected-(U1-Pad35)") (pinfunction "ADC_VREF") (pintype "power_in") (tstamp d32aa816-7aa3-40fe-b15e-acdc5bba6dc2))
(pad "35" thru_hole oval (at 8.89 -11.43) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 28 "unconnected-(U1-Pad35)") (pinfunction "ADC_VREF") (pintype "power_in") (tstamp f521aa2a-70ea-4bfa-a5f8-9973ac3bae4d))
(pad "36" thru_hole oval (at 8.89 -13.97) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 36 "Net-(J2-Pad3)") (pinfunction "3V3") (pintype "power_in") (tstamp c841b0f8-68b3-4b16-9549-1726de9d39d1))
(pad "36" smd rect (at 8.89 -13.97) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 36 "Net-(J2-Pad3)") (pinfunction "3V3") (pintype "power_in") (tstamp f290a548-1f9c-4f0a-9465-388cd960e870))
(pad "37" smd rect (at 8.89 -16.51) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "unconnected-(U1-Pad37)") (pinfunction "3V3_EN") (pintype "input") (tstamp 05a14597-8155-4f2f-a215-de004c39f54d))
(pad "37" thru_hole oval (at 8.89 -16.51) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 29 "unconnected-(U1-Pad37)") (pinfunction "3V3_EN") (pintype "input") (tstamp 35194ade-81f3-4792-b620-097d0f72cd7b))
(pad "38" thru_hole rect (at 8.89 -19.05) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 33 "GND") (pinfunction "GND") (pintype "bidirectional") (tstamp 05f67689-b87d-4a73-ba19-8cfc59729f07))
(pad "38" smd rect (at 8.89 -19.05) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "GND") (pinfunction "GND") (pintype "bidirectional") (tstamp ba684d7c-206a-4c98-b824-40bb57bcd818))
(pad "39" smd rect (at 8.89 -21.59) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "Net-(J2-Pad1)") (pinfunction "VSYS") (pintype "power_in") (tstamp b146471c-fbe5-47f5-9d13-b2781f1eec8e))
(pad "39" thru_hole oval (at 8.89 -21.59) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 35 "Net-(J2-Pad1)") (pinfunction "VSYS") (pintype "power_in") (tstamp bbb56580-aa81-45cb-b1b7-ba0c984ed065))
(pad "40" thru_hole oval (at 8.89 -24.13) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 30 "unconnected-(U1-Pad40)") (pinfunction "VBUS") (pintype "power_in") (tstamp 1c6e452a-3519-4b92-98f5-9c74f0717054))
(pad "40" smd rect (at 8.89 -24.13) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "unconnected-(U1-Pad40)") (pinfunction "VBUS") (pintype "power_in") (tstamp 2e44eb9d-5214-4281-b589-6f1d5d809dae))
(pad "41" smd rect (at -2.54 23.9 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "unconnected-(U1-Pad41)") (pinfunction "SWCLK") (pintype "input") (tstamp 716e5416-b330-423a-811f-046a4ee64f5e))
(pad "41" thru_hole oval (at -2.54 23.9) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 31 "unconnected-(U1-Pad41)") (pinfunction "SWCLK") (pintype "input") (tstamp f55b2315-ffcf-45cb-b8d5-dd0439b81933))
(pad "42" thru_hole rect (at 0 23.9) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 33 "GND") (pinfunction "GND") (pintype "power_in") (tstamp ae93933d-bd7e-4401-b9d9-e5d7ebc1523c))
(pad "42" smd rect (at 0 23.9 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "GND") (pinfunction "GND") (pintype "power_in") (tstamp ff8c2871-7c9b-4de3-baec-30db09fd1a6f))
(pad "43" smd rect (at 2.54 23.9 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "unconnected-(U1-Pad43)") (pinfunction "SWDIO") (pintype "bidirectional") (tstamp 9d6f01bf-507b-4b70-82a7-182a04da9e3f))
(pad "43" thru_hole oval (at 2.54 23.9) (size 1.7 1.7) (drill 1.02) (layers *.Cu *.Mask)
(net 32 "unconnected-(U1-Pad43)") (pinfunction "SWDIO") (pintype "bidirectional") (tstamp 9e8cf55f-aa42-463b-a91a-de04527fe165))
(model "${KIPRJMOD}/casedesign/openmower_poweradapter v35.step"
(offset (xyz 130 83 1.5))
(scale (xyz 1 1 1))
(rotate (xyz -180 0 180))
)
(model "D:/Project/GitHub/OpenMowerPrivate/OpenMowerButtons/pcb/3D-step/Raspberry Pi Pico-R3.STEP"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Button_Switch_THT:SW_PUSH_6mm" (layer "F.Cu")
(tedit 5A02FE31) (tstamp a79adae6-7825-4656-937d-8a25c176ac81)
(at 113.59 118.11)
(descr "https://www.omron.com/ecb/products/pdf/en-b3f.pdf")
(tags "tact sw push 6mm")
(property "Sheetfile" "PICO probe holder.kicad_sch")
(property "Sheetname" "")
(path "/ffc0cc9b-8b8a-480f-8610-e64deac9ad98")
(attr through_hole)
(fp_text reference "SW1" (at 3.25 -2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f1c1588a-bad7-499d-bc75-8a32f59551f0)
)
(fp_text value "SW_Push" (at 3.75 6.7) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 27bcf69e-c2fb-4c6d-97ae-dcd404de3df2)
)
(fp_text user "${REFERENCE}" (at 3.25 2.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 93a1ebb2-8613-4541-9ede-5c044634fa83)
)
(fp_line (start 6.75 3) (end 6.75 1.5) (layer "F.SilkS") (width 0.12) (tstamp 80c0728b-c5e0-4910-953d-9f0018f063f7))
(fp_line (start 1 5.5) (end 5.5 5.5) (layer "F.SilkS") (width 0.12) (tstamp 972943dc-4ae1-4772-bbb6-964878c20d6c))
(fp_line (start 5.5 -1) (end 1 -1) (layer "F.SilkS") (width 0.12) (tstamp d78967ce-271e-4af0-a031-2b52c5e68047))
(fp_line (start -0.25 1.5) (end -0.25 3) (layer "F.SilkS") (width 0.12) (tstamp fa91a9f2-e45f-4027-b94c-54c6a633b1a2))
(fp_line (start -1.5 5.75) (end -1.5 6) (layer "F.CrtYd") (width 0.05) (tstamp 0e945137-5b38-4532-b2a3-6923bcf2e0f1))
(fp_line (start -1.5 5.75) (end -1.5 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 188a25fb-9960-4cb5-a918-73f54f597628))
(fp_line (start -1.5 -1.25) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 60ceae1b-3277-453b-a295-c2a62391bb22))
(fp_line (start 7.75 6) (end -1.25 6) (layer "F.CrtYd") (width 0.05) (tstamp 6bef2a52-66e5-4be4-a202-7c3476880dce))
(fp_line (start 8 -1.25) (end 8 5.75) (layer "F.CrtYd") (width 0.05) (tstamp 7a34b0ed-6efb-4e81-8251-d6e8b24ee198))
(fp_line (start -1.5 -1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 7c555a69-a3a0-4883-9618-7f3d37b5a5c1))
(fp_line (start 7.75 6) (end 8 6) (layer "F.CrtYd") (width 0.05) (tstamp b2ba5978-17e7-492e-a5ce-5a55ae5ccb0e))
(fp_line (start 8 6) (end 8 5.75) (layer "F.CrtYd") (width 0.05) (tstamp b3c8a494-8a2f-45f9-bb75-83f3ad163b3d))
(fp_line (start -1.25 -1.5) (end 7.75 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp d29895b6-cf0e-4b19-b768-f06b89158fd8))
(fp_line (start -1.5 6) (end -1.25 6) (layer "F.CrtYd") (width 0.05) (tstamp e19c4d4a-0e5b-476d-a9d6-ed93bc08f3ba))
(fp_line (start 7.75 -1.5) (end 8 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp e45df7bc-9661-4b1c-8326-9d49751cbc24))
(fp_line (start 8 -1.5) (end 8 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp f2928b67-66d1-4200-828b-18703c8741c0))
(fp_line (start 0.25 5.25) (end 0.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp 1fa8b2c3-c6a9-4671-9b1c-a6e851b9177b))
(fp_line (start 3.25 -0.75) (end 6.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp 4acd43e3-ae52-4b7b-ba7d-c76128463229))
(fp_line (start 0.25 -0.75) (end 3.25 -0.75) (layer "F.Fab") (width 0.1) (tstamp 5c723b14-63dc-43ba-89f4-91ca7a39cd65))
(fp_line (start 6.25 5.25) (end 0.25 5.25) (layer "F.Fab") (width 0.1) (tstamp 5e977a5e-6705-40d0-bba4-ee50f5690c6e))
(fp_line (start 6.25 -0.75) (end 6.25 5.25) (layer "F.Fab") (width 0.1) (tstamp ea5fb5b9-1997-4431-a49d-9d5aa97e9f23))
(fp_circle (center 3.25 2.25) (end 1.25 2.5) (layer "F.Fab") (width 0.1) (fill none) (tstamp b31720cf-8422-45ff-ae80-b341447ca465))
(pad "1" thru_hole circle (at 6.5 0 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 37 "Net-(SW1-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 8c2aa980-414f-4696-b751-22b16428c9a8))
(pad "1" thru_hole circle (at 0 0 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 37 "Net-(SW1-Pad1)") (pinfunction "1") (pintype "passive") (tstamp f24c5aae-d799-4d3d-b8fc-0efaf35c671b))
(pad "2" thru_hole circle (at 0 4.5 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 33 "GND") (pinfunction "2") (pintype "passive") (tstamp 180a36a6-7e8f-41f4-817d-3344fcc21ff9))
(pad "2" thru_hole circle (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 33 "GND") (pinfunction "2") (pintype "passive") (tstamp 27a8f1cd-51b7-4d74-a405-fbd34d19a15f))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp adb37b54-5810-491f-b0ea-cb71869e980c)
(at 146.055 119.375 -90)
(descr "Through hole straight pin header, 2x02, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x02 2.54mm double row")
(property "Sheetfile" "PICO probe holder.kicad_sch")
(property "Sheetname" "")
(path "/61d50110-9a17-47b4-b3ec-2e2781c71ef0")
(attr through_hole)
(fp_text reference "J2" (at 1.27 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f6bf78ef-9f44-44e9-9748-ea2a02bfabd8)
)
(fp_text value "Conn_02x02_Odd_Even" (at 1.27 4.87 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd726e54-9ad2-4f33-b601-f63193b2c5c0)
)
(fp_text user "${REFERENCE}" (at 1.27 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c867bf18-09e9-40c0-a022-b2ab964d3f76)
)
(fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 52d3150b-d7a2-482c-b33e-bb8f13422d40))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 699dcc90-dfaa-4308-9e1a-66e1dcc0c299))
(fp_line (start 3.87 -1.33) (end 3.87 3.87) (layer "F.SilkS") (width 0.12) (tstamp 8e277c5e-f1f3-491f-ab7b-e652aaf0cab7))
(fp_line (start -1.33 1.27) (end 1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 9235bfc6-eb19-46c0-b7ea-a681d675f92f))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp c0ecc08f-e367-427d-b298-5ef434afdfa6))
(fp_line (start -1.33 3.87) (end 3.87 3.87) (layer "F.SilkS") (width 0.12) (tstamp c4aa4805-7399-4fde-823c-06d2bbafea22))
(fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d4060a78-5c9d-4ce9-a237-02bbc00b3567))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d9242db1-8ba5-4f36-bd0a-bacff05e3b5c))
(fp_line (start -1.8 4.35) (end 4.35 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 1632f9f3-6813-46d4-8a6f-4ff92a8cf9b4))
(fp_line (start 4.35 4.35) (end 4.35 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp a8487dd4-4b77-4e0a-9fd8-5eb2b980136a))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp d1b80d04-5d30-48b5-965d-df6cd6cca3b6))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp e7d44d5a-d1d0-4f33-bcdb-bc875227cae7))
(fp_line (start 3.81 -1.27) (end 3.81 3.81) (layer "F.Fab") (width 0.1) (tstamp 83b48837-375c-4b52-b3d6-cdca4764d72d))
(fp_line (start -1.27 3.81) (end -1.27 0) (layer "F.Fab") (width 0.1) (tstamp 8bc77677-fa2c-4929-a330-cd22b05bbea3))
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp af64da56-efe1-44d4-86b8-bb40bc14539a))
(fp_line (start -1.27 0) (end 0 -1.27) (layer "F.Fab") (width 0.1) (tstamp cdd13555-8171-4f49-9328-0c4b22223748))
(fp_line (start 3.81 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp db0e7e03-7b31-454f-a7a8-b83cb6f66fc6))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 35 "Net-(J2-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 5ec69b9e-dfb1-41f1-b2db-685498f4caeb))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "Net-(J1-Pad1)") (pinfunction "Pin_2") (pintype "passive") (tstamp 92bbff10-6520-46dd-b58b-ec6cf2f9d04a))
(pad "3" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 36 "Net-(J2-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp 9b3a8eac-76fa-4e64-99dd-6944d386a165))
(pad "4" thru_hole oval (at 2.54 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "Net-(J1-Pad7)") (pinfunction "Pin_4") (pintype "passive") (tstamp 96a99c70-fa1a-4dbb-8e8d-9d1f278cadd9))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_line (start 111.76 50.8) (end 123.19 50.8) (layer "Edge.Cuts") (width 0.1) (tstamp 281fd3ba-f379-4270-93fd-095a7b200461))
(gr_circle (center 146.05 139.7) (end 147.8 139.7) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp 332195eb-1965-46cf-be50-0a5b3195190d))
(gr_line (start 151.13 140.97) (end 151.13 54.61) (layer "Edge.Cuts") (width 0.1) (tstamp 3aa405ac-d4bb-4c24-9d29-928b6888466e))
(gr_line (start 135.89 57.912) (end 135.89 50.8) (layer "Edge.Cuts") (width 0.1) (tstamp 4a724030-d669-414b-a7ff-7fa548fedcb0))
(gr_circle (center 113.03 139.7) (end 114.78 139.7) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp 6835803f-548a-4e16-b863-27b911ef5d61))
(gr_arc (start 107.95 54.61) (mid 109.065923 51.915923) (end 111.76 50.8) (layer "Edge.Cuts") (width 0.2) (tstamp 7bf4b767-ff56-4cba-af0e-f111782ec127))
(gr_circle (center 113.03 55.88) (end 114.78 55.88) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp 8d701298-01ab-4d1d-b9d2-272eb10677c8))
(gr_arc (start 147.32 50.8) (mid 150.014077 51.915923) (end 151.13 54.61) (layer "Edge.Cuts") (width 0.2) (tstamp 90d228ac-5ec9-4302-b393-9e4058ef8745))
(gr_arc (start 111.76 144.78) (mid 109.065923 143.664077) (end 107.95 140.97) (layer "Edge.Cuts") (width 0.2) (tstamp 972d1dd0-6bd0-4f7d-a961-e0d0c99ad948))
(gr_circle (center 146.05 55.88) (end 147.8 55.88) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp a483fce1-27d4-4bac-8bc2-5c7c15aeaa8c))
(gr_line (start 123.19 50.8) (end 123.19 57.912) (layer "Edge.Cuts") (width 0.1) (tstamp b05c41f7-50e4-4be4-ab67-3c7ffa450fd9))
(gr_line (start 135.89 50.8) (end 147.32 50.8) (layer "Edge.Cuts") (width 0.1) (tstamp b2fd4e05-fcfd-404f-bedf-6477e76f5873))
(gr_arc (start 151.13 140.97) (mid 150.014077 143.664077) (end 147.32 144.78) (layer "Edge.Cuts") (width 0.2) (tstamp d250ce07-2cae-4efd-a4fd-02b1bd04a321))
(gr_line (start 111.76 144.78) (end 147.32 144.78) (layer "Edge.Cuts") (width 0.1) (tstamp db8d9adb-c0be-4d33-89a8-203607ad24a7))
(gr_line (start 107.95 54.61) (end 107.95 140.97) (layer "Edge.Cuts") (width 0.1) (tstamp dde39aca-e054-4065-a90c-6efaf131d96a))
(gr_line (start 123.19 57.912) (end 135.89 57.912) (layer "Edge.Cuts") (width 0.1) (tstamp f1c921fe-6ced-409b-abf1-0aef174ffaa5))
(gr_text "PICO probeholder Board v1.1.0\nLicense CC BY-NC-SA 4.0\nhttps://github.com/ene9ba/PicoProbeHolder" (at 112.268 95.504 270) (layer "B.SilkS") (tstamp 2ac0753f-774f-4fa3-ad6a-decc41c9388f)
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
)
(gr_text "RX" (at 124.46 142.24 90) (layer "F.SilkS") (tstamp 29baf9bd-92b3-415b-9119-ff026fa09137)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "+3.3V" (at 143.256 115.316 90) (layer "F.SilkS") (tstamp 430aa564-50d3-45a0-8e54-e98d203ddaff)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "TX" (at 127 142.748 90) (layer "F.SilkS") (tstamp 49f247af-a617-47aa-bc92-7cc44f7d1d6f)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "RESET" (at 116.84 126.492) (layer "F.SilkS") (tstamp 51e4ff87-2402-4e9a-887a-762c7a68c685)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "GND" (at 132.08 140.97 90) (layer "F.SilkS") (tstamp 6a945844-954b-4f1f-85ea-d5ba2368c98c)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "SWDIO" (at 134.62 140.97 90) (layer "F.SilkS") (tstamp 8386736e-f24b-4c67-8de4-df56291d0c5c)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "SWCLK" (at 129.54 140.97 90) (layer "F.SilkS") (tstamp 97944657-3a35-476b-b3e3-3f64770fabcc)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "+5V" (at 146.304 115.824 90) (layer "F.SilkS") (tstamp ac8f9431-0cf1-42c2-a27f-f4b9fd9a82e4)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "+3.3 V" (at 137.16 140.97 90) (layer "F.SilkS") (tstamp cd0b716f-713e-4863-b46c-2f001b1326d0)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "+5 V" (at 121.92 142.24 90) (layer "F.SilkS") (tstamp cfd454c1-6b94-406d-b5ed-79a44b108178)
(effects (font (size 1 1) (thickness 0.15)))
)
(segment (start 122.04 133.35) (end 122.04 128.39) (width 0.6) (layer "F.Cu") (net 1) (tstamp 72aa690a-361e-45ad-a0f2-a98a3b82fc1b))
(segment (start 146.05 128.27) (end 146.055 128.265) (width 0.6) (layer "F.Cu") (net 1) (tstamp 9bfd447b-c857-4d3e-96e4-358d21be68da))
(segment (start 146.055 128.265) (end 146.055 121.915) (width 0.6) (layer "F.Cu") (net 1) (tstamp a7e01984-becb-47fd-9776-c16781a9b260))
(segment (start 122.04 128.39) (end 122.16 128.27) (width 0.6) (layer "F.Cu") (net 1) (tstamp cf9256c4-299d-456e-9ce9-1a93182ee58f))
(segment (start 122.16 128.27) (end 146.05 128.27) (width 0.6) (layer "F.Cu") (net 1) (tstamp dda17741-4a7c-453f-97a6-a95fdc64e71b))
(segment (start 143.515 121.915) (end 143.515 133.345) (width 0.6) (layer "B.Cu") (net 2) (tstamp 9fcc2e00-aa04-4605-a3e7-55f48a90eb84))
(segment (start 143.515 133.345) (end 143.51 133.35) (width 0.6) (layer "B.Cu") (net 2) (tstamp a4774177-d9c2-4539-9b5b-a880e6cfa704))
(segment (start 137.04 133.35) (end 143.51 133.35) (width 0.6) (layer "B.Cu") (net 2) (tstamp f7f42e54-e9cb-4e82-906e-cb97f6856d76))
(segment (start 122.86096 131.67096) (end 122.86096 74.69096) (width 0.6) (layer "B.Cu") (net 3) (tstamp 16f523b6-dad5-472d-9057-914491a71dc9))
(segment (start 122.86096 74.69096) (end 120.56 72.39) (width 0.6) (layer "B.Cu") (net 3) (tstamp 9e4f0a1b-805b-4cd4-82f7-f07c3859366d))
(segment (start 124.54 133.35) (end 122.86096 131.67096) (width 0.6) (layer "B.Cu") (net 3) (tstamp e18c909b-a410-4f1c-8f8a-13709d355c82))
(segment (start 120.64 75.01) (end 120.56 74.93) (width 0.6) (layer "F.Cu") (net 4) (tstamp 29b77455-acfe-4b51-abba-c9667cb06868))
(segment (start 123.8 75.01) (end 120.64 75.01) (width 0.6) (layer "F.Cu") (net 4) (tstamp 5176e35b-00e2-4c1f-bd94-b28c84824a06))
(via (at 123.8 75.01) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 4) (tstamp 273ae405-5726-4c19-8839-f2323f07ae1c))
(segment (start 127.04 133.35) (end 124.46 130.77) (width 0.6) (layer "B.Cu") (net 4) (tstamp 82e195c8-e1d5-4f9d-b20d-d0da76c4ba1b))
(segment (start 124.46 130.77) (end 124.46 75.67) (width 0.6) (layer "B.Cu") (net 4) (tstamp a95c8d53-d1ad-4ae6-b361-04f438f9beb4))
(segment (start 124.46 75.67) (end 123.8 75.01) (width 0.6) (layer "B.Cu") (net 4) (tstamp ab6957bd-2caa-43ca-8e2d-4d473b7ec364))
(segment (start 125.32 72.07) (end 120.56 67.31) (width 0.6) (layer "B.Cu") (net 5) (tstamp cb66a7fc-aee1-412d-beac-505570604fad))
(segment (start 129.54 133.35) (end 129.54 118.11) (width 0.6) (layer "B.Cu") (net 5) (tstamp d8160bda-07f6-4872-8981-807a23f49eeb))
(segment (start 125.32 113.89) (end 125.32 72.07) (width 0.6) (layer "B.Cu") (net 5) (tstamp e0744cbc-83ba-46f1-8689-c2b40a22ce5d))
(segment (start 129.54 118.11) (end 125.32 113.89) (width 0.6) (layer "B.Cu") (net 5) (tstamp efc75090-1805-44f2-973d-969cffd6c6a5))
(via (at 138.684 123.444) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 33) (tstamp 4450859e-badd-4571-a7cc-1e238308d618))
(via (at 129.032 81.28) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 33) (tstamp 5d06aaa0-9223-4ebc-93b3-4086c5f1e575))
(via (at 127 124.46) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 33) (tstamp 6001ec49-bdb3-4bf9-8e32-b28fcbacad99))
(via (at 123.444 72.136) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 33) (tstamp 7a0d2a0a-9c3b-4351-8f55-bb4acfaabd78))
(via (at 144.78 91.948) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 33) (tstamp a8196e86-5fe1-4fd7-91ef-6af3db2540a6))
(via (at 129.54 113.792) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 33) (tstamp fe505275-4f6d-49f5-873b-191f5970b7ab))
(segment (start 111.76 102.87) (end 110.49 104.14) (width 0.6) (layer "B.Cu") (net 33) (tstamp 03db6a60-3a23-4500-9815-cd8694ee550e))
(segment (start 113.59 122.61) (end 111.18 122.61) (width 0.6) (layer "B.Cu") (net 33) (tstamp 3f1a498d-7aef-42ac-be26-04011ed24be0))
(segment (start 129.45 107.72) (end 129.45 110.4) (width 0.6) (layer "B.Cu") (net 33) (tstamp 42253c70-aaf8-41a5-9764-fc39685f7e73))
(segment (start 111.18 122.61) (end 110.49 121.92) (width 0.6) (layer "B.Cu") (net 33) (tstamp 56e489d0-4d8c-4fc2-8f50-8b21f8088990))
(segment (start 113.59 122.61) (end 120.09 122.61) (width 0.6) (layer "B.Cu") (net 33) (tstamp 6ecb7fd7-50a2-477b-8fea-f4cbb1c40b08))
(segment (start 120.56 102.87) (end 111.76 102.87) (width 0.6) (layer "B.Cu") (net 33) (tstamp 7efaa434-f4e0-4743-a3b3-e619e743494d))
(segment (start 110.49 121.92) (end 110.49 104.14) (width 0.6) (layer "B.Cu") (net 33) (tstamp 8c05f35a-2c61-4116-9bc2-b5ccc8c1fc08))
(segment (start 120.56 69.85) (end 124.46 69.85) (width 0.6) (layer "F.Cu") (net 34) (tstamp 35053174-b3d1-48ed-857b-7a78e32e3532))
(via (at 124.46 69.85) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 34) (tstamp fbf59f1d-e913-42b8-a068-4b25568471a8))
(segment (start 134.54 133.35) (end 134.54 70.532) (width 0.6) (layer "B.Cu") (net 34) (tstamp 1a2fe06e-6fc0-4c51-b6c9-607f503f65c9))
(segment (start 133.858 69.85) (end 124.46 69.85) (width 0.6) (layer "B.Cu") (net 34) (tstamp 4488a4d6-92f7-41b1-9ca1-e6c8cd4c855f))
(segment (start 134.54 70.532) (end 133.858 69.85) (width 0.6) (layer "B.Cu") (net 34) (tstamp 50a769c0-09d8-49ee-89d7-72e62453acc5))
(segment (start 144.78 62.23) (end 146.055 63.505) (width 0.6) (layer "B.Cu") (net 35) (tstamp 12f80fb9-bc7a-4fdc-810d-1a4ae8996ed0))
(segment (start 138.34 62.23) (end 144.78 62.23) (width 0.6) (layer "B.Cu") (net 35) (tstamp c844da43-b383-4fd7-8a33-4cefaa316108))
(segment (start 146.055 63.505) (end 146.055 119.375) (width 0.6) (layer "B.Cu") (net 35) (tstamp f77ecab7-2c28-435d-aa64-3daa72d5e509))
(segment (start 138.34 69.85) (end 142.24 69.85) (width 0.6) (layer "B.Cu") (net 36) (tstamp 7ea4f2fd-9956-487e-b7a9-8c97d98e30b4))
(segment (start 143.515 71.125) (end 143.515 119.375) (width 0.6) (layer "B.Cu") (net 36) (tstamp cb3661a5-5176-4662-9390-29857ae7b231))
(segment (start 142.24 69.85) (end 143.515 71.125) (width 0.6) (layer "B.Cu") (net 36) (tstamp d371dbd1-2648-4e9a-b32b-aa5278c89f31))
(segment (start 135.89 118.11) (end 120.09 118.11) (width 0.6) (layer "F.Cu") (net 37) (tstamp 5209dc67-1258-47d8-bc14-808d2985fb1c))
(via (at 135.89 118.11) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 37) (tstamp 8a5a2821-748c-4a4b-bfa2-9296c7d4e7d7))
(segment (start 138.34 85.09) (end 137.16 85.09) (width 0.6) (layer "B.Cu") (net 37) (tstamp 03fdda30-577d-4ed2-bc26-da2a6a7d4899))
(segment (start 137.16 85.09) (end 135.89 86.36) (width 0.6) (layer "B.Cu") (net 37) (tstamp 5a8aed24-432f-464f-9c6a-d96a6d074b6a))
(segment (start 135.89 86.36) (end 135.89 118.11) (width 0.6) (layer "B.Cu") (net 37) (tstamp 6f3f9b78-ec78-4dc3-89af-28345d1d7062))
(segment (start 113.59 118.11) (end 120.09 118.11) (width 0.6) (layer "B.Cu") (net 37) (tstamp f7640648-6849-49e8-a902-61b24c7c7e94))
(zone (net 33) (net_name "GND") (layers F&B.Cu) (tstamp 815f818d-392e-4527-a571-0b7199826616) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 149.86 142.748)
(xy 109.22 142.748)
(xy 109.22 52.832)
(xy 149.352 52.324)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 149.293489 52.344744)
(xy 149.340657 52.397807)
(xy 149.352713 52.450887)
(xy 149.578869 92.706646)
(xy 149.859288 142.621292)
(xy 149.839669 142.689524)
(xy 149.786275 142.736318)
(xy 149.73329 142.748)
(xy 109.346 142.748)
(xy 109.277879 142.727998)
(xy 109.231386 142.674342)
(xy 109.22 142.622)
(xy 109.22 139.7)
(xy 110.767155 139.7)
(xy 110.767425 139.704119)
(xy 110.781291 139.915671)
(xy 110.786514 139.995361)
(xy 110.84426 140.285667)
(xy 110.845587 140.289576)
(xy 110.845588 140.28958)
(xy 110.916453 140.498342)
(xy 110.939404 140.565953)
(xy 110.981555 140.651427)
(xy 111.064661 140.819948)
(xy 111.070319 140.831422)
(xy 111.234764 141.077533)
(xy 111.237478 141.080627)
(xy 111.237482 141.080633)
(xy 111.427218 141.296984)
(xy 111.429927 141.300073)
(xy 111.433016 141.302782)
(xy 111.649367 141.492518)
(xy 111.649373 141.492522)
(xy 111.652467 141.495236)
(xy 111.898577 141.659681)
(xy 111.902276 141.661505)
(xy 111.902281 141.661508)
(xy 112.038426 141.728647)
(xy 112.164047 141.790596)
(xy 112.167952 141.791921)
(xy 112.167953 141.791922)
(xy 112.44042 141.884412)
(xy 112.440424 141.884413)
(xy 112.444333 141.88574)
(xy 112.448377 141.886544)
(xy 112.448383 141.886546)
(xy 112.7306 141.942683)
(xy 112.730606 141.942684)
(xy 112.734639 141.943486)
(xy 112.738744 141.943755)
(xy 112.738751 141.943756)
(xy 113.025881 141.962575)
(xy 113.03 141.962845)
(xy 113.034119 141.962575)
(xy 113.321249 141.943756)
(xy 113.321256 141.943755)
(xy 113.325361 141.943486)
(xy 113.329394 141.942684)
(xy 113.3294 141.942683)
(xy 113.611617 141.886546)
(xy 113.611623 141.886544)
(xy 113.615667 141.88574)
(xy 113.619576 141.884413)
(xy 113.61958 141.884412)
(xy 113.892047 141.791922)
(xy 113.892048 141.791921)
(xy 113.895953 141.790596)
(xy 114.021574 141.728647)
(xy 114.157719 141.661508)
(xy 114.157724 141.661505)
(xy 114.161423 141.659681)
(xy 114.407533 141.495236)
(xy 114.410627 141.492522)
(xy 114.410633 141.492518)
(xy 114.626984 141.302782)
(xy 114.630073 141.300073)
(xy 114.632782 141.296984)
(xy 114.822518 141.080633)
(xy 114.822522 141.080627)
(xy 114.825236 141.077533)
(xy 114.989681 140.831422)
(xy 114.99534 140.819948)
(xy 115.078445 140.651427)
(xy 115.120596 140.565953)
(xy 115.143547 140.498342)
(xy 115.214412 140.28958)
(xy 115.214413 140.289576)
(xy 115.21574 140.285667)
(xy 115.273486 139.995361)
(xy 115.27871 139.915671)
(xy 115.292575 139.704119)
(xy 115.292845 139.7)
(xy 143.787155 139.7)
(xy 143.787425 139.704119)
(xy 143.801291 139.915671)
(xy 143.806514 139.995361)
(xy 143.86426 140.285667)
(xy 143.865587 140.289576)
(xy 143.865588 140.28958)
(xy 143.936453 140.498342)
(xy 143.959404 140.565953)
(xy 144.001555 140.651427)
(xy 144.084661 140.819948)
(xy 144.090319 140.831422)
(xy 144.254764 141.077533)
(xy 144.257478 141.080627)
(xy 144.257482 141.080633)