-
Notifications
You must be signed in to change notification settings - Fork 1
/
Frood.kicad_pcb
13034 lines (12974 loc) · 692 KB
/
Frood.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")
(title_block
(comment 4 "AISLER Project ID: LLGRDWUV")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(aux_axis_origin 126.306192 76.173397)
(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 "VBUS")
(net 2 "+3V3")
(net 3 "/XIN")
(net 4 "Net-(C4-Pad1)")
(net 5 "+1V1")
(net 6 "GND")
(net 7 "/VIN")
(net 8 "Net-(D2-K)")
(net 9 "/USB_D-")
(net 10 "/USB_D+")
(net 11 "/XOUT")
(net 12 "/QSPI_SS")
(net 13 "/~{USB_BOOT}")
(net 14 "/D2{slash}SDA")
(net 15 "/D3{slash}SCL")
(net 16 "/D4")
(net 17 "/D5")
(net 18 "/D6")
(net 19 "/D7")
(net 20 "/D8")
(net 21 "/D9")
(net 22 "/~{RESET}")
(net 23 "/QSPI_SD3")
(net 24 "/QSPI_SCLK")
(net 25 "/QSPI_SD0")
(net 26 "/QSPI_SD2")
(net 27 "/QSPI_SD1")
(net 28 "Net-(USB1-CC1)")
(net 29 "Net-(USB1-CC2)")
(net 30 "/GND{slash}D10")
(net 31 "/GND{slash}D11")
(net 32 "unconnected-(U1-SWCLK-Pad24)")
(net 33 "unconnected-(U1-SWD-Pad25)")
(net 34 "/D1{slash}RX")
(net 35 "/D0{slash}TX")
(net 36 "unconnected-(U1-GPIO18-Pad29)")
(net 37 "unconnected-(U1-GPIO24-Pad36)")
(net 38 "/D26{slash}A0")
(net 39 "/D27{slash}A1")
(net 40 "/D28{slash}A2")
(net 41 "/D29{slash}A3")
(net 42 "/D12")
(net 43 "/D13")
(net 44 "/D14")
(net 45 "/D20")
(net 46 "/D21")
(net 47 "/D+")
(net 48 "/D-")
(net 49 "/D16")
(net 50 "/D15")
(net 51 "unconnected-(U1-GPIO25-Pad37)")
(net 52 "unconnected-(U3-BP-Pad4)")
(net 53 "/D23")
(net 54 "/D22")
(net 55 "unconnected-(USB1-SBU2-Pad3)")
(net 56 "unconnected-(USB1-SBU1-Pad9)")
(net 57 "/RAW")
(net 58 "/VSENSE")
(net 59 "/LED")
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 10cbc1e5-2a87-4ae9-aa97-b951617c0394)
(at 128.601992 70.707597 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "Frood.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/b7b483ad-3bb4-4453-bb5c-5d257e3d384a")
(attr smd)
(fp_text reference "R3" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 46f4b1a2-25b2-4f5d-9d5a-3b3dfba47907)
)
(fp_text value "27R" (at 0 1.17 90) (layer "F.Fab") hide
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 87fa182b-f513-4145-99e2-09c5c39802cb)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 4ddbe7de-a3ec-4b28-b371-ab08d7ec2c98)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8f7dc52a-3eca-42a5-be4e-34fd779f34b1))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4c49e788-90b1-4833-9938-4bc15901bb0b))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8a85a1a1-6da8-4e4e-a61b-f8ef503a8383))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d049f186-d0c9-4e72-b5eb-940194e1771b))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d84fdaec-3fb0-4050-afbc-fcfd3b26a5bb))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d361aa9a-e983-47f2-a306-a1836bddeab4))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 88a70116-918b-4ea6-b6e5-aa078624d2b7))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a36f12e6-6923-487c-99b6-9f144c6c2600))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 310914a7-437e-4078-a581-85f0db2eb5b0))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2da8716e-6aaa-436f-9a38-9a691e2bc2b5))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 48 "/D-") (pintype "passive") (tstamp f82dabd5-837c-43ae-8410-aeadaa8b98c0))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/USB_D-") (pintype "passive") (tstamp a9b62410-787c-4ba2-bb79-f39696b49393))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 1289081b-6d6b-4764-b906-7318b609f59a)
(at 130.897992 72.973397 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "Frood.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/d9b857ec-c7ed-4625-b316-ca24aa63a41f")
(attr smd)
(fp_text reference "C11" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp c8b81668-2e24-4a3a-9c1d-969829b80e2e)
)
(fp_text value "100n" (at 0 1.16 90) (layer "F.Fab") hide
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 40a05c93-d54a-46b6-a340-4b5beb5912b6)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 09d0f8bd-25d7-450d-965b-1623bd24ee12)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5b57f52c-81e7-43fa-a21c-eeba7dba3215))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1c52d926-c3a6-4536-a628-6537a0d4331d))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 18e595cd-7636-48cd-9ae4-e324ab013b2f))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f884ad58-2393-48aa-b0f1-24af9c7ba035))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3169be89-ef53-4cb9-a341-6fd865f22fb0))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 84eb6f15-a269-4a6a-b119-815ea0d8ab63))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 381f75cd-c679-4f3f-b29c-18207d4e8b73))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5194ad13-d6b1-416c-9eba-286fe30e3b12))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5a62fee4-665d-464f-a3a1-3f58edb33a2e))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c0a7b711-2685-42a5-a1d8-951cf453a007))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pintype "passive") (tstamp e0205b4d-57b4-4181-8d67-92c19b9916c5))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "GND") (pintype "passive") (tstamp 455f9b6c-ed1e-4802-afc7-d1310473fa00))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 1398bb4b-50f3-42e3-8b98-fbb982ea34fd)
(at 130.451992 70.707597 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "Frood.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/59221963-e05f-43a4-ad14-221f6604817d")
(attr smd)
(fp_text reference "C7" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 4a73c473-31fa-4912-a0e7-cd9b6d55ac46)
)
(fp_text value "100n" (at 0 1.16 90) (layer "F.Fab") hide
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 9fbe69b2-3416-4ec1-9c69-330df6a51e39)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 4b16790c-eef0-48c6-a165-139c02c8b240)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2fcf064e-94ea-4c28-8622-9af78141b860))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ffb7ca54-a5b9-45e9-84f6-545f8872f45e))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 760b3be7-84eb-4f01-8c49-0c0766a436df))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f943616a-0d06-4672-b1fd-d40e3c976478))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 471b0c23-5089-4b3e-a2fc-fe4bca61828e))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5b32b8ad-f9e7-4f98-bba1-f7778e19dd55))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0152fda3-27c8-4abd-ae4f-f1bad97644d4))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1df2cc86-4e90-4e7d-9a7c-cc49bb4826d5))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp be664c5c-fa3b-4c80-af8e-8eb79becb20b))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 80ea93b4-690f-43af-a6e9-9da1f32973f7))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+1V1") (pintype "passive") (tstamp bb4cde37-a83e-4e00-9288-472fa324015c))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "GND") (pintype "passive") (tstamp a70258a0-516d-4703-944a-7a5c9940d56f))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 1ef64ded-def0-4232-bc68-c1a4a6fa98a6)
(at 125.356192 68.623397)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "Frood.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/ad53a7ab-74a7-4973-bd88-7065029c4e1a")
(attr smd)
(fp_text reference "C5" (at -1.4224 0) (layer "F.SilkS") hide
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 0b338e1a-aa86-4743-adbe-d7d682f830f2)
)
(fp_text value "100n" (at 0 1.16) (layer "F.Fab") hide
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 8cf74fc6-b266-4d66-acbf-ccb62506cda3)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp a6478c70-0aca-4020-bedc-f6013febb905)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2e4cbc82-5b90-4d65-82bd-fb6618a1c319))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e100652-0757-485a-beb6-4989d83e847e))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 40fa9345-13c4-4938-99d4-944ec99ae47e))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8fe38bde-8d37-4083-96a9-157fe8ac9eaf))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3fc8b572-c434-42f6-8b0f-b0ee0a1d2980))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1f53c3c8-7b23-40b2-8d2a-5fb3bd01ef80))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3d70fedf-d98a-4636-8014-7ea123544071))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp afd65f27-a842-43ab-95f2-ae1121a6f1e6))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 49614fab-812a-4da7-87fa-ce60ec46e2e4))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 870b887a-2784-41fc-bc13-193343a7cb79))
(pad "1" smd roundrect (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pintype "passive") (tstamp d3b2e15e-78fd-4b62-9800-d9adebb6eeb1))
(pad "2" smd roundrect (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "GND") (pintype "passive") (tstamp ab0a070e-7220-490e-ab4f-21eb16c6e2e7))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 23e955f1-3b57-4c3b-9fea-28534bb15b37)
(at 121.721992 77.773397 -90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "Frood.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/5c1e8145-f71c-4ff6-ae9b-7aa42e919748")
(attr smd)
(fp_text reference "C15" (at 0 -1.16 -270) (layer "F.SilkS") hide
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 5a7dd754-164b-4dd7-9ef1-6ec3fabfcb99)
)
(fp_text value "100n" (at 0 1.16 -270) (layer "F.Fab") hide
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 025499e5-05e1-48a5-a514-3d58e5964a9a)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp e569cf99-dfa0-4e68-b88b-b3162ae41013)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f603fa5-04ff-4f38-8adb-3da6d3ed16c8))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 582bdc01-ae4d-405a-9bc5-f1089f33a6b8))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9a59343c-e79c-408f-8ce7-fc8f1b306d4c))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 57f7f7a7-d2b7-461c-b951-74c91d45d3d2))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a4b57bf7-2bce-4e51-bb0f-e2edaa4f3970))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 65215737-c8eb-4616-957c-c485f98664b6))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 285c8ea5-d2c3-4b51-8e82-5d7cfdbe6fa5))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ce966926-5ae2-4ce9-839a-43254682ebf7))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6ff1550d-820f-4dd5-8c6d-82865740477b))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c87c2a5d-1de4-44c0-8658-1a9faebfdd5a))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pintype "passive") (tstamp 35605f46-d23f-47a3-a2db-d3eb4f64a12e))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "GND") (pintype "passive") (tstamp 56d39efe-a654-4427-ac37-8fd302eafb1a))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 2632a0b6-73bd-427a-8c54-54c8d6ec0cb9)
(at 124.4842 85.1358)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "Frood.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/809d3ec5-9b4c-406f-8396-6e72526222a0")
(attr smd)
(fp_text reference "C3" (at 0 -1.16) (layer "F.SilkS") hide
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 424770bc-c9d5-4e6e-aff7-b51d483768bf)
)
(fp_text value "30p" (at 0 1.16) (layer "F.Fab") hide
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 365f3494-e98a-4ae5-aee4-5849eb72a2de)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 492d3003-089a-4caf-bce3-8cf45fde2c53)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c48b935d-e486-421a-b915-47058a00ccfc))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b1149bac-5a64-4c1e-bd1b-9b799f18cef5))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aadb7286-689c-43c8-a2f2-d6ddfa13469c))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2e903ca9-ac73-48ad-aa03-05d4f0c41b7b))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cb62f5dd-d1e2-4854-8d5a-ea51ed93f4fa))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f42343d0-76e2-4e4f-bc2d-e5ff021e42ae))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0f4aacf9-7c60-4fa8-a9a7-db5e4234d477))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a3298af-d9aa-4fcf-88e5-366a8daecea9))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e296b4ab-6d69-4ad0-9378-bfcb4632433c))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 86828bcf-2475-47e8-82d8-7a47b51bac8f))
(pad "1" smd roundrect (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/XIN") (pintype "passive") (tstamp 1aee1307-ee46-4dd5-94d1-983fb3e23c49))
(pad "2" smd roundrect (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "GND") (pintype "passive") (zone_connect 0) (tstamp a533ec51-b4f7-4a83-85db-327430cd6207))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0402_1005Metric" (layer "F.Cu")
(tstamp 2b3a2112-94fd-47f7-aaea-069c6860e640)
(at 128.5642 84.4258)
(descr "LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "Frood.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/df6c241e-5999-402f-b231-af98b7f02f57")
(attr smd)
(fp_text reference "D2" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 209b5daf-8727-4ac9-adbc-8b8d76ced7a6)
)
(fp_text value "LED" (at 0 1.17) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9b7c743a-8601-4902-88d4-59e12943f021)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 0e955387-3fe7-41ad-a1df-0a1b2d55ddff)
)
(fp_circle (center -1.09 0) (end -1.04 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.SilkS") (tstamp 82ea8559-b913-41e2-bd9c-e2ad28dd4c72))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3914456a-12d0-46be-a8f4-a6985da2e08b))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c6b24a66-d3b2-4f2a-95fc-fc778b2a78af))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a8fffffb-4fc6-4111-bf6d-08641f13408a))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1bab4666-ae84-4035-8c6c-768b7437e9bb))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e93379a3-574b-4008-bf9e-ed137a00db2d))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 48ba48e5-9131-4fb4-8aba-869cfbf29ea2))
(fp_line (start -0.4 0.25) (end -0.4 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3bd19b0e-c28a-4a3c-a9a9-bb7685ba9603))
(fp_line (start -0.3 0.25) (end -0.3 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0769de47-d261-46fa-b0ba-ddcfc173bc44))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c8543e04-fc09-4119-a10e-9a3bae36e3d8))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 39164a08-af36-4c58-ba18-a2f0c3f6cd5d))
(pad "1" smd roundrect (at -0.485 0) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(D2-K)") (pinfunction "K") (pintype "passive") (tstamp ab19b780-3a9b-4e79-805b-41188afbdb8a))
(pad "2" smd roundrect (at 0.485 0) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 59 "/LED") (pinfunction "A") (pintype "passive") (tstamp fcd1ab8b-b797-40b4-871c-bc257d3fe1ae))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "RP2040_minimal:RP2040-QFN-56" (layer "F.Cu")
(tstamp 3512e34c-2e8d-4ad7-bf83-b3bafe3d21a8)
(at 126.306192 76.173397)
(descr "QFN, 56 Pin (http://www.cypress.com/file/416486/download#page=40), generated with kicad-footprint-generator ipc_dfn_qfn_generator.py")
(tags "QFN DFN_QFN")
(property "Sheetfile" "Frood.kicad_sch")
(property "Sheetname" "")
(path "/e83baeb4-b66b-426b-b4fa-25e51aafe59a")
(attr smd)
(fp_text reference "U1" (at 0 -4.82) (layer "F.SilkS") hide
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 3bffcce1-6258-4694-8ae3-1471b9afd756)
)
(fp_text value "RP2040" (at 1.6504 4.5332) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7191129f-177c-4b19-8a22-a347648bd7af)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d5924bdd-d458-4839-b50a-7fea68a6cb75)
)
(fp_line (start -3.61 3.61) (end -3.61 2.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d69969be-0411-4384-98c6-2cd4fc180e9f))
(fp_line (start -2.96 -3.61) (end -3.61 -3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 01f09f72-a418-4837-9ae3-54b54ac6651a))
(fp_line (start -2.96 3.61) (end -3.61 3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e416713e-84c0-4e42-9f66-4947dc0863bf))
(fp_line (start 2.96 -3.61) (end 3.61 -3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 58c4c028-0885-4d85-a61c-d015baeebca1))
(fp_line (start 2.96 3.61) (end 3.61 3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b72a5910-97e8-4a4a-9dc7-876c6c79577e))
(fp_line (start 3.61 -3.61) (end 3.61 -2.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ec8781c-772a-48d3-aad3-987065421a9d))
(fp_line (start 3.61 3.61) (end 3.61 2.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp da2aec59-95d2-4b06-82f4-9e2d807bc626))
(fp_line (start -4.12 -4.12) (end -4.12 4.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ed45534b-66b5-4b61-8053-bb4c28ef3fc0))
(fp_line (start -4.12 4.12) (end 4.12 4.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c76b17f4-3acb-4d45-90a0-42a2295523bb))
(fp_line (start 4.12 -4.12) (end -4.12 -4.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a8a179a1-2d99-42a0-a863-907c2ccd3442))
(fp_line (start 4.12 4.12) (end 4.12 -4.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 652e08e0-ea35-48c6-9368-fae42287f259))
(fp_line (start -3.5 -2.5) (end -2.5 -3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 718c2e77-9e15-423b-8967-649aa07fed17))
(fp_line (start -3.5 3.5) (end -3.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b2fd739e-7eb0-423a-85b6-3fb15504a550))
(fp_line (start -2.5 -3.5) (end 3.5 -3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 23209cc3-79b3-4059-8376-4b3838598ed1))
(fp_line (start 3.5 -3.5) (end 3.5 3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 96bed571-cbd0-44a2-984c-1f5d61c61c08))
(fp_line (start 3.5 3.5) (end -3.5 3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 550b0016-c354-423f-b015-098f208c3f2d))
(pad "" smd roundrect (at -0.6375 -0.6375) (size 1.084435 1.084435) (layers "F.Paste") (roundrect_rratio 0.2305347946) (tstamp ac580543-6ae4-4368-9323-ee00d764e5a1))
(pad "" smd roundrect (at -0.6375 0.6375) (size 1.084435 1.084435) (layers "F.Paste") (roundrect_rratio 0.2305347946) (tstamp 34dc85d5-8247-4f4d-8a19-d543010876f5))
(pad "" smd roundrect (at 0.6375 -0.6375) (size 1.084435 1.084435) (layers "F.Paste") (roundrect_rratio 0.2305347946) (tstamp ff69bd5b-f82e-42b5-9d94-4fa5d2ebb78e))
(pad "" smd roundrect (at 0.6375 0.6375) (size 1.084435 1.084435) (layers "F.Paste") (roundrect_rratio 0.2305347946) (tstamp 72eb7ebd-035f-43f6-bdaf-af19cacc57d6))
(pad "1" smd roundrect (at -3.4375 -2.6) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pinfunction "IOVDD") (pintype "power_in") (tstamp 60815f0d-5b1e-44df-85ac-234a47c524ff))
(pad "2" smd roundrect (at -3.4375 -2.2) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "/D0{slash}TX") (pinfunction "GPIO0") (pintype "bidirectional") (tstamp 871624c6-0104-4412-b64a-5220f0853b1e))
(pad "3" smd roundrect (at -3.4375 -1.8) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "/D1{slash}RX") (pinfunction "GPIO1") (pintype "bidirectional") (tstamp 22cb0c88-a332-4b05-aaa2-549ce9e0f144))
(pad "4" smd roundrect (at -3.4375 -1.4) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/D2{slash}SDA") (pinfunction "GPIO2") (pintype "bidirectional") (tstamp 4c640ff1-2d83-4989-b626-a6a91bb764a9))
(pad "5" smd roundrect (at -3.4375 -1) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "/D3{slash}SCL") (pinfunction "GPIO3") (pintype "bidirectional") (tstamp a5ec96f0-3c80-478d-a2aa-7ece2891f16c))
(pad "6" smd roundrect (at -3.4375 -0.6) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "/D4") (pinfunction "GPIO4") (pintype "bidirectional") (tstamp bcc49895-406f-401b-aa9b-a6bfdf2063a0))
(pad "7" smd roundrect (at -3.4375 -0.2) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/D5") (pinfunction "GPIO5") (pintype "bidirectional") (tstamp 29bcce88-f3aa-4aa3-b779-822cbaee56d7))
(pad "8" smd roundrect (at -3.4375 0.2) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "/D6") (pinfunction "GPIO6") (pintype "bidirectional") (tstamp 57a5e71a-4948-41f4-97cb-73fffd8b734f))
(pad "9" smd roundrect (at -3.4375 0.6) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/D7") (pinfunction "GPIO7") (pintype "bidirectional") (tstamp 9b8caca1-d02a-45b6-8da8-fea8554bb770))
(pad "10" smd roundrect (at -3.4375 1) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pinfunction "IOVDD") (pintype "power_in") (tstamp 1808f417-39ef-472e-849a-0111ac3e4cbe))
(pad "11" smd roundrect (at -3.4375 1.4) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "/D8") (pinfunction "GPIO8") (pintype "bidirectional") (tstamp ccc4bc42-69ef-4e15-bf96-084c3b92c0d2))
(pad "12" smd roundrect (at -3.4375 1.8) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "/D9") (pinfunction "GPIO9") (pintype "bidirectional") (tstamp 2c9a61d4-1edb-41e8-bfa2-5b32ec4e0f95))
(pad "13" smd roundrect (at -3.4375 2.2) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "/GND{slash}D10") (pinfunction "GPIO10") (pintype "bidirectional") (tstamp 354d42c9-20ef-4a24-8106-510fa52ca0f7))
(pad "14" smd roundrect (at -3.4375 2.6) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "/GND{slash}D11") (pinfunction "GPIO11") (pintype "bidirectional") (tstamp 7f1560ac-e2d7-4994-9433-aec140d3b9d3))
(pad "15" smd roundrect (at -2.6 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "/D12") (pinfunction "GPIO12") (pintype "bidirectional") (tstamp 1c4539db-f556-49c1-af6c-9812e63fa1c3))
(pad "16" smd roundrect (at -2.2 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "/D13") (pinfunction "GPIO13") (pintype "bidirectional") (tstamp 9d4b5e8d-b5c1-4f7b-b734-45cda97c316e))
(pad "17" smd roundrect (at -1.8 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 44 "/D14") (pinfunction "GPIO14") (pintype "bidirectional") (tstamp c5e4ffd4-384b-41f4-969b-d0acbd35dd18))
(pad "18" smd roundrect (at -1.4 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 50 "/D15") (pinfunction "GPIO15") (pintype "bidirectional") (tstamp 15d4944b-a251-4086-98b2-8ce6e110340f))
(pad "19" smd roundrect (at -1 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "GND") (pinfunction "TESTEN") (pintype "passive") (tstamp a826bbeb-6e53-4ebb-a2fe-f4ea335f7f5f))
(pad "20" smd roundrect (at -0.6 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/XIN") (pinfunction "XIN") (pintype "input") (tstamp e4c940ea-9351-49ff-9864-fbdd7ef5c922))
(pad "21" smd roundrect (at -0.2 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "/XOUT") (pinfunction "XOUT") (pintype "passive") (tstamp 18997530-a183-4522-98ba-fdbbc889775d))
(pad "22" smd roundrect (at 0.2 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pinfunction "IOVDD") (pintype "power_in") (tstamp 9f2cd747-7fa2-4c68-b56f-65e942658ae4))
(pad "23" smd roundrect (at 0.6 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+1V1") (pinfunction "DVDD") (pintype "power_in") (tstamp df50eb11-b94b-4df2-8609-552a3ee681d6))
(pad "24" smd roundrect (at 1 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "unconnected-(U1-SWCLK-Pad24)") (pinfunction "SWCLK") (pintype "output+no_connect") (tstamp d93ac376-4f20-40df-9e0a-a7d161e0b23d))
(pad "25" smd roundrect (at 1.4 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "unconnected-(U1-SWD-Pad25)") (pinfunction "SWD") (pintype "bidirectional+no_connect") (tstamp de31b6ad-9605-45fb-8af0-ac06c546b46e))
(pad "26" smd roundrect (at 1.8 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "/~{RESET}") (pinfunction "RUN") (pintype "input") (tstamp 5f695022-3b85-4118-becf-1f65edd84286))
(pad "27" smd roundrect (at 2.2 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 49 "/D16") (pinfunction "GPIO16") (pintype "bidirectional") (tstamp b6498e5e-ff1d-49b3-b5be-d401c6d5f721))
(pad "28" smd roundrect (at 2.6 3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 59 "/LED") (pinfunction "GPIO17") (pintype "bidirectional") (tstamp e40e778f-81c9-4def-98f1-9a4b4ac92726))
(pad "29" smd roundrect (at 3.4375 2.6) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "unconnected-(U1-GPIO18-Pad29)") (pinfunction "GPIO18") (pintype "bidirectional+no_connect") (tstamp 56c5f9a8-b1d1-4a47-80b8-f53bebf842c2))
(pad "30" smd roundrect (at 3.4375 2.2) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 58 "/VSENSE") (pinfunction "GPIO19") (pintype "bidirectional") (tstamp e618329b-2b01-4801-a176-9d033e920573))
(pad "31" smd roundrect (at 3.4375 1.8) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 45 "/D20") (pinfunction "GPIO20") (pintype "bidirectional") (tstamp 48aca8e1-3de8-4917-8d62-d9c3a72315b1))
(pad "32" smd roundrect (at 3.4375 1.4) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 46 "/D21") (pinfunction "GPIO21") (pintype "bidirectional") (tstamp 1cfa3db7-3400-40c9-b1c5-cb605541f76c))
(pad "33" smd roundrect (at 3.4375 1) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pinfunction "IOVDD") (pintype "power_in") (tstamp f0a6a73f-d2d0-45ab-ad97-645c358de5bf))
(pad "34" smd roundrect (at 3.4375 0.6) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 54 "/D22") (pinfunction "GPIO22") (pintype "bidirectional") (tstamp 81fd183a-c6c1-4087-9325-1da864b560d0))
(pad "35" smd roundrect (at 3.4375 0.2) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 53 "/D23") (pinfunction "GPIO23") (pintype "bidirectional") (tstamp 1f534032-339f-474c-b6d9-c85604b069b5))
(pad "36" smd roundrect (at 3.4375 -0.2) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "unconnected-(U1-GPIO24-Pad36)") (pinfunction "GPIO24") (pintype "bidirectional+no_connect") (tstamp d4956031-f46a-4a19-b3b7-2a282bc58d78))
(pad "37" smd roundrect (at 3.4375 -0.6) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 51 "unconnected-(U1-GPIO25-Pad37)") (pinfunction "GPIO25") (pintype "bidirectional+no_connect") (tstamp e64781e7-01bf-4b40-8fd4-26dbe1588deb))
(pad "38" smd roundrect (at 3.4375 -1) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "/D26{slash}A0") (pinfunction "GPIO26_ADC0") (pintype "bidirectional") (tstamp fcbdce91-cb46-4c94-acde-148815b5dd6c))
(pad "39" smd roundrect (at 3.4375 -1.4) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 39 "/D27{slash}A1") (pinfunction "GPIO27_ADC1") (pintype "bidirectional") (tstamp dc9ca378-95fd-4405-b051-f67605f35cb7))
(pad "40" smd roundrect (at 3.4375 -1.8) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "/D28{slash}A2") (pinfunction "GPIO28_ADC2") (pintype "bidirectional") (tstamp b09e2ef7-52ca-4ebb-b4ad-4531d16b8879))
(pad "41" smd roundrect (at 3.4375 -2.2) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 41 "/D29{slash}A3") (pinfunction "GPIO29_ADC3") (pintype "bidirectional") (tstamp a920de61-6de5-4d0f-99b7-1257134fbc02))
(pad "42" smd roundrect (at 3.4375 -2.6) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pinfunction "IOVDD") (pintype "power_in") (tstamp 0f2864d0-2130-4700-af89-9a2a4beb8a23))
(pad "43" smd roundrect (at 2.6 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pinfunction "ADC_AVDD") (pintype "power_in") (tstamp f767b066-b541-48e4-bd1f-f3408355cc2b))
(pad "44" smd roundrect (at 2.2 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pinfunction "VREG_IN") (pintype "power_in") (tstamp e5274c2c-715b-459d-a02a-d4e978ec9bc9))
(pad "45" smd roundrect (at 1.8 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+1V1") (pinfunction "VREG_VOUT") (pintype "power_out") (tstamp c5ee06d4-0905-4c57-891a-a187b75ed9df))
(pad "46" smd roundrect (at 1.4 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/USB_D-") (pinfunction "USB_DM") (pintype "bidirectional") (tstamp 226dd067-d494-436f-a62c-873150e341be))
(pad "47" smd roundrect (at 1 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/USB_D+") (pinfunction "USB_DP") (pintype "bidirectional") (tstamp 85120def-8fa0-449b-8adb-0c0ef7a95db5))
(pad "48" smd roundrect (at 0.6 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pinfunction "USB_VDD") (pintype "power_in") (tstamp a6aae4ab-b903-4019-9782-ccfa983e7c8c))
(pad "49" smd roundrect (at 0.2 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pinfunction "IOVDD") (pintype "power_in") (tstamp e92f0db0-b1af-4d64-bb79-0bb80180502d))
(pad "50" smd roundrect (at -0.2 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+1V1") (pinfunction "DVDD") (pintype "power_in") (tstamp 5f96e918-65fe-4515-aff5-0cad918d31a0))
(pad "51" smd roundrect (at -0.6 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "/QSPI_SD3") (pinfunction "QSPI_SD3") (pintype "bidirectional") (tstamp f81a42e2-23ac-4c3b-a5de-607e2f69cc57))
(pad "52" smd roundrect (at -1 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "/QSPI_SCLK") (pinfunction "QSPI_SCLK") (pintype "output") (tstamp 5c56be99-500a-4ce1-aa9e-e748199cd14e))
(pad "53" smd roundrect (at -1.4 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "/QSPI_SD0") (pinfunction "QSPI_SD0") (pintype "bidirectional") (tstamp f8a4b227-63a4-4286-9c36-67adfa277953))
(pad "54" smd roundrect (at -1.8 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "/QSPI_SD2") (pinfunction "QSPI_SD2") (pintype "bidirectional") (tstamp dde01a46-ada8-4d1d-9e7e-ed250b432d9e))
(pad "55" smd roundrect (at -2.2 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "/QSPI_SD1") (pinfunction "QSPI_SD1") (pintype "bidirectional") (tstamp 81aa17c4-a25b-4a89-a04d-6e1218027b65))
(pad "56" smd roundrect (at -2.6 -3.4375) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/QSPI_SS") (pinfunction "QSPI_SS") (pintype "bidirectional") (tstamp b05c31a5-24b2-4d82-abcb-ac8706ec0647))
(pad "57" thru_hole circle (at -1.275 -1.275) (size 0.6 0.6) (drill 0.35) (layers "*.Cu")
(net 6 "GND") (pinfunction "GND") (pintype "power_in") (zone_connect 2) (tstamp a7de22b1-5e34-4b4c-8b2b-7ab70f4cfa75))
(pad "57" thru_hole circle (at -1.275 0) (size 0.6 0.6) (drill 0.35) (layers "*.Cu")
(net 6 "GND") (pinfunction "GND") (pintype "power_in") (zone_connect 2) (tstamp 8219278c-b2f5-427d-b600-256ca9581cd2))
(pad "57" thru_hole circle (at -1.275 1.275) (size 0.6 0.6) (drill 0.35) (layers "*.Cu")
(net 6 "GND") (pinfunction "GND") (pintype "power_in") (zone_connect 2) (tstamp 4bd291d2-dae6-42eb-8b89-6ce59b43bb36))
(pad "57" thru_hole circle (at 0 -1.275) (size 0.6 0.6) (drill 0.35) (layers "*.Cu")
(net 6 "GND") (pinfunction "GND") (pintype "power_in") (zone_connect 2) (tstamp 4905ae30-d2dc-4184-b1b7-e8eda52f9e14))
(pad "57" thru_hole circle (at 0 0) (size 0.6 0.6) (drill 0.35) (layers "*.Cu")
(net 6 "GND") (pinfunction "GND") (pintype "power_in") (zone_connect 2) (tstamp 61333d7b-c1c9-4099-a5d3-f2d692f76464))
(pad "57" smd roundrect (at 0 0) (size 3.2 3.2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.045)
(net 6 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 671bf519-0720-4dfb-b6fe-ae03fb9a5a04))
(pad "57" thru_hole circle (at 0 1.275) (size 0.6 0.6) (drill 0.35) (layers "*.Cu")
(net 6 "GND") (pinfunction "GND") (pintype "power_in") (zone_connect 2) (tstamp ec89d624-6468-4a34-87af-0ab66980ca04))
(pad "57" thru_hole circle (at 1.275 -1.275) (size 0.6 0.6) (drill 0.35) (layers "*.Cu")
(net 6 "GND") (pinfunction "GND") (pintype "power_in") (zone_connect 2) (tstamp 7f9dfeec-0a2a-4e9e-9639-f65f3b19ac7e))
(pad "57" thru_hole circle (at 1.275 0) (size 0.6 0.6) (drill 0.35) (layers "*.Cu")
(net 6 "GND") (pinfunction "GND") (pintype "power_in") (zone_connect 2) (tstamp 501fe828-0aa5-4831-a637-bd326f3e9b52))
(pad "57" thru_hole circle (at 1.275 1.275) (size 0.6 0.6) (drill 0.35) (layers "*.Cu")
(net 6 "GND") (pinfunction "GND") (pintype "power_in") (zone_connect 2) (tstamp 41037d49-3263-413f-86b4-076a8b7110bc))
(model "${KISYS3DMOD}/Package_DFN_QFN.3dshapes/QFN-56-1EP_7x7mm_P0.4mm_EP5.6x5.6mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 3893cb9a-9f41-4c9b-8f74-d50a9a3906ee)
(at 127.661992 70.707597 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "Frood.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/5e82cff0-4eb5-4bee-a894-b2366e294553")
(attr smd)
(fp_text reference "R4" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp c0449348-95fd-4c4c-b012-e3e7c9904dec)
)
(fp_text value "27R" (at 0 1.17 90) (layer "F.Fab") hide
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp cc49fed2-c704-4cda-b6f0-a6e336f45f5a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp e1c6967b-9b7b-4c92-9ca0-13c781e171a2)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4dbe8860-9194-4ab9-b5c4-bb144c5730a2))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 80e70d99-3678-4c07-8055-805315d86101))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4bd36c4f-5ef9-4df8-823b-bf6080499d4d))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e388cef5-656f-4755-b0e5-e9cf438a4293))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e38baace-9d40-420e-b94b-f4d5dd8d8cfe))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dd022f30-2ec5-47d8-8c29-27dee6c3ed7d))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0dfa1401-255b-4fbc-83dd-06f84790d3ba))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aabdf864-d1c6-47ea-b461-a07570b62aea))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 64d64ae5-6da5-473e-b550-34c6a599b331))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1ebb50c4-61d8-47e8-be9d-c97b07eceb78))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 47 "/D+") (pintype "passive") (tstamp 01c7f115-3626-46bb-8e6a-f42119aeed79))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/USB_D+") (pintype "passive") (tstamp ef3bf525-97e7-446d-9ace-0401327e1ec9))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "42keebs:PinHeader_2x13+5_P2.54mm_Vertical_Frood" (layer "F.Cu")
(tstamp 3f40445a-6858-4675-8561-207734c7936e)
(at 126.3 56.2495)
(descr "Through hole straight pin header, 1x12, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x12 2.54mm single row")
(property "Sheetfile" "Frood.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Generic connector, single row, 01x13, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/6e480259-60cb-4de2-bdff-4e10a956c027")
(attr through_hole exclude_from_pos_files exclude_from_bom)
(fp_text reference "J1" (at 0 -2.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f07ba2dd-b087-426e-be9d-443bf1d3204a)
)
(fp_text value "Conn_02x13+5" (at 0 32.85) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 818cc760-b333-49d5-ae54-3cc8118a683b)
)
(fp_text user "G|D11" (at -7.35 11.458109) (layer "B.SilkS")
(effects (font (size 0.6 0.5) (thickness 0.1)) (justify mirror))
(tstamp 035544cf-0b53-423f-94f0-1e98b44aa933)
)
(fp_text user "D29" (at 7.640008 13.992374) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 07e1cd64-e028-47aa-b25f-7f4bdbdb6a88)
)
(fp_text user "D-" (at 7.64 1.3) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 097c470b-6a56-49a8-9e05-ab45fbfa2159)
)
(fp_text user "D22" (at 7.638324 24.16147) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 17b2d073-a8eb-43f7-821f-19fc0ee4d129)
)
(fp_text user "D27" (at 7.640008 19.086044) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 24571aee-6c8e-4489-a881-95d1b51eda89)
)
(fp_text user "D9" (at -7.481627 31.701702) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 254a6a0f-1a78-4415-b8a8-2870ca958b95)
)
(fp_text user "D12" (at -5.062414 31.696702) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 270ca09e-33c8-4608-af45-2a67e386c11e)
)
(fp_text user "D4" (at -7.602627 19.077044) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 2aa796d1-3530-46fd-9dd7-ccdefe718346)
)
(fp_text user "D23" (at 7.635243 29.238192) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 3e90a1ff-d073-4b6d-b149-fec485eb180e)
)
(fp_text user "D2" (at -7.602627 14.003703) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 58175b97-ab5c-4cda-a050-477b5f16cc66)
)
(fp_text user "D14" (at 0.014308 31.696702) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 58ce3004-3923-4ed1-b421-f26cc3ca86ed)
)
(fp_text user "D+" (at -7.602627 1.303381) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 5a06b463-42e6-4547-916a-2b81a7c75c8b)
)
(fp_text user "D26" (at 7.640008 21.628257) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 5c9c804b-71e0-45bb-8309-d635978b8cba)
)
(fp_text user "GND" (at 7.64 6.378006) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 6dd439d3-0319-425b-b265-1c1c8b3558d9)
)
(fp_text user "D5" (at -7.602627 21.619257) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 794d3cf5-de90-41ff-8433-964060a5d3ab)
)
(fp_text user "D28" (at 7.640008 16.543831) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 87d56aa9-f405-4289-b224-e24a227c9c23)
)
(fp_text user "D3" (at -7.602627 16.544503) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 981a8393-3cfc-48b8-8eeb-6d10f3d598f9)
)
(fp_text user "VCC" (at 7.638324 11.45965) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 9d1e039f-3250-4f17-889b-5e1b99ebaf49)
)
(fp_text user "RAW" (at 7.619992 3.842212) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 9e0698f3-bede-4a10-98ee-388f1865ee9a)
)
(fp_text user "RST" (at 7.64 8.920219) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp 9ed95eb5-28e2-4627-8765-39da8cae32e7)
)
(fp_text user "D0" (at -7.602627 3.848703) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp aa7e946d-faae-463a-a169-36b856268c56)
)
(fp_text user "D13" (at -2.527905 31.696702) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp ac27e7b2-40a2-4c42-bba6-4d221e298a0b)
)
(fp_text user "D6" (at -7.602627 24.16147) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp b56b397e-9d9c-406c-8022-cdb863410c9d)
)
(fp_text user "D8" (at -7.602627 29.238192) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp d02389c0-4ea2-4118-984f-6e6c41d5061a)
)
(fp_text user "D15" (at 2.556521 31.696702) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp daec1e36-2faf-490b-ac01-983aeb0a42b2)
)
(fp_text user "D7" (at -7.602627 26.703683) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp e1f839e2-df66-4da5-96c2-3437416176eb)
)
(fp_text user "D16" (at 5.09103 31.696702) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp f21973dd-92a8-4f48-920e-75d195aa7b83)
)
(fp_text user "D20" (at 7.635243 26.703683) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp f2904309-f4de-4eab-87af-dc24a15924db)
)
(fp_text user "D1" (at -7.602627 6.381387) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp f331d7ab-ad3a-4e27-be3c-df78cd3e109d)
)
(fp_text user "D21" (at 7.215674 31.696702) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify mirror))
(tstamp f5088f81-0810-41b1-838a-8d50d4877137)
)
(fp_text user "G|D10" (at -7.35 8.9236) (layer "B.SilkS")
(effects (font (size 0.6 0.5) (thickness 0.1)) (justify mirror))
(tstamp f90ec8c1-c89f-4332-bcd1-97845215b399)
)
(fp_text user "D12" (at -5.061992 31.7) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 0fc0c2f0-14c7-40bb-b9b3-80a67c6f06e5)
)
(fp_text user "D8" (at -7.599992 29.243703) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 1cf24205-0291-461a-beca-f585d0a98916)
)
(fp_text user "D21" (at 7.221008 31.7) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 1db0fea7-7728-4ee8-bb10-1c366e5dcd5b)
)
(fp_text user "RST" (at 7.640008 8.923703) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 27af7a5e-ff34-43ef-8959-da00d8870cbb)
)
(fp_text user "D3" (at -7.602627 16.548703) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 314cf250-cde9-4f38-85b8-a58fe1fc8932)
)
(fp_text user "D16" (at 5.098008 31.7) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 35244afa-5fec-4c23-9bb7-bb54f135c9b0)
)
(fp_text user "G|D11" (at -7.35 11.463703) (layer "F.SilkS")
(effects (font (size 0.6 0.5) (thickness 0.1)))
(tstamp 3c19d5d2-85a1-4c5b-9d32-566b31164bef)
)
(fp_text user "D27" (at 7.640008 19.092703) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 525f5c9c-8dda-4689-acf6-fa4533dfd518)
)
(fp_text user "D6" (at -7.599992 24.163703) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 5507f958-aab9-4a04-bf91-59fc7d73fee9)
)
(fp_text user "D9" (at -7.478992 31.705) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 60b2631b-717c-42ee-9042-19be7aa14458)
)
(fp_text user "D+" (at -7.599992 1.303703) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 688b8523-185c-4fdb-a3ce-4a5c4fa212ee)
)
(fp_text user "D23" (at 7.640008 29.243703) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 68b72b16-9af3-4faf-8330-7b8d3d893f3e)
)
(fp_text user "D13" (at -2.521992 31.7) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 798f6678-26b3-4ed6-9ff4-901deee5eaf2)
)
(fp_text user "D14" (at 0.018008 31.7) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 82ecf953-600f-42af-9aab-0028d2a9242f)
)
(fp_text user "D1" (at -7.602627 6.383703) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 83f1b71b-aaf8-4403-a729-4a65624f0417)
)
(fp_text user "D29" (at 7.640008 13.998703) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 8d2b38fc-9da5-49d3-aadb-2d5d75142d0f)
)
(fp_text user "D20" (at 7.640008 26.703703) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 97a12eea-ace5-498c-9e44-ea974fc205a5)
)
(fp_text user "D26" (at 7.640008 21.632703) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))