-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pico Drive.kicad_pcb
15367 lines (15326 loc) · 576 KB
/
Pico Drive.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" power)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "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)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(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 "GND")
(net 2 "/UART0_TX")
(net 3 "Net-(D1-A)")
(net 4 "unconnected-(U1-GPIO2-Pad4)")
(net 5 "unconnected-(U1-GPIO3-Pad5)")
(net 6 "unconnected-(U1-GPIO4-Pad6)")
(net 7 "unconnected-(U1-GPIO5-Pad7)")
(net 8 "unconnected-(U1-GPIO10-Pad14)")
(net 9 "unconnected-(U1-GPIO11-Pad15)")
(net 10 "unconnected-(U1-GPIO12-Pad16)")
(net 11 "unconnected-(U1-GPIO13-Pad17)")
(net 12 "unconnected-(U1-GPIO14-Pad19)")
(net 13 "unconnected-(U1-GPIO15-Pad20)")
(net 14 "unconnected-(U1-GPIO22-Pad29)")
(net 15 "unconnected-(U1-GPIO26_ADC0-Pad31)")
(net 16 "unconnected-(U1-GPIO27_ADC1-Pad32)")
(net 17 "unconnected-(U1-AGND-Pad33)")
(net 18 "/UART0_RX")
(net 19 "/I2C1_SDA")
(net 20 "/I2C1_SCL")
(net 21 "unconnected-(U1-GPIO8-Pad11)")
(net 22 "unconnected-(U1-GPIO9-Pad12)")
(net 23 "unconnected-(U1-GPIO28_ADC2-Pad34)")
(net 24 "unconnected-(U1-ADC_VREF-Pad35)")
(net 25 "+3V3")
(net 26 "+5V")
(net 27 "/~{CLK_OE}")
(net 28 "/~{RUN}")
(net 29 "/DATA_3V3")
(net 30 "/CLK_3V3")
(net 31 "/DATA_DIR")
(net 32 "/CLK_5V")
(net 33 "/DATA_5V")
(net 34 "Net-(R7-Pad2)")
(net 35 "/Vpp_EN")
(net 36 "/INSERT")
(net 37 "unconnected-(U1-3V3_EN-Pad37)")
(net 38 "unconnected-(U1-VSYS-Pad39)")
(net 39 "unconnected-(U1-SWCLK-Pad41)")
(net 40 "unconnected-(U1-GND-Pad42)")
(net 41 "unconnected-(U1-SWDIO-Pad43)")
(net 42 "/VDD")
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 09108cee-6907-4198-820d-c113a968cab7)
(at 68 54.75 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "Pico Drive.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/7be83503-16fa-42e7-a12c-36ab2249e4bd")
(attr smd)
(fp_text reference "R4" (at 0 -2 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cf5340b0-1501-420e-8eeb-cfd520dddab4)
)
(fp_text value "47k" (at 0 1.65 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 964c6d36-1ca4-4577-a27a-abf1a5239ddd)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp eaadc689-9c13-44c4-b318-d5eb3df62d4a)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ac4075a-84c5-4753-bf8a-41339c050205))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5760e603-1752-41a7-b717-efd222781f46))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 88374850-fbbe-4eb1-9ca3-c5fd633317fe))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2ac32b64-8d80-4076-8b97-ac9ba4a96871))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp db41c7e7-e5c4-44bd-8937-ad90a811cda2))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2a8eef9b-88e6-41b6-b64a-5ecf69181880))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f2695b95-c05a-414f-a603-6214e92b40ed))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 625d0c32-b555-40b9-81c8-c3195e8fe493))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 45d4b94d-0331-4856-9c2c-dedbe4338bce))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b16587d6-eead-4535-afa6-389558350854))
(pad "1" smd roundrect (at -1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 31 "/DATA_DIR") (pintype "passive") (tstamp 13551081-7759-423e-814c-dbfd9ce7c10e))
(pad "2" smd roundrect (at 1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 1 "GND") (pintype "passive") (tstamp 2289ad3a-960e-4adb-a593-6dca17911bab))
(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 "Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 241ce214-7dd8-4d08-982f-edbdcb209701)
(at 20.275 48.81625)
(descr "Through hole straight socket strip, 1x04, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x04 2.54mm single row")
(property "Sheetfile" "Pico Drive.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/69b2bf00-5a84-4293-8b76-150c238a544b")
(attr through_hole)
(fp_text reference "J6" (at 0 -2.77) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 78c6ee67-0fe6-4465-a32b-e26f11c29ba0)
)
(fp_text value "I2C" (at 0 10.39) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a8aab095-b28d-4058-bec9-5dfdfe4c7a3b)
)
(fp_text user "${REFERENCE}" (at 0 3.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2925c3ac-4111-4582-9c06-cb4f3785fc46)
)
(fp_line (start -1.33 1.27) (end -1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 670e41d2-8a88-4a1b-991d-782a338c8adf))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 48de6bdc-df96-4b14-9b8a-83547d488f37))
(fp_line (start -1.33 8.95) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6ec37b83-493b-4bb8-9bf7-421d6b447e00))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 376bcb41-6570-4f18-b6b4-2b97719c49d0))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aad82ea3-a756-4f5e-99c4-ca355c4f221f))
(fp_line (start 1.33 1.27) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 69252722-d54d-49f2-a3e8-baf30df6308d))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f91bbc14-9758-475b-8d12-d8576f02e18a))
(fp_line (start -1.8 9.4) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83799609-13af-4c55-a757-bb3490bf76fd))
(fp_line (start 1.75 -1.8) (end 1.75 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2bb102f5-4e3e-43b3-bf00-518cc634abc8))
(fp_line (start 1.75 9.4) (end -1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0430b9e4-117e-405f-9299-74d59beab0e9))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 927237e6-1baf-4561-b0d7-9acb4a2ae587))
(fp_line (start -1.27 8.89) (end -1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7137e422-79c3-4740-afb1-bf7ef8dc8102))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 34484f40-422a-47f8-8959-bb6eddc3e04a))
(fp_line (start 1.27 -0.635) (end 1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ac4b39b3-6b49-4672-a743-c0c4fc923d98))
(fp_line (start 1.27 8.89) (end -1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8737c5c0-27ca-44db-abd8-fda022ac7f6c))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 19 "/I2C1_SDA") (pinfunction "Pin_1") (pintype "passive") (tstamp 06144160-260c-4772-bceb-f615e681a781))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 20 "/I2C1_SCL") (pinfunction "Pin_2") (pintype "passive") (tstamp be594400-53a6-4f1b-82bb-2966fedb5468))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 25 "+3V3") (pinfunction "Pin_3") (pintype "passive") (tstamp 3359ae8a-88fe-4855-80cd-ee71dffdbe75))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp d1452f8a-3c43-4ab5-9209-61ee04a5f02e))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.2mm_M2" (layer "F.Cu")
(tstamp 269f93d5-a8d7-42f8-94b0-b339d6cda0b4)
(at 17.75 74.75 90)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(property "Sheetfile" "Pico Drive.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/36716edf-5df6-475e-8e31-d4be639e19ec")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0 -3.2 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9bedf3ce-4ecb-4aa7-a952-f5bfd4586113)
)
(fp_text value "MountingHole" (at 0 3.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a0f04e36-994e-488b-86e2-cb304f15cd47)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d36350cf-93d9-4286-82b4-894b400d79c8)
)
(fp_circle (center 0 0) (end 2.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 1af11237-06d6-405f-b871-b0905202d24b))
(fp_circle (center 0 0) (end 2.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 4977955a-a794-42d3-a2a7-c319320c1da1))
(pad "" np_thru_hole circle (at 0 0 90) (size 2.2 2.2) (drill 2.2) (layers "*.Cu" "*.Mask") (tstamp 3f00e90d-e763-4b53-abe4-729ee96c8bb5))
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 285a0ef8-989e-42dc-82cd-84a9e1f7c8f0)
(at 21.5 43 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "Pico Drive.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/83add7c8-1153-4915-869a-07519b17c80c")
(attr smd)
(fp_text reference "R10" (at -2.75 0.5 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 517a4146-a2fe-4308-8032-2949ddf582d7)
)
(fp_text value "10k" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 50bf1a7f-fe10-4385-a89a-78e18e986057)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 32126d48-c85a-4e32-a8f0-a0cf52582597)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e29281bd-ddc7-46ea-8b33-16f2338ca202))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2aa1aad-afc6-4f20-b94f-0aa9cfdefe57))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f48540f5-659c-4ddb-8d03-9f0ef23fe042))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ee196027-3502-4ac3-a9a6-d9516426cb6b))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 52a90300-9d4d-4369-8df6-e2750efd4a4e))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b0d5625c-769f-42f0-87e9-cb84d664dfae))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6008062e-d008-4a7b-b44d-0311b47ab82e))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b10b84a0-fc2e-4a23-adcb-0791fc5339a7))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b4b7ae98-f6dd-4dda-905a-cf9fe1116b8a))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fffe1c9e-7630-4d26-82a7-3940e29d025c))
(pad "1" smd roundrect (at -1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 25 "+3V3") (pintype "passive") (tstamp 6223fb79-201b-4ae1-8564-7bc4a43d7aac))
(pad "2" smd roundrect (at 1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 19 "/I2C1_SDA") (pintype "passive") (tstamp 2ea941a5-6e5e-4049-8a20-960e0e7a7aaa))
(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 "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 2d3e92a9-8305-4fb5-abeb-1e251a532912)
(at 90.75 68.1 180)
(descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x06 2.54mm single row")
(property "Sheetfile" "Pico Drive.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/39882caa-95f6-44aa-91c3-f39af783c8e6")
(attr through_hole)
(fp_text reference "J1" (at 0 15.85) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 83cdb8a3-79b3-4f45-b7ad-887a48632ea3)
)
(fp_text value "Conn_01x06_Male" (at 0 15.03) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d890f28a-d996-4582-be79-214099d62514)
)
(fp_text user "${REFERENCE}" (at 0 6.35 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e95ef355-fe63-489e-b11d-8bd1da8bfeaf)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b7a0609f-2c43-4ce2-89cb-44ff01158aa6))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 25d36b67-eb4c-474f-a6f0-cc5be065b20f))
(fp_line (start -1.33 1.27) (end -1.33 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bfadd6a2-3be8-481c-9289-a5169301f532))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 78a46c3a-40de-4045-a7c3-1d88c1ca9e08))
(fp_line (start -1.33 14.03) (end 1.33 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 760ab04a-c510-4372-8350-6db2a19be29c))
(fp_line (start 1.33 1.27) (end 1.33 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp abb120cd-f8fa-47a1-8d5e-e0a95dc26a79))
(fp_line (start -1.8 -1.8) (end -1.8 14.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7278cfa4-9f8a-498f-a676-501d1a7ce3b0))
(fp_line (start -1.8 14.5) (end 1.8 14.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bc97ba18-0547-4854-aa28-3c69a660ef35))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2de060f5-e87a-4695-a7a1-d8901bbbe16a))
(fp_line (start 1.8 14.5) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 19f46a57-6e21-4f9f-bf8d-b7344fc98fbb))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3cc973e3-8803-4b84-8e7c-5b9f362afa11))
(fp_line (start -1.27 13.97) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fde8b306-a472-4570-b588-73848e93524e))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b835238-88e0-428b-b135-de045cd79667))
(fp_line (start 1.27 -1.27) (end 1.27 13.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d934b9c9-6ff8-441a-a8c0-cf478af83af6))
(fp_line (start 1.27 13.97) (end -1.27 13.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 50ebc403-83a9-4082-b741-c19c27361c6e))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 32 "/CLK_5V") (pinfunction "Pin_1") (pintype "passive") (tstamp a84d746a-1258-40de-9ffb-d226d20dbd1b))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 63484267-64b4-434f-9fef-83295fb1856f))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 26 "+5V") (pinfunction "Pin_3") (pintype "passive") (tstamp 1db7693b-3345-4973-98aa-b312e5aff652))
(pad "4" thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 42 "/VDD") (pinfunction "Pin_4") (pintype "passive") (tstamp 0c7a70f5-565d-4885-b41d-c90e17a7dbc5))
(pad "5" thru_hole oval (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 26 "+5V") (pinfunction "Pin_5") (pintype "passive") (tstamp 4ddfbfd0-fbb7-4abd-9b9b-d1596d2cb78d))
(pad "6" thru_hole oval (at 0 12.7 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 33 "/DATA_5V") (pinfunction "Pin_6") (pintype "passive") (tstamp 1237a8d5-be5c-4b4a-ac66-f3020a5f0e71))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 319f444a-e9d6-467c-afd6-c48a0f9ab8df)
(at 72.5 71 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "Pico Drive.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/f1a07b1d-68aa-46ec-bf49-f6655e04c250")
(attr smd)
(fp_text reference "R5" (at 0 -1.75 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a5b93b77-c1b5-419d-84ca-83f4f64bd2cb)
)
(fp_text value "47k" (at 0 1.65 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c317ce4d-4e9b-43da-8319-bd2ba6271c2c)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 3692b13e-3ff8-4e80-b8a4-84dbd252b698)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4b7e69fe-c821-4c8f-aaf5-9540adf3fe3d))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c659d6b4-c8a1-47d6-8b99-7e3e7dbd1595))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 68867c6c-0795-4762-9113-6dd2264379c5))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9d4d5180-ffd2-4a0f-9445-0ae6ceff7520))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b116da36-025a-467b-8011-ed61cf7f8bf9))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f7b71731-9c5d-4310-bb41-4f279a7c0905))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fd320cd2-8f52-458a-84ab-b62a37a0df19))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a9ec54c0-3186-4d2c-b347-310c803c49e6))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0bd1fd5c-57b4-424f-852d-19ed24777e88))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5fd3c7df-a374-4d4d-8803-a13729241ea3))
(pad "1" smd roundrect (at -1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 32 "/CLK_5V") (pintype "passive") (tstamp bff0e634-ade9-4ef3-9462-48362ce33f3b))
(pad "2" smd roundrect (at 1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 1 "GND") (pintype "passive") (tstamp cc518a96-1eba-4f00-81aa-216422cfbca3))
(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_2.2mm_M2" (layer "F.Cu")
(tstamp 37cf4dac-4553-4c92-9691-93d97d805e03)
(at 92.25 24 90)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(property "Sheetfile" "Pico Drive.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/72a812fd-69d5-499a-ae49-86d7d93a117e")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 0 -3.2 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 846611f9-d009-462a-b52a-817bb4c17201)
)
(fp_text value "MountingHole" (at 0 3.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 05c7b275-a291-483b-ad79-2d2b2f9f671f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b5e7cffb-df9e-4cf5-adfb-51e2c5c5be2c)
)
(fp_circle (center 0 0) (end 2.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 0228a883-089b-4ec4-aaad-c5ca1de8c53b))
(fp_circle (center 0 0) (end 2.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 869a00db-1b0c-420e-a92c-ec6577d3909e))
(pad "" np_thru_hole circle (at 0 0 90) (size 2.2 2.2) (drill 2.2) (layers "*.Cu" "*.Mask") (tstamp 753c0064-1e0a-42e0-ae98-7aabafff4e0c))
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 3b39c9cf-d7c7-4fd0-81ef-12363d0e85db)
(at 18.75 43 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "Pico Drive.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/a8d0abe0-df94-42ba-9d62-7da38063e715")
(attr smd)
(fp_text reference "R11" (at -2.75 0.75 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 94055734-99f0-4b44-8cf9-f4407769f00d)
)
(fp_text value "10k" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 72d32ca8-3a56-403e-8898-7b33a7e18074)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 4942b474-62e5-472a-97cc-1f32c544a32f)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 45fd801a-42f5-43cf-a2cb-21f3fbe5a85c))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fc782505-dd2f-4183-b59d-cd02c1b9d28e))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 94c4a890-c384-4a2e-a087-f30735c53e97))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dcb23f59-550f-4ed1-9ecf-558d321c183d))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f75e80c5-9e76-49ea-a8f5-83969c9b04fd))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7046a89d-65f2-415f-994c-b5c46f56b750))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp de65a5f5-254e-4578-9663-d42a4cb18d0b))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b5036860-202d-4367-9e34-20cb01c6cb04))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ecc64d0-2cec-4cdb-bff5-850f4615fe2f))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cab7bb6f-7b97-46fc-bb06-a2bf915d14ca))
(pad "1" smd roundrect (at -1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 25 "+3V3") (pintype "passive") (tstamp 6952afd4-e1ce-49cf-91aa-aba1c0c80d73))
(pad "2" smd roundrect (at 1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 20 "/I2C1_SCL") (pintype "passive") (tstamp 234b4985-698a-4ed6-ab4a-e34ef7d26ad9))
(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 "LED_THT:LED_D3.0mm_Clear" (layer "F.Cu")
(tstamp 3d180f3d-46b8-4f60-9038-1a647dc1ddfc)
(at 54.24 26.735)
(descr "IR-LED, diameter 3.0mm, 2 pins, color: clear")
(tags "IR infrared LED diameter 3.0mm 2 pins clear")
(property "Sheetfile" "Pico Drive.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/395578cc-e932-4674-bb1f-150091b4b756")
(attr through_hole)
(fp_text reference "D1" (at 1.27 -2.96) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b41a432-e1fd-4815-8436-e43bdcedf5ca)
)
(fp_text value "LED" (at 1.27 2.96) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 25d17d04-7e3b-4ecb-9c0f-7561a00328af)
)
(fp_text user "${REFERENCE}" (at 1.47 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 16e9c978-5e5b-4801-b011-313f4d524b25)
)
(fp_line (start -0.29 -1.236) (end -0.29 -1.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp defde86f-acbf-48c9-a7f3-2469e450d834))
(fp_line (start -0.29 1.08) (end -0.29 1.236)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4674c2d3-3197-4962-8f69-45c654748b19))
(fp_arc (start -0.29 -1.235516) (mid 1.366487 -1.987659) (end 2.942335 -1.078608)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 32d8b878-7fd7-4293-8a98-cbe88b44a8da))
(fp_arc (start 0.229039 -1.08) (mid 1.270117 -1.5) (end 2.31113 -1.079837)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8bbcb4a2-0476-4772-9947-7ebeea23cb9b))
(fp_arc (start 2.31113 1.079837) (mid 1.270117 1.5) (end 0.229039 1.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c1a5298f-5252-405d-a8a4-4e1301aaf06a))
(fp_arc (start 2.942335 1.078608) (mid 1.366487 1.987659) (end -0.29 1.235516)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51df009b-e704-4feb-81c8-e91e1f9f6da2))
(fp_line (start -1.15 -2.25) (end -1.15 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ff5f3eb5-f50b-478c-bf2c-5605c090fe74))
(fp_line (start -1.15 2.25) (end 3.7 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bbd2cdb4-5638-4465-92bc-9b965b480644))
(fp_line (start 3.7 -2.25) (end -1.15 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 17ea832a-f828-41e0-b50c-91da1714b3f5))
(fp_line (start 3.7 2.25) (end 3.7 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9019bf57-0708-4649-8981-68a73c363d13))
(fp_line (start -0.23 -1.16619) (end -0.23 1.16619)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bae4fc7b-327a-4c09-bb1a-a5aaaf9b0d82))
(fp_arc (start -0.23 -1.16619) (mid 3.17 0.000452) (end -0.230555 1.165476)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a43226d8-fa14-4fba-841f-925d6436679e))
(fp_circle (center 1.27 0) (end 2.77 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 32e9ff4b-5673-422a-936e-dfb015a73411))
(pad "1" thru_hole rect (at 0 0) (size 1.8 1.8) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "K") (pintype "passive") (tstamp 92eeeb94-7912-45f3-9f09-9a9851a3345c))
(pad "2" thru_hole circle (at 2.54 0) (size 1.8 1.8) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 3 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp 47a744fb-69d7-4392-b649-9b8fd7b33503))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D3.0mm_Clear.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "RP-Pico Libraries:RPi_Pico_SMD_TH" (layer "F.Cu")
(tstamp 40aec730-7a0f-477c-893a-426565c5c321)
(at 36.466 49)
(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 Drive.kicad_sch")
(property "Sheetname" "")
(path "/04ac89cb-82bd-493c-b55f-dcdc4402b033")
(attr through_hole)
(fp_text reference "U1" (at 0 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 51016969-b662-4d25-8cb8-238d8f67555f)
)
(fp_text value "Pico" (at 0 2.159) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a964763d-ed53-4b7b-bdbd-30ca57ea1c7b)
)
(fp_text user "SWDIO" (at 5.6 26.2) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 0888f829-3f20-4711-a405-34a941268be8)
)
(fp_text user "GND" (at 12.8 19.05 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 1d8748d4-18b3-47ea-ab14-66143b9ff8c5)
)
(fp_text user "AGND" (at 13.054 -6.35 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 219cdd16-88a3-48fa-b06b-9803ecb2eb09)
)
(fp_text user "VSYS" (at 13.2 -21.59 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 2a482c93-04d1-43ce-ba8b-7762ba409334)
)
(fp_text user "GP20" (at 13.054 11.43 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 308975a9-ac3c-429e-98a0-b215c4941fc0)
)
(fp_text user "GND" (at -12.8 -19.05 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 41216eee-8a07-432d-af70-64f20cd9af41)
)
(fp_text user "GP0" (at -12.8 -24.13 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 43cde587-e1e5-4dc8-ad7f-2014033db0d0)
)
(fp_text user "GP16" (at 13.054 24.13 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 44a83432-abe4-4742-a817-6e8f359f32dc)
)
(fp_text user "GP26" (at 13.054 -1.27 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 469646aa-f3f9-4c36-98ad-e43dac242526)
)
(fp_text user "GND" (at 12.8 -19.05 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 46a7dfa5-9011-4be2-ae97-988f16738de5)
)
(fp_text user "GP14" (at -13.1 21.59 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 5048357e-fab5-4f78-ab97-17a03f94e517)
)
(fp_text user "GP2" (at -12.9 -16.51 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 6310352b-b673-445f-8280-39b4778ea09f)
)
(fp_text user "GND" (at -12.8 19.05 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 6570b7ec-18c7-4533-a54c-e943f310fa6f)
)
(fp_text user "VBUS" (at 13.3 -24.2 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 6ea37656-be1e-4657-8120-8b5c67c0adc4)
)
(fp_text user "GP8" (at -12.8 1.27 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 6eaa11fc-2068-4788-8804-5694e3dc0ba3)
)
(fp_text user "GP18" (at 13.054 16.51 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 77e7f38d-6c83-49ed-9c7e-ab3d37c1cbe8)
)
(fp_text user "GP17" (at 13.054 21.59 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 7f78f805-4892-415d-bbea-560aa033266e)
)
(fp_text user "SWCLK" (at -5.7 26.2) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 8ea18aee-70c3-40a4-b79f-7b21d5f04531)
)
(fp_text user "GP13" (at -13.054 16.51 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 9a81afe3-8b2d-460a-a498-2ba1f3747289)
)
(fp_text user "GND" (at -12.8 -6.35 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 9ebc0352-ce3f-45cf-a052-d4e064f48584)
)
(fp_text user "GP27" (at 13.054 -3.8 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp aa44e080-da81-47e3-ae5e-ccd058347911)
)
(fp_text user "GP19" (at 13.054 13.97 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp aaf0f54a-52dd-4aed-8a94-9bc5783f6a37)
)
(fp_text user "GP22" (at 13.054 3.81 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp b6ac49dd-451f-47a1-9d66-a7abd05df47f)
)
(fp_text user "GP12" (at -13.2 13.97 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp ba00d4b3-944c-46ea-afd1-cb72a695cadb)
)
(fp_text user "ADC_VREF" (at 14 -12.5 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp be96f16b-84cd-4b7b-887f-102af7361ccf)
)
(fp_text user "GND" (at -12.8 6.35 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp c3514ed7-7d71-497a-8389-f56a945daa2f)
)
(fp_text user "GP7" (at -12.7 -1.3 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp c605e524-7206-4e82-b1f5-8c951d325fd1)
)
(fp_text user "GP9" (at -12.8 3.81 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp c70fced6-a3e8-481b-8802-1045da4c2d6c)
)
(fp_text user "GP15" (at -13.054 24.13 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp c71e7870-23a8-4674-b3bc-dfe48f025408)
)
(fp_text user "GP6" (at -12.8 -3.81 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp c8789efc-e4fe-44bf-9bb4-b8f2ebde8f16)
)
(fp_text user "RUN" (at 13 1.27 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp cf8b997d-65df-4367-8277-de900e2c7d2b)
)
(fp_text user "GND" (at 12.8 6.35 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp d6ac0748-c58c-4cb7-a4bb-6b0191a31616)
)
(fp_text user "GP4" (at -12.8 -11.43 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp da038ba4-8daa-4f82-9f23-da7b2f816c27)
)
(fp_text user "GP10" (at -13.054 8.89 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp e2069639-9f02-4fec-aaf9-57fa05766225)
)
(fp_text user "3V3" (at 12.9 -13.9 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp e58dc456-a172-4880-b180-7e38519cdb5d)
)
(fp_text user "GP28" (at 13.054 -9.144 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp e63f9f6b-e627-4935-8318-c29d35d18f6c)
)
(fp_text user "GP5" (at -12.8 -8.89 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp ea28bb76-1a75-44f2-8755-58fb57d32da0)
)
(fp_text user "GP3" (at -12.8 -13.97 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp ef04a51f-0676-47ee-a377-fc95bd9faf44)
)
(fp_text user "GP1" (at -12.9 -21.6 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp f635b00a-a5ae-43d6-b3f4-ee3b553a5a5b)
)
(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 f8522093-d579-43a3-9226-49042f37d64d)
)
(fp_text user "GP11" (at -13.2 11.43 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp fb0ec0f2-eebc-463f-ae65-6b4095a0b506)
)
(fp_text user "GP21" (at 13.054 8.9 45) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp fbbb028b-b4b4-4c61-9127-c8ba90b5377a)
)
(fp_text user "Copper Keepouts shown on Dwgs layer" (at 2 0 90) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a6ad624c-e8ef-44f1-bf24-ada7e4f87fc5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe95718b-d780-4ec2-ba54-9527f440c89b)
)
(fp_line (start -10.5 -25.5) (end -10.5 -25.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 074d2684-880b-485c-899c-09655a8851db))
(fp_line (start -10.5 -25.5) (end 10.5 -25.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f1bdd887-f5a5-4dbc-8d17-ed0987492f3e))
(fp_line (start -10.5 -23.1) (end -10.5 -22.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 335eb208-5eea-4ff9-b47d-88d524fba771))
(fp_line (start -10.5 -22.833) (end -7.493 -22.833)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fc2e5be1-fb65-4ceb-ad43-5084c9cb3aa9))
(fp_line (start -10.5 -20.5) (end -10.5 -20.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 675fca1b-520d-4ffa-9fea-4e3f20414818))
(fp_line (start -10.5 -18) (end -10.5 -17.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6084102c-7afb-459c-9744-43d2302fd177))
(fp_line (start -10.5 -15.4) (end -10.5 -15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 37c56d24-bbe5-4ade-bfb4-a6389627267a))
(fp_line (start -10.5 -12.9) (end -10.5 -12.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dd575ce6-cde7-4f59-8922-0060ecd5ff4e))
(fp_line (start -10.5 -10.4) (end -10.5 -10)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b8d76ff2-0561-47e6-8a8f-bc66b956ee64))
(fp_line (start -10.5 -7.8) (end -10.5 -7.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f996c523-d0b1-4910-a876-8698111101de))
(fp_line (start -10.5 -5.3) (end -10.5 -4.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b49f7f31-2531-4ed9-92f3-611a6b495eab))
(fp_line (start -10.5 -2.7) (end -10.5 -2.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6b65c559-4761-49c0-b836-98c060b2dfb8))
(fp_line (start -10.5 -0.2) (end -10.5 0.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 13965c66-51ca-49de-8ee3-50b844661389))
(fp_line (start -10.5 2.3) (end -10.5 2.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61d680c7-71e9-4cd8-807c-448c53ea91a4))
(fp_line (start -10.5 4.9) (end -10.5 5.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 008546cf-9555-4f1c-8779-0213506e9a58))
(fp_line (start -10.5 7.4) (end -10.5 7.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c04ec98d-28c6-40bf-90bd-93f9b6a061a3))
(fp_line (start -10.5 10) (end -10.5 10.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ef0ef06d-b098-4ca8-ac14-46f41ebb40d2))
(fp_line (start -10.5 12.5) (end -10.5 12.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34721044-7247-4ce0-8a14-747fb9fd0c6b))
(fp_line (start -10.5 15.1) (end -10.5 15.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2d8154d2-7857-4aed-825b-70214c1dd94c))
(fp_line (start -10.5 17.6) (end -10.5 18)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 713e0da7-e29b-497a-8d90-7eed147e8ccb))
(fp_line (start -10.5 20.1) (end -10.5 20.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf86bbf8-9a56-4d9b-bc77-c7ae447e87a4))
(fp_line (start -10.5 22.7) (end -10.5 23.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ca731153-b05a-42b4-b7f7-4e8457559519))
(fp_line (start -7.493 -22.833) (end -7.493 -25.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4d76063-e971-4123-84a1-f1b1d6e44244))
(fp_line (start -3.7 25.5) (end -10.5 25.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 38447986-8864-4c67-96e8-a4673f46f72f))
(fp_line (start -1.5 25.5) (end -1.1 25.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a550dc2c-7b62-4192-875a-5af6dd6df723))
(fp_line (start 1.1 25.5) (end 1.5 25.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d90d5e3b-d114-4918-9460-3acddf71b9bd))
(fp_line (start 10.5 -25.5) (end 10.5 -25.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e95206d7-2255-4151-8376-b90aaed2a984))
(fp_line (start 10.5 -23.1) (end 10.5 -22.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a69c039-693f-4899-b060-0b99aaab5684))
(fp_line (start 10.5 -20.5) (end 10.5 -20.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 196c5679-fae5-4da1-b36d-193dcb1d2186))
(fp_line (start 10.5 -18) (end 10.5 -17.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2203a214-39d0-46b9-b89e-f43b3f6fec20))
(fp_line (start 10.5 -15.4) (end 10.5 -15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 14afef6d-7a7b-4e1d-907d-13033838d718))
(fp_line (start 10.5 -12.9) (end 10.5 -12.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3fd834ff-f2ba-4358-9b08-8f0db85896b4))
(fp_line (start 10.5 -10.4) (end 10.5 -10)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af09f36b-5e0b-4352-bb85-65865b90fd4f))
(fp_line (start 10.5 -7.8) (end 10.5 -7.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 37193584-29d6-47a5-886c-ad1c8f63f859))
(fp_line (start 10.5 -5.3) (end 10.5 -4.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f4266f73-ba74-4b01-97b9-bc1a70c94025))
(fp_line (start 10.5 -2.7) (end 10.5 -2.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 28f579d6-6b7a-4c68-bfe8-9caf8f888f9b))
(fp_line (start 10.5 -0.2) (end 10.5 0.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 52458e17-e8ef-4974-bb22-e910d864a476))
(fp_line (start 10.5 2.3) (end 10.5 2.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f8d5ec41-d36a-4b67-9531-2c7e0094bae1))
(fp_line (start 10.5 4.9) (end 10.5 5.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c5aa228c-a132-49b8-8aae-0b7e7e9c9d8b))
(fp_line (start 10.5 7.4) (end 10.5 7.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5714fd31-1206-4919-ad98-2f8e62291973))
(fp_line (start 10.5 10) (end 10.5 10.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b3c5f674-6952-452d-9839-7f65b0645cc0))
(fp_line (start 10.5 12.5) (end 10.5 12.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 07ff98e6-b781-4ffe-9b15-66dc21bcc267))
(fp_line (start 10.5 15.1) (end 10.5 15.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0069e365-7185-4861-9689-7264835d16d5))
(fp_line (start 10.5 17.6) (end 10.5 18)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp acd586ba-924d-4777-aa8c-dfb5b0f863fd))
(fp_line (start 10.5 20.1) (end 10.5 20.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d5e5987a-9389-45f1-a4ff-6e9d5a379a64))
(fp_line (start 10.5 22.7) (end 10.5 23.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f181360c-79fc-4594-972e-a4435c64a3aa))
(fp_line (start 10.5 25.5) (end 3.7 25.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b432e12-fe37-4dc6-899d-c6d527a4fe3f))
(fp_poly
(pts
(xy -1.5 -16.5)
(xy -3.5 -16.5)
(xy -3.5 -18.5)
(xy -1.5 -18.5)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp 21e72f7e-1df8-4ebb-be0b-505fca5ffb0b))
(fp_poly
(pts
(xy -1.5 -14)
(xy -3.5 -14)
(xy -3.5 -16)
(xy -1.5 -16)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp b2119a17-6e87-4c18-8bab-fd093bf579de))
(fp_poly
(pts
(xy -1.5 -11.5)
(xy -3.5 -11.5)
(xy -3.5 -13.5)
(xy -1.5 -13.5)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp a9b3705a-644b-4bbc-a275-881fe7a34c56))
(fp_poly
(pts
(xy 3.7 -20.2)
(xy -3.7 -20.2)
(xy -3.7 -24.9)
(xy 3.7 -24.9)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp 7e95c300-98ef-4498-b96a-c88b7d67d685))
(fp_line (start -11 -26) (end 11 -26)
(stroke (width 0.12) (type solid)) (layer "F.CrtYd") (tstamp e7b3c4bc-a016-481f-ab65-33186ac51cd6))
(fp_line (start -11 26) (end -11 -26)
(stroke (width 0.12) (type solid)) (layer "F.CrtYd") (tstamp 0729a187-1e6f-4f1b-a52c-af6692edbdf4))
(fp_line (start 11 -26) (end 11 26)
(stroke (width 0.12) (type solid)) (layer "F.CrtYd") (tstamp 9a92dab8-f1f1-4e92-9ffb-b06259da4ef8))
(fp_line (start 11 26) (end -11 26)
(stroke (width 0.12) (type solid)) (layer "F.CrtYd") (tstamp ac9677cb-bf8e-4e6f-82bc-cdd20e843e64))
(fp_line (start -10.5 -25.5) (end 10.5 -25.5)
(stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 12cb9547-b2f1-4232-95da-998c46f7703f))
(fp_line (start -10.5 -24.2) (end -9.2 -25.5)
(stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp f94acfa6-0eea-423c-bc50-735159205742))
(fp_line (start -10.5 25.5) (end -10.5 -25.5)
(stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 0cfd56bf-a0fa-4515-99d9-5127af33c2c5))
(fp_line (start 10.5 -25.5) (end 10.5 25.5)
(stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp a7c07694-37e7-4788-b192-71b7d2e1804b))
(fp_line (start 10.5 25.5) (end -10.5 25.5)
(stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 498a34c1-1144-42b3-b450-626d0efd86c8))
(pad "" np_thru_hole oval (at -2.725 -24) (size 1.8 1.8) (drill 1.8) (layers "*.Cu" "*.Mask") (tstamp 8186f151-664a-4639-b8e3-eb7acce2f010))
(pad "" np_thru_hole oval (at -2.425 -20.97) (size 1.5 1.5) (drill 1.5) (layers "*.Cu" "*.Mask") (tstamp 92e9f1a5-8a03-4f35-a7b3-8f713323e519))
(pad "" np_thru_hole oval (at 2.425 -20.97) (size 1.5 1.5) (drill 1.5) (layers "*.Cu" "*.Mask") (tstamp 5904d790-7861-4a8b-a410-5b58c7f6da62))
(pad "" np_thru_hole oval (at 2.725 -24) (size 1.8 1.8) (drill 1.8) (layers "*.Cu" "*.Mask") (tstamp 671fda7d-8b02-49f4-a256-70a1957bf3ec))
(pad "1" thru_hole oval (at -8.89 -24.13) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 2 "/UART0_TX") (pinfunction "GPIO0") (pintype "bidirectional") (tstamp ec3767cc-27ba-4cc7-9462-e49ff9dc8f47))
(pad "1" smd rect (at -8.89 -24.13) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 2 "/UART0_TX") (pinfunction "GPIO0") (pintype "bidirectional") (tstamp 6a6d9620-c698-404a-b51e-5bda535de8dc))
(pad "2" thru_hole oval (at -8.89 -21.59) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 18 "/UART0_RX") (pinfunction "GPIO1") (pintype "bidirectional") (tstamp 90e79fae-3f4b-4a63-bf1d-8a99ce26f105))
(pad "2" smd rect (at -8.89 -21.59) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 18 "/UART0_RX") (pinfunction "GPIO1") (pintype "bidirectional") (tstamp 43bee2bf-63e6-43f3-a45f-b1cf18c50e94))
(pad "3" thru_hole rect (at -8.89 -19.05) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp d32081ec-f4e0-417a-b333-661c334d8527))
(pad "3" smd rect (at -8.89 -19.05) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c4ea95c9-6cb8-43ce-b742-6829f5ffcc1d))
(pad "4" thru_hole oval (at -8.89 -16.51) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 4 "unconnected-(U1-GPIO2-Pad4)") (pinfunction "GPIO2") (pintype "bidirectional+no_connect") (tstamp 3899b7b0-0b39-44a3-9f57-10c59abd4166))
(pad "4" smd rect (at -8.89 -16.51) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 4 "unconnected-(U1-GPIO2-Pad4)") (pinfunction "GPIO2") (pintype "bidirectional+no_connect") (tstamp cf8d9e04-23d1-4ec9-bb16-a0e516dd419c))
(pad "5" thru_hole oval (at -8.89 -13.97) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 5 "unconnected-(U1-GPIO3-Pad5)") (pinfunction "GPIO3") (pintype "bidirectional+no_connect") (tstamp 9c8f7d4c-3e8e-4325-97f9-9729d238ea9a))
(pad "5" smd rect (at -8.89 -13.97) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 5 "unconnected-(U1-GPIO3-Pad5)") (pinfunction "GPIO3") (pintype "bidirectional+no_connect") (tstamp 9bf6d62d-17f6-4b35-bf3c-f9829d7fed9d))
(pad "6" thru_hole oval (at -8.89 -11.43) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 6 "unconnected-(U1-GPIO4-Pad6)") (pinfunction "GPIO4") (pintype "bidirectional+no_connect") (tstamp 00b6f77a-04cb-4263-a211-bb4e1be803ee))
(pad "6" smd rect (at -8.89 -11.43) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 6 "unconnected-(U1-GPIO4-Pad6)") (pinfunction "GPIO4") (pintype "bidirectional+no_connect") (tstamp ad93a3c1-e59a-4ef8-829c-942f6a95bd8d))
(pad "7" thru_hole oval (at -8.89 -8.89) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 7 "unconnected-(U1-GPIO5-Pad7)") (pinfunction "GPIO5") (pintype "bidirectional+no_connect") (tstamp 7376960c-540c-4694-9a59-c8a319a00441))
(pad "7" smd rect (at -8.89 -8.89) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 7 "unconnected-(U1-GPIO5-Pad7)") (pinfunction "GPIO5") (pintype "bidirectional+no_connect") (tstamp 01c84a49-b699-43f4-8d7d-24c86d69c00a))
(pad "8" thru_hole rect (at -8.89 -6.35) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp a1679efd-9d2b-4b82-b84e-3bfda4a03d0f))
(pad "8" smd rect (at -8.89 -6.35) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c2565596-3d0c-43bc-97cf-f30fd3c3480a))
(pad "9" thru_hole oval (at -8.89 -3.81) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 19 "/I2C1_SDA") (pinfunction "GPIO6") (pintype "bidirectional") (tstamp aec8c116-87df-4fe1-ac1d-7cca99488cce))
(pad "9" smd rect (at -8.89 -3.81) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 19 "/I2C1_SDA") (pinfunction "GPIO6") (pintype "bidirectional") (tstamp ab975549-2840-47fa-9af6-c52dfbae7193))
(pad "10" thru_hole oval (at -8.89 -1.27) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 20 "/I2C1_SCL") (pinfunction "GPIO7") (pintype "bidirectional") (tstamp 74a617df-37f5-41a3-8319-3121d7e23efa))
(pad "10" smd rect (at -8.89 -1.27) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 20 "/I2C1_SCL") (pinfunction "GPIO7") (pintype "bidirectional") (tstamp bfa14fb1-fa0a-4d36-9737-ffb3d94fb789))
(pad "11" thru_hole oval (at -8.89 1.27) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 21 "unconnected-(U1-GPIO8-Pad11)") (pinfunction "GPIO8") (pintype "bidirectional+no_connect") (tstamp fbba1149-b391-4e76-bb1b-aee07a470387))
(pad "11" smd rect (at -8.89 1.27) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 21 "unconnected-(U1-GPIO8-Pad11)") (pinfunction "GPIO8") (pintype "bidirectional+no_connect") (tstamp be2fb6fb-88fd-402d-bb73-9169f8ccdf2a))
(pad "12" thru_hole oval (at -8.89 3.81) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")