-
Notifications
You must be signed in to change notification settings - Fork 1
/
ploopy-nano.kicad_pcb
15669 lines (15623 loc) · 708 KB
/
ploopy-nano.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "Net-(C1-Pad1)")
(net 2 "GND")
(net 3 "RESET")
(net 4 "Net-(C3-Pad1)")
(net 5 "VBUS")
(net 6 "Net-(C10-Pad1)")
(net 7 "Net-(FB1-Pad2)")
(net 8 "Net-(FB2-Pad1)")
(net 9 "Net-(FB2-Pad2)")
(net 10 "Net-(FB3-Pad1)")
(net 11 "Net-(FB3-Pad2)")
(net 12 "ICSP_MISO")
(net 13 "ICSP_SCLK")
(net 14 "ICSP_MOSI")
(net 15 "Net-(J2-Pad1)")
(net 16 "UART_TX")
(net 17 "UART_RX")
(net 18 "Net-(J4-PadA5)")
(net 19 "unconnected-(J4-PadB8)")
(net 20 "unconnected-(J4-PadA8)")
(net 21 "Net-(J4-PadB5)")
(net 22 "Net-(R3-Pad2)")
(net 23 "Net-(D1-Pad1)")
(net 24 "USB_DN")
(net 25 "USB_DP")
(net 26 "unconnected-(U1-Pad1)")
(net 27 "unconnected-(U1-Pad8)")
(net 28 "ADNS_SCLK")
(net 29 "Net-(C13-Pad1)")
(net 30 "Net-(C14-Pad1)")
(net 31 "unconnected-(U1-Pad18)")
(net 32 "unconnected-(U1-Pad19)")
(net 33 "unconnected-(U1-Pad22)")
(net 34 "unconnected-(U1-Pad25)")
(net 35 "unconnected-(U1-Pad26)")
(net 36 "unconnected-(U1-Pad27)")
(net 37 "ADNS_CS")
(net 38 "unconnected-(U1-Pad29)")
(net 39 "unconnected-(U1-Pad30)")
(net 40 "ADNS_SDIO")
(net 41 "unconnected-(U1-Pad32)")
(net 42 "unconnected-(U1-Pad36)")
(net 43 "unconnected-(U1-Pad37)")
(net 44 "unconnected-(U1-Pad38)")
(net 45 "unconnected-(U1-Pad39)")
(net 46 "unconnected-(U1-Pad40)")
(net 47 "unconnected-(U1-Pad41)")
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 0716ae56-5f9a-4dc6-b4c0-863f9e7dc14a)
(at 145.3 106)
(descr "Capacitor SMD 0603 (1608 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" "ploopy-nano.kicad_sch")
(property "Sheetname" "")
(path "/fdeb56eb-71bc-4b2b-8b32-0a4286d8a424")
(attr smd)
(fp_text reference "C11" (at -2.9 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dbd6cab9-6f0f-4e2e-847a-62c61bff747f)
)
(fp_text value "10u" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cec64077-5a41-4fe0-b6e1-d9d3477ed5c9)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp ffb23710-9fa6-4d89-9a72-996f29fdb46d)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 272be69c-b5c8-478c-b212-0c6b40a99dfc))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp b8140986-9348-4aec-84b1-8f79ddf6648d))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 44485c13-6e9d-400f-9084-48972f82f43e))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 67907daa-7f64-4bc7-acc2-9e72f294bb34))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b9ed05e6-c098-4a63-9d47-8ca5f009660a))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c7aa6f35-8426-4c5a-b859-80db10238711))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 30cb1b53-03bc-4386-a72d-26f119009e2e))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp a042d155-ee3f-4804-9d27-45d2efecbe9c))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp c2829fad-9de6-48d6-8de8-9544a9b64908))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp eb0b2827-909a-46b9-964f-c22904bdb44d))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "VBUS") (pintype "passive") (tstamp 84e24362-84ca-496e-87e8-f4d18411e7be))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 456742da-4975-4829-b4b9-9af3225b9a00))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 0820534c-d4b3-40e8-b96a-0ca1ebc1b430)
(at 156.8 79.8 -90)
(descr "Capacitor SMD 0603 (1608 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" "ploopy-nano.kicad_sch")
(property "Sheetname" "")
(path "/7ab1dbf5-ba7e-4955-9611-1ea154a3b2c2")
(attr smd)
(fp_text reference "C1" (at 0 -1.43 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7fdde62f-c5d7-4f30-8a88-39a4a97fcd98)
)
(fp_text value "0.1u" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 770552d5-ca36-4142-84e6-221688e13811)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 1aeefaac-935a-49a5-8c97-96be576bd835)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 5e0e0364-ae98-46d5-8ffb-d114c837db95))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp fc72d1e5-5a53-4a6f-aac8-274e020b0b80))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3631e150-f5de-4435-91fb-1ca5023f736d))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 400c566b-901e-4aff-a708-a7f281440ba6))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 52fbe034-7595-4716-84c5-de5be7fd700a))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 74c59b3b-12d7-4a72-8220-8232737bd2d1))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 17e50f9c-97d4-4672-8b40-8bbcd22e22ea))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 35adbbed-64e3-4c9f-bb80-2985551b9687))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 9551d01c-42d8-4a29-8da5-b37415a9dca0))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp dde424b9-fc48-4baa-bec9-2dd9c7ce6209))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "Net-(C1-Pad1)") (pintype "passive") (tstamp 1ee5b71f-fd12-42e5-a54a-76624ffe7c69))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 82ccd3e1-4cc4-4d05-be43-f20a82015fdb))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 096ebe78-e21b-4643-a594-bebc87cd29d4)
(at 166.975 92.3 180)
(descr "Resistor SMD 0603 (1608 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" "ploopy-nano.kicad_sch")
(property "Sheetname" "")
(path "/3edfcd50-8526-4c6a-9240-9fccd0333f66")
(attr smd)
(fp_text reference "R4" (at 0 -1.43) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 257496f5-5966-40dc-8032-7420c7e23844)
)
(fp_text value "47" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 551f9de9-59e2-4839-b2f3-b553f989e186)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp df9ca802-033b-49bb-921f-a2445c762a05)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 4ea213d1-2b2b-4a32-a903-99c5cb99df1a))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 564f12c3-413a-4309-a705-75bfea0b225c))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp abbcb185-1635-4101-a082-981d6c96f36e))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b186f289-56f8-4ee0-97b5-bdfee40a971d))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c9f8f89a-95dd-49ec-a86b-c95c2d8698d9))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp fed116f5-13d5-4458-b5a7-3025ca84b86f))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 01256db1-3425-46de-8997-d5dac2b2ab02))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 0d68f4e1-af5d-4e74-a2f7-974d8663a535))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 8b113263-ee5a-4ab2-ae10-d5830ca46db5))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp c8cbacba-7a71-4fda-9ec3-2d44282e6ff0))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "Net-(R3-Pad2)") (pintype "passive") (tstamp f86217ef-721f-4e93-926c-b9421c98e9a9))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "Net-(D1-Pad1)") (pintype "passive") (tstamp 5050f838-82b1-4d2f-a849-d73944920fd1))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 0c404830-6af5-47d1-916e-a364a0668a04)
(at 160.225 86.5 90)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "ploopy-nano.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/d6cc136a-5c46-476b-8887-3ee7e5939c43")
(attr through_hole exclude_from_bom)
(fp_text reference "J2" (at -2.5 1.175) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ab3f9479-c860-4341-9b4f-05d25e60137d)
)
(fp_text value "Conn_01x02" (at 0 4.87 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8112310c-2116-43ce-9091-cd69905a22a8)
)
(fp_text user "${REFERENCE}" (at 0 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d77795f7-807b-4911-afe3-826e3d532794)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 0e854d7a-c55f-45f2-b39d-556b70b40eb9))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 19431e9e-63bf-430f-bc80-f72487110250))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 53891f7f-b538-462f-8ac8-15ff1532e821))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp b52a85a2-c5b6-4c3d-a69c-932a17dce97a))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp cf1882d1-3f6d-469f-bf45-923ec1620679))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp fe4a64b1-0674-40bb-80d4-ab7cee0d1f94))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 24a4ee05-5a86-40d5-b609-55732863112d))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 522cc8f0-5613-4208-93b9-e5eda4b54e8f))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp a09960a6-6e2a-448b-ad97-459d2d688aff))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp aa79b3c4-25a3-4c30-8706-f47a78c0bdd5))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 0fd12d73-8aee-41db-9ed6-bd6e2045c5e1))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 19461d9c-c1b0-4620-8089-d68fdb132a1a))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 1f040f11-a686-405c-a67d-72b642b100ad))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp ba7913e6-9c62-4408-a9a3-a91adfb92b59))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp d600208f-31e8-4901-a5fe-97eaa4ca7e2f))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "Net-(J2-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 282490c7-56e3-4d41-8c5b-37b83985d504))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 12fdb1ec-bb3c-4c06-88f4-f4b706739f78))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TYPE-C-31-M-12:HRO_TYPE-C-31-M-12" (layer "F.Cu")
(tedit 6256FFD5) (tstamp 1806abcd-d75f-4a23-ae88-8c5bccde6273)
(at 148.1 123.3625)
(property "MANUFACTURER" "HRO Electronics")
(property "MAXIMUM_PACKAGE_HEIGHT" "3.31mm")
(property "PARTREV" "A")
(property "STANDARD" "Manufacturer Recommendations")
(property "Sheetfile" "ploopy-nano.kicad_sch")
(property "Sheetname" "")
(path "/469ff5ca-171b-4b60-939b-0ae652782e1f")
(attr through_hole)
(fp_text reference "J4" (at -1.825 -7.435) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 29ecef45-57a8-438f-b99c-e4f220d46e8a)
)
(fp_text value "TYPE-C-31-M-12" (at 6.43 4.135) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c24a42ae-416a-45d1-9723-e4b05cb361d8)
)
(fp_line (start 4.47 1.37) (end 4.47 2.6) (layer "F.SilkS") (width 0.127) (tstamp 2f8a04a6-df21-4e2f-9196-d985006e821a))
(fp_line (start 4.47 2.6) (end -4.47 2.6) (layer "F.SilkS") (width 0.127) (tstamp 4dee81ba-b495-4ba3-8c5f-bbd92944beb3))
(fp_line (start -4.47 -2.81) (end -4.47 -1.37) (layer "F.SilkS") (width 0.127) (tstamp 5866ebad-adfc-468b-b6cf-a24cde184a3b))
(fp_line (start -4.47 2.6) (end -4.47 1.37) (layer "F.SilkS") (width 0.127) (tstamp 59a89160-d0f2-4a56-b5a1-10833f504f5c))
(fp_line (start 4.47 -2.81) (end 4.47 -1.37) (layer "F.SilkS") (width 0.127) (tstamp c936aab6-68c6-4948-be74-0033340ee1b8))
(fp_circle (center -3.4 -6.4) (end -3.3 -6.4) (layer "F.SilkS") (width 0.2) (fill none) (tstamp a070d511-688a-4712-91d7-afaa6e02d80c))
(fp_line (start -5.095 -6.07) (end -5.095 2.85) (layer "F.CrtYd") (width 0.05) (tstamp 4765949d-275a-42c7-936f-b35b228e9c58))
(fp_line (start 5.095 2.85) (end 5.095 -6.07) (layer "F.CrtYd") (width 0.05) (tstamp 745ad5ae-418a-46e0-9445-6ebead373018))
(fp_line (start 5.095 -6.07) (end -5.095 -6.07) (layer "F.CrtYd") (width 0.05) (tstamp 7eb1efa8-57dd-4115-877b-df633bc6dbf1))
(fp_line (start -5.095 2.85) (end 5.095 2.85) (layer "F.CrtYd") (width 0.05) (tstamp d77cfd52-6bdb-4d49-8fe1-1819617a84a5))
(fp_line (start -4.47 -4.7) (end -4.47 2.6) (layer "F.Fab") (width 0.127) (tstamp 9ae0a0e5-c601-4508-a21a-8743542f84eb))
(fp_line (start 4.47 -4.7) (end -4.47 -4.7) (layer "F.Fab") (width 0.127) (tstamp b7bc513c-5a55-4d8e-b156-933fb5a30ee0))
(fp_line (start -4.47 2.6) (end 4.47 2.6) (layer "F.Fab") (width 0.127) (tstamp c52d2f44-d6e9-4ece-96bf-871392f01259))
(fp_line (start 4.47 2.6) (end 4.47 -4.7) (layer "F.Fab") (width 0.127) (tstamp d7783c6e-f8a1-4dba-91d8-1eb6dfd54214))
(fp_circle (center -3.4 -6.4) (end -3.3 -6.4) (layer "F.Fab") (width 0.2) (fill none) (tstamp 6d7fbb65-0ab2-4143-ba95-985fd1a0bc74))
(pad "" np_thru_hole circle locked (at 2.89 -3.65) (size 0.7 0.7) (drill 0.7) (layers *.Cu *.Mask) (tstamp 57c95f1d-101d-4355-bc44-c369a613d84b))
(pad "" np_thru_hole circle locked (at -2.89 -3.65) (size 0.7 0.7) (drill 0.7) (layers *.Cu *.Mask) (tstamp ba3f78e1-ac4f-464b-bd90-3f7bf827d06f))
(pad "A1B12" smd rect locked (at -3.25 -5.095) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 0a5324a0-bb99-4234-8185-8224f3998c72))
(pad "A4B9" smd rect locked (at -2.45 -5.095) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(FB1-Pad2)") (pinfunction "VBUS") (pintype "power_in") (tstamp 3d5aad5a-1c68-40d2-9c40-7fe649212033))
(pad "A5" smd rect locked (at -1.25 -5.095) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "Net-(J4-PadA5)") (pinfunction "CC1") (pintype "bidirectional") (tstamp d4ca1baf-b652-44f8-9399-a762e1ff2e69))
(pad "A6" smd rect locked (at -0.25 -5.095) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "Net-(FB3-Pad2)") (pinfunction "DP1") (pintype "bidirectional") (tstamp 8d175b82-3cad-43f2-be27-189c20bddb36))
(pad "A7" smd rect locked (at 0.25 -5.095) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "Net-(FB2-Pad2)") (pinfunction "DN1") (pintype "bidirectional") (tstamp 12fd7de7-e076-40f5-99e4-3301210c31a5))
(pad "A8" smd rect locked (at 1.25 -5.095) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "unconnected-(J4-PadA8)") (pinfunction "SBU1") (pintype "bidirectional+no_connect") (tstamp 09e95b9e-6212-4979-bd9e-d2c43694e231))
(pad "B1A12" smd rect locked (at 3.25 -5.095) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 9632fa90-70bc-4240-9346-7fb24f9adee5))
(pad "B4A9" smd rect locked (at 2.45 -5.095) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(FB1-Pad2)") (pinfunction "VBUS") (pintype "power_in") (tstamp 7a5eea15-10f3-4d8e-9c46-b0883ce9b4f4))
(pad "B5" smd rect locked (at 1.75 -5.095) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "Net-(J4-PadB5)") (pinfunction "CC2") (pintype "bidirectional") (tstamp 798df0c7-bdec-4115-9b83-4208599f1882))
(pad "B6" smd rect locked (at 0.75 -5.095) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "Net-(FB3-Pad2)") (pinfunction "DP2") (pintype "bidirectional") (tstamp 93e06c03-c679-4607-885a-a61250f8e95c))
(pad "B7" smd rect locked (at -0.75 -5.095) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "Net-(FB2-Pad2)") (pinfunction "DN2") (pintype "bidirectional") (tstamp 945a450f-971a-4bd6-8807-67d06e6cd087))
(pad "B8" smd rect locked (at -1.75 -5.095) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "unconnected-(J4-PadB8)") (pinfunction "SBU2") (pintype "bidirectional+no_connect") (tstamp 6faf6210-f6b0-4f60-b159-60d74ea61c8c))
(pad "S1" thru_hole oval locked (at -4.32 -4.18) (size 1.05 2.1) (drill oval 0.65 1.75) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 0d996f7c-2c66-4d63-a7c3-d0958079dfce))
(pad "S2" thru_hole oval locked (at 4.32 -4.18) (size 1.05 2.1) (drill oval 0.65 1.75) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp b706e67a-69e2-467f-b296-32cff3ab47c2))
(pad "S3" thru_hole oval locked (at -4.32 0) (size 1.05 2.1) (drill oval 0.65 1.25) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 72658dd6-cdd1-4fef-a661-4d575347a9bb))
(pad "S4" thru_hole oval locked (at 4.32 0) (size 1.05 2.1) (drill oval 0.65 1.25) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 78efbef1-4b1d-4ade-b2f1-d0fa85822bf5))
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 1958e807-90f6-44dc-917e-e3d716281100)
(at 132 100.525 -90)
(descr "Resistor SMD 0603 (1608 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" "ploopy-nano.kicad_sch")
(property "Sheetname" "")
(path "/6d95b162-a76b-442a-81d7-2ccf0f764b3a")
(attr smd)
(fp_text reference "R5" (at -2.5 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 385a53a8-e882-42e3-8426-2d61081bd675)
)
(fp_text value "22" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2fc73920-28ef-49aa-8c17-d95e4f09e4c2)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 4a996938-bf39-4b62-9377-db84669f4131)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 664798b0-41de-41ac-953c-b6221f07dec0))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 7614543c-e6ce-4549-8025-c0aa4cf9ac88))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 315de1d6-f948-448a-abd0-f4f0b4e4c5b7))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 323c332f-de6f-4b75-a8d9-92e97dc05b04))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 539c28c9-745a-4fa0-9b80-768a67e2ac5e))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 961e3c95-d323-4976-ab9a-ff57f3e75677))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 230dd547-92ae-4139-9318-5ab69fb525a0))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 34ccb38c-191a-4f06-bccb-d97f95aece44))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 6ba07d70-8efb-4181-b712-d8aec46b65fc))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 8f2c8c78-f58b-4a3c-a11c-6e89730f43ec))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "USB_DN") (pintype "passive") (tstamp 1e7a0c1e-d55d-435a-a906-00792451e215))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(FB2-Pad1)") (pintype "passive") (tstamp 4fe5502e-c85c-4151-a01e-bffb2582bb32))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "IP4220CZ6:SOT95P275X110-6N" (layer "F.Cu")
(tedit 63384693) (tstamp 1e393897-2e88-4894-b9b1-ea0613c1568a)
(at 150.5 113.4)
(property "MPN" "IP4220CZ6")
(property "OC_FARNELL" "1506629")
(property "OC_NEWARK" "61M6815")
(property "PACKAGE" "SSOT-6")
(property "SUPPLIER" "NXP")
(property "Sheetfile" "ploopy-nano.kicad_sch")
(property "Sheetname" "")
(path "/325f73a9-9d33-4505-b6d1-295c1d124188")
(attr through_hole)
(fp_text reference "U2" (at 0 -2.6) (layer "F.SilkS")
(effects (font (size 1.640094 1.640094) (thickness 0.15)))
(tstamp 861106be-696c-4434-bd37-9c674f63b0e3)
)
(fp_text value "IP4220CZ6" (at 13.22988 3.409245) (layer "F.Fab")
(effects (font (size 1.642717 1.642717) (thickness 0.15)))
(tstamp 4e448c8b-361f-47cf-90ae-ebe37ac7092b)
)
(fp_line (start 0.5588 -1.5494) (end 0.3048 -1.5494) (layer "F.SilkS") (width 0.1524) (tstamp 147d99f0-bd43-4030-a4af-12dc5c3c6e91))
(fp_line (start -0.3048 -1.5494) (end -0.5588 -1.5494) (layer "F.SilkS") (width 0.1524) (tstamp ae44e444-e121-450b-81f2-6b62d20661ea))
(fp_line (start 0.3048 -1.5494) (end -0.3048 -1.5494) (layer "F.SilkS") (width 0.1524) (tstamp e7dc2e9a-f324-4eea-a1ae-d6a676dc2146))
(fp_arc (start 0.3048 -1.5494) (mid 0 -1.2446) (end -0.3048 -1.5494) (layer "F.SilkS") (width 0.1524) (tstamp e6e949b9-34f3-4a15-a960-535edeffd82c))
(fp_line (start 1.4986 -0.254) (end 0.8382 -0.254) (layer "F.Fab") (width 0.1) (tstamp 05718315-ecd6-4183-977e-ab6266ab2c6a))
(fp_line (start -1.4986 -0.254) (end -1.4986 0.254) (layer "F.Fab") (width 0.1) (tstamp 0b71ff90-08ea-4262-a2dd-681a3ecba3ca))
(fp_line (start -0.8382 -0.254) (end -1.4986 -0.254) (layer "F.Fab") (width 0.1) (tstamp 0bc2496b-4700-4e3b-b9cf-3bb7766338d4))
(fp_line (start 0.8382 -1.1938) (end 0.8382 -0.7112) (layer "F.Fab") (width 0.1) (tstamp 0c69acb5-3ca5-48f0-b1ff-0be981dce74a))
(fp_line (start 0.8382 -0.7112) (end 1.4986 -0.7112) (layer "F.Fab") (width 0.1) (tstamp 143e9512-577f-48df-9fd2-9e04a15619db))
(fp_line (start 0.8382 1.1938) (end 1.4986 1.1938) (layer "F.Fab") (width 0.1) (tstamp 17f7c206-a8a3-43b5-b3bc-6abb2268abbd))
(fp_line (start -0.8382 -1.5494) (end -0.8382 -1.1938) (layer "F.Fab") (width 0.1) (tstamp 181d852d-7637-461d-a4a2-fbc121d655ef))
(fp_line (start -0.8382 -0.7112) (end -0.8382 -0.254) (layer "F.Fab") (width 0.1) (tstamp 1b992159-ee0e-4c35-977c-930f44145d3f))
(fp_line (start 1.4986 -0.7112) (end 1.4986 -1.1938) (layer "F.Fab") (width 0.1) (tstamp 1ee9ff3c-6c42-480c-bcc5-77b5c4faa253))
(fp_line (start -0.8382 -1.1938) (end -0.8382 -0.7112) (layer "F.Fab") (width 0.1) (tstamp 1f4bb6ec-1dce-4ee4-8e6e-b731516cff36))
(fp_line (start -1.4986 1.1938) (end -0.8382 1.1938) (layer "F.Fab") (width 0.1) (tstamp 21c51344-96ee-4d93-aa80-f9877eeb93bb))
(fp_line (start -1.4986 -0.7112) (end -0.8382 -0.7112) (layer "F.Fab") (width 0.1) (tstamp 28456185-803e-4081-875f-be6459377ac7))
(fp_line (start -1.4986 -1.1938) (end -1.4986 -0.7112) (layer "F.Fab") (width 0.1) (tstamp 3c23c901-b49a-4908-a75f-0f4dd47946ca))
(fp_line (start 0.8382 1.5494) (end 0.8382 1.1938) (layer "F.Fab") (width 0.1) (tstamp 41dfb2b7-0372-4864-94fe-a669680ca310))
(fp_line (start 1.4986 -1.1938) (end 0.8382 -1.1938) (layer "F.Fab") (width 0.1) (tstamp 442c697c-1e58-445b-a938-241b1ba0c84d))
(fp_line (start 0.8382 0.7112) (end 0.8382 0.254) (layer "F.Fab") (width 0.1) (tstamp 503c2b3d-ded2-4615-9077-119b1cac55cd))
(fp_line (start 1.4986 1.1938) (end 1.4986 0.7112) (layer "F.Fab") (width 0.1) (tstamp 541cb84d-54d0-42bc-b06a-7a26f0dff44a))
(fp_line (start -0.3048 -1.5494) (end -0.8382 -1.5494) (layer "F.Fab") (width 0.1) (tstamp 5c842342-17a8-4f47-8498-a6dd79ac3c50))
(fp_line (start 1.4986 0.7112) (end 0.8382 0.7112) (layer "F.Fab") (width 0.1) (tstamp 70b2f01c-f396-4b4a-920d-bc66cd751e59))
(fp_line (start 0.8382 -0.254) (end 0.8382 -0.7112) (layer "F.Fab") (width 0.1) (tstamp 71d6880d-a176-49b1-83ea-9e388e344e5a))
(fp_line (start -0.8382 -1.1938) (end -1.4986 -1.1938) (layer "F.Fab") (width 0.1) (tstamp 76427436-6c63-4cb5-b7e1-95c922aaedc9))
(fp_line (start -0.8382 -0.254) (end -0.8382 0.254) (layer "F.Fab") (width 0.1) (tstamp 7867ddc5-d336-4d07-9261-df7e8ff42fd0))
(fp_line (start -0.8382 1.1938) (end -0.8382 0.7112) (layer "F.Fab") (width 0.1) (tstamp 7af20d96-f755-41ef-bb72-b19d6ac2d591))
(fp_line (start -0.8382 0.7112) (end -1.4986 0.7112) (layer "F.Fab") (width 0.1) (tstamp 80fce97c-bffc-4061-8348-fb771a8c5ef5))
(fp_line (start 0.8382 1.1938) (end 0.8382 0.7112) (layer "F.Fab") (width 0.1) (tstamp 91bdfdfd-1c34-45a8-85f1-4251209a1f5e))
(fp_line (start 0.8382 -1.5494) (end 0.8382 -1.1938) (layer "F.Fab") (width 0.1) (tstamp af017dc3-01cc-412f-8091-e450a3bd94c5))
(fp_line (start -0.8382 1.5494) (end 0.8382 1.5494) (layer "F.Fab") (width 0.1) (tstamp b59c376c-c637-41a9-9acc-ef845c65ec14))
(fp_line (start -1.4986 0.7112) (end -1.4986 1.1938) (layer "F.Fab") (width 0.1) (tstamp b88d9a28-d926-462b-b555-404f2eb2675c))
(fp_line (start 0.3048 -1.5494) (end -0.3048 -1.5494) (layer "F.Fab") (width 0.1) (tstamp bd13bee4-a18b-4ebe-a41a-b074644004c8))
(fp_line (start 0.8382 0.254) (end 0.8382 -0.254) (layer "F.Fab") (width 0.1) (tstamp c37ff1c5-9120-4f32-a83a-3d04144af6ff))
(fp_line (start -0.8382 0.254) (end -0.8382 0.7112) (layer "F.Fab") (width 0.1) (tstamp c9cd4fbe-cc51-40e7-bb07-94d3effaebe1))
(fp_line (start -0.8382 1.5494) (end -0.8382 1.1938) (layer "F.Fab") (width 0.1) (tstamp ce78a603-18a5-4aa4-9b73-4a85d9816c55))
(fp_line (start 0.8382 0.254) (end 1.4986 0.254) (layer "F.Fab") (width 0.1) (tstamp cf2e87bc-e3d6-4484-ac39-775aa2ee5793))
(fp_line (start 0.8382 -1.5494) (end 0.3048 -1.5494) (layer "F.Fab") (width 0.1) (tstamp d54ae940-d842-45b6-a341-0c895a2d1e6e))
(fp_line (start -1.4986 0.254) (end -0.8382 0.254) (layer "F.Fab") (width 0.1) (tstamp f4713af3-035c-4015-8f64-8f1302938eaf))
(fp_line (start 1.4986 0.254) (end 1.4986 -0.254) (layer "F.Fab") (width 0.1) (tstamp fb3e4f12-a34b-406e-93f7-f00a290eb226))
(fp_arc (start 0.3048 -1.5494) (mid 0 -1.2446) (end -0.3048 -1.5494) (layer "F.Fab") (width 0.1) (tstamp da21c3b8-f90c-4ee5-a86d-a6a99cc179ab))
(pad "1" smd rect locked (at -1.27 -0.9398) (size 1.3208 0.5588) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "Net-(FB3-Pad2)") (pinfunction "I/O_4") (pintype "bidirectional") (tstamp 493ca550-f984-42cb-809d-6ff714665920))
(pad "2" smd rect locked (at -1.27 0) (size 1.3208 0.5588) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 904c6fb8-9fcf-4e7f-bf07-df5bb010b574))
(pad "3" smd rect locked (at -1.27 0.9398) (size 1.3208 0.5588) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "Net-(FB2-Pad2)") (pinfunction "I/O") (pintype "bidirectional") (tstamp 84bd2604-ab29-4232-9708-dd501f5cd8a3))
(pad "4" smd rect locked (at 1.27 0.9398) (size 1.3208 0.5588) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(FB1-Pad2)") (pinfunction "I/O_3") (pintype "bidirectional") (tstamp 3b08f2c4-a6c3-4cc6-9909-c55a7b798b94))
(pad "5" smd rect locked (at 1.27 0) (size 1.3208 0.5588) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(FB1-Pad2)") (pinfunction "VP") (pintype "power_in") (tstamp 3330de07-0d3c-4119-bc1e-505e02ffc57b))
(pad "6" smd rect locked (at 1.27 -0.9398) (size 1.3208 0.5588) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(FB1-Pad2)") (pinfunction "I/O_2") (pintype "bidirectional") (tstamp 086e0499-f39b-4a5f-80bb-6bd0198f245a))
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 1f42ef6a-6d72-4809-8c45-285c2fbe1ce6)
(at 142.4 87.4 180)
(descr "Capacitor SMD 0603 (1608 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" "ploopy-nano.kicad_sch")
(property "Sheetname" "")
(path "/bd0aa30c-6ed1-4eb0-8def-6026484126e4")
(attr smd)
(fp_text reference "C7" (at 2.6 -0.1) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2e72ba72-f1c1-4cf4-999e-187088741230)
)
(fp_text value "0.1u" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a6b0e13c-07cf-4867-bb17-d12ab51cd661)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 11e43543-749d-4150-8fa5-8cae39347bd7)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 03a91a0e-23de-4dee-8b47-96a5d31fc1c8))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 1b93f56b-9a0c-4e1c-8e92-8cecf82f67aa))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0f50c93f-abdf-4b20-91eb-1d5839ba2304))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 286e2ece-6f84-4e6c-93ef-ef35618b3774))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp da6a552e-20cc-43e1-a357-048e57e81002))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ddbfb861-42b4-4c1e-8cbc-1258efa68e8a))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 3246f2a0-8d96-422c-845b-694ca12b81ef))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp aef57c2f-62af-494d-be01-8bc151f08ad5))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp af98fb2b-5439-4d8f-b839-7364fb4a3e7c))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp d6a2b7d9-012c-4821-bf40-88ad215913a2))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "VBUS") (pintype "passive") (tstamp 174e1edc-fa9b-4a4a-94ec-51f39117d4a7))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 40232b21-23fe-4f03-845a-358cb93133d8))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 2082406c-576f-49f3-b346-33ad3d2b2031)
(at 156.8 76.1 90)
(descr "Capacitor SMD 0603 (1608 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" "ploopy-nano.kicad_sch")
(property "Sheetname" "")
(path "/1053373c-78b5-4a79-85bd-acc3ae415090")
(attr smd)
(fp_text reference "C4" (at 0 1.6 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8076c981-0b51-456c-8c32-8848185bbdb4)
)
(fp_text value "0.1u" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b6e5ea4-e644-4dc1-b8aa-17c15da047ad)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 48200008-c3b6-4c0e-bce0-a892e226d4ed)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 1cb477d6-aa22-4e52-854e-5d7bab9c6a59))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 2052be40-fc79-4394-8e40-482b07d5c41a))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0f7cf278-1664-45da-a5e9-dcb1d090b7ec))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3f7b39b5-1a4f-4440-817d-f0d6b02e1e8d))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp bba7c0d1-42cd-43b4-a715-b90f1b6c7f5d))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f3862eac-662b-4263-bdf9-a7bfeb504804))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 00e31345-2624-4c16-b420-870b6538c993))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 0dab8f2b-bb0f-4421-85f4-9b56d5f21569))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp f6c77a8d-3058-4e85-b1b1-0103e766843e))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp f802a6aa-6c58-47ee-87dc-99eb9f276eb9))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "VBUS") (pintype "passive") (tstamp e8b0b062-fe3d-4c88-89a9-26e314ede2f1))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp f79bd8ac-37a7-4c72-8402-838c1051ac38))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 28cd76e7-a7f4-4010-adc7-4ae756aa4401)
(at 134.379 86.741 180)
(descr "Capacitor SMD 0603 (1608 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" "ploopy-nano.kicad_sch")
(property "Sheetname" "")
(path "/922f4d56-7cd5-4be7-8da9-0c15b6223462")
(attr smd)
(fp_text reference "C13" (at 0 -1.43) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3da1ed96-7e53-4537-ac43-3d55130eeb4d)
)
(fp_text value "20p" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a133107-c4e8-421b-bbf9-596bb50a9bf5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 15b4619d-274f-4fc2-a20c-d5a5a25a83c4)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 3a537953-9715-4077-a141-269d58e5d183))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 7b5e62e2-0c02-42a5-aa22-12d412674c89))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 40a16e0c-fff5-4d0b-b47c-d50b40bd49fe))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 610af311-ff82-432e-96f7-feb4a503ecc2))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp af4928d7-1840-471e-bd3e-e24e4759414b))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp fa73813a-78ff-4274-ad8f-3c5f2356fdc7))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 519ef534-01dc-479a-aae5-43c4a4f64b87))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 7bb46d73-048a-4fc6-bc9d-0c75c1a72fd1))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 8ae143e5-395c-4de3-ad23-ba31a3e1c339))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp d247ade0-10a1-4a42-8a94-7dc7dfcf3342))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "Net-(C13-Pad1)") (pintype "passive") (tstamp 6f8f89a7-986d-46c3-8c5a-bad81821351b))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 11d82d64-cea5-48d8-b11a-9d58bbf5b15d))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 29c6c2f0-e04b-4ab3-b280-e2e3b0834304)
(at 155.1 120.3 -90)
(descr "Resistor SMD 0603 (1608 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" "ploopy-nano.kicad_sch")
(property "Sheetname" "")
(path "/828465e7-2b65-4f82-bc21-7b1154c8590c")
(attr smd)
(fp_text reference "R7" (at 0 -1.7 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b30740f9-fbb0-4fa7-9fbb-b661d26e3839)
)
(fp_text value "5.1k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 78571638-b3fc-4f3f-9a89-e7509f5038b9)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 00d71d03-915b-465e-bc19-b6a5c27200d2)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp a35d7950-519f-49e8-bf4a-276390af9f71))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp c9b367a3-697d-4116-8747-855f95d9426d))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 49b58fc6-a4ca-4eea-a077-77349e7fb1f0))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 64e6d615-0a4c-446b-9b29-9a6ae1fc1450))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 67fbc080-6372-45c0-9618-71cca615a0fe))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c1a095a2-1cde-494e-a9ac-aeadbf954083))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 35bc43cf-bebc-4e2d-869a-10f84c803b40))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp cf543556-5eea-48a0-8b3f-8d7d7e54554a))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp d55c3a36-a720-47b0-99a5-f934846210f5))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp ef9261a0-79fe-4b5e-87bd-022b34ad2f9e))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp f519acd6-93fb-4028-aff9-830aed902382))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "Net-(J4-PadB5)") (pintype "passive") (tstamp 7ea3d245-a2c6-4d0f-b185-c991d77a078c))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 2b2a0aaf-4798-4e9f-8d81-ff08ed7f5c43)
(at 134 100.5 -90)
(descr "Resistor SMD 0603 (1608 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" "ploopy-nano.kicad_sch")
(property "Sheetname" "")
(path "/7e7ab90f-f743-412c-834a-d082835cf8fc")
(attr smd)
(fp_text reference "R6" (at -2.6 0.1 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6bbabf35-044f-4894-acd5-42f51fe2d0d1)
)
(fp_text value "22" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fb79757a-2e8c-4854-9868-a34d7a444c9b)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 21889c79-44e0-401a-baa4-66dc8c759a5b)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp a07582f3-64e9-4ffc-b22f-048c9d9d617a))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp b745162b-c1e4-4d29-bf3d-0c6c4f255321))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 052f23ad-0b38-4ffa-ad22-c94ce829f1b6))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5f29bcdd-6f72-41e1-ba19-ee8de75bc84b))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 896b566c-2c82-4563-812f-f83a820372c2))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9092e39d-ebea-48f6-b8bb-18517747585a))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 45574e3a-049c-462f-a1c2-2005b15c9c1a))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 9b39f5c3-c7ed-42ef-b9bc-e16a71df48f8))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp b5d6854f-6fc2-46bc-bace-02738d5f867e))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp b9703782-998e-404a-8f72-5428218aac2d))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "USB_DP") (pintype "passive") (tstamp db7d0394-dacb-412f-8164-86d20de5ae93))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(FB3-Pad1)") (pintype "passive") (tstamp a5637ae6-a3f3-4b30-a0cd-b950a45921d9))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 49812422-84ff-4b94-9f2d-30a50f82f09d)
(at 144.7 112.9)
(descr "Resistor SMD 0603 (1608 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" "ploopy-nano.kicad_sch")
(property "Sheetname" "")
(path "/f2930895-0e69-4a3b-bcf8-cdc397375bca")
(attr smd)
(fp_text reference "FB2" (at -3 0.1) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 65e2cbec-f814-48cf-aac8-95282424a929)
)
(fp_text value "FerriteBead" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8399f048-a17a-4c88-9f20-93be024eca41)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp fc601d3f-785e-4e77-800c-7b670337483b)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 2b09c39f-ad48-4b41-932a-f80adbe3b2b6))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp c76774e4-89e5-4e22-858c-232a3a865892))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4b6e6cd8-9491-45b9-b71d-c7b2e60a0fb5))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 774800ac-4531-4c3b-897b-0533c304a5b9))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8b02e90b-ef4a-4ed0-a431-46dd9b07e515))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f89a0d82-1a3a-4502-ac25-e5bb53e8e010))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 4ceea4b5-039f-4863-8b85-fb5edd5322df))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 6d537935-ea1f-4d39-853c-37748943f3a6))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp cfec9222-f392-4cb8-8f3d-7886cdf1c63a))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp d63a28ae-6147-4578-bf5f-361716601ec0))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(FB2-Pad1)") (pintype "passive") (tstamp f4bb9eda-e463-4d3c-aa7f-51b7e798a084))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(FB2-Pad2)") (pintype "passive") (tstamp 0d099ffc-1502-43bb-9131-d567de063a07))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 62509fcf-eb8e-41bd-807a-5c350dc6ef59)
(at 145.275 108.1)
(descr "Capacitor SMD 0603 (1608 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" "ploopy-nano.kicad_sch")
(property "Sheetname" "")
(path "/4c1ac972-cc9b-4b10-8c5b-7920f1de3e90")
(attr smd)
(fp_text reference "C9" (at 0.025 1.6) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 45dbb412-067a-43f6-a26f-5673eddffd68)
)
(fp_text value "0.1u" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f37e50cb-2344-4c0c-ae56-179dd7e0f0f9)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 176ec0c4-b10e-4b67-a11d-bf1d3c1c4174)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 17394402-cad7-486f-971a-991e42189cbe))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 5f797315-f768-4415-9df6-0418598c4725))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 211b9900-7521-4a32-9ca6-36c42b028548))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 22a37ae1-3645-4810-a86f-af4d6afc5858))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 708a460e-820e-4fea-b5a3-cc89699c3dd1))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b2fc105c-9697-4217-b252-5b1ad7bdab79))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 0f461a83-dbdf-44cb-ada8-2243db938c57))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp ad52f2c1-e956-477e-ab34-51913e9811f0))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp b9bdea0a-eb77-4079-95df-cdf1bce666c8))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp ca06c38e-af1d-4f9c-8cc8-81c1768c2c40))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "VBUS") (pintype "passive") (tstamp 0b573de7-ac2d-4c0e-95df-0289464d7c31))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 4426c03d-9fb1-49aa-aa1b-f6475fc7e94f))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 63ab3eaa-087f-49ce-a7d2-6a53aadd8448)
(at 156 86.5 180)
(descr "Resistor SMD 0603 (1608 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" "ploopy-nano.kicad_sch")
(property "Sheetname" "")
(path "/237fe09d-5c05-4c5e-9aeb-995787674ff8")
(attr smd)
(fp_text reference "R2" (at 0 -1.43) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b2b08852-2670-4759-816a-986dd397e11d)
)
(fp_text value "10k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 423b68bc-90c0-44ca-be46-979742ad3d34)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 88ee3e83-9522-4ffb-8baf-b27fff6130c8)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 7ecaa696-c3bb-497f-b625-11049068952d))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp bfbb66d9-6fe5-4ab3-95d0-720fb6d52971))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 404088b0-bf82-4168-8881-727dcdfbd420))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8a9e825e-b176-4c30-9fc8-be54b610741b))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9522ac92-fd08-4809-a9e9-18055c32a662))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b5d1ee5a-f151-4f5d-b5f9-1238081786a3))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 2bb00d6b-baa2-4bb3-83a7-175f81a002e0))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp e6809d4e-2895-49a8-8d25-cd96c41a0d24))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp f5fb0c19-15dc-4146-bbd5-59ba917c0932))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp f8c4e621-f023-4327-b0f6-9b95105fbf16))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "VBUS") (pintype "passive") (tstamp adac0f6c-0c3e-45d1-8aa5-729a4c898a8a))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "Net-(J2-Pad1)") (pintype "passive") (tstamp 0759955e-adb2-4fa0-8fc8-52a5b54c0cdf))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 63b9a74a-e2b8-46f5-943c-1b046f00b7fb)
(at 129.6 91.925 180)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(property "Sheetfile" "ploopy-nano.kicad_sch")
(property "Sheetname" "")
(path "/872ad041-0ffb-48f2-84cb-6aa909f11b14")
(attr through_hole exclude_from_bom)
(fp_text reference "J3" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7cb78f95-da85-4b53-a7be-5db09cf5fbe2)
)
(fp_text value "Conn_01x03" (at 0 7.41) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4dc9e8ca-bfb4-46df-8b6f-0bd7117b7e40)
)
(fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3369bd0e-aa2b-40b0-b2e8-88c3f500aa4d)
)
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 0e50c133-70e1-4290-9236-9c211264931a))
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 21702c25-e928-44a7-9675-a01498e4c2cc))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 4407bb6b-bf80-4440-b52a-613cd0f6d965))
(fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 52c71b43-1a5f-4302-a7d6-0e944c7287af))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 5a78f04a-0e10-4e91-994c-8b8944c58f96))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 9f0d2e03-f48d-44b3-b042-8ad790a618f4))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 8073c940-5eae-42fb-9103-74edb411b896))
(fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp c7c0b1e5-03e3-4bfe-a179-fe6430f30fae))
(fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp cbc3a1c2-6efd-42de-bb3c-7ce03b192084))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp f25fdf85-42d7-4a37-9cdd-1329ee06ccb2))
(fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 050abc04-50f3-4dbf-a1fd-8f4032d5574b))
(fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 2a2b34c5-d4ae-48f0-b836-b5dd4c1ca075))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 42a72d01-4967-4d76-a83b-15f9bba57338))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 89381fc2-91ed-464a-a420-a5de29951abc))
(fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp aabba82c-6e82-43ba-90ce-fd11d053fda6))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 "UART_TX") (pinfunction "Pin_1") (pintype "passive") (tstamp f524959a-4e22-4033-8f30-65c49bdded50))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 17 "UART_RX") (pinfunction "Pin_2") (pintype "passive") (tstamp f1778199-5d84-4422-acc9-e868ab12fe1d))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 0508cb2e-6532-45cb-bb5f-00b02c28bd7e))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 67d9f531-99e0-4e3b-b25d-a13006c84172)
(at 139.9 79.3 -90)
(descr "Capacitor SMD 0603 (1608 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" "ploopy-nano.kicad_sch")
(property "Sheetname" "")
(path "/7ae63dac-5e1f-4366-b141-f994ce71abe8")
(attr smd)
(fp_text reference "C6" (at 2.4 -0.1 -270) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 399055f2-ddbb-47db-8875-f3481a9d1ce3)
)
(fp_text value "0.1u" (at 0 1.43 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8f1e69b0-6432-4a61-870c-3323dbca7238)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp c5f8b4f3-136a-43f5-9e42-b5d62c09af4c)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp e2f485af-b971-4e1e-8571-3d6b04411c57))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp fca1e98a-ed3a-4e2a-9f89-f3e6894e7a05))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0003977c-bfa4-4598-9c81-5e4aceb8cac5))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 098697c2-cb3c-4b9c-8a2e-61f439388bf3))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8e64ac5f-59c8-4a78-b70c-c58d988268a1))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b0bc1a69-8190-46e1-bbc6-db08f1520d14))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 315e1966-55df-4011-bed5-940b3599f7ff))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 34f419c9-24e6-4385-9fd1-262afd623747))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 73ad54cc-9886-47fe-827d-958e6fe41e04))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 7582af33-3207-4e2b-9538-0fa312f8b0a8))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "VBUS") (pintype "passive") (tstamp 7f28cbff-76f1-4f47-a9af-5ad131373893))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 89a12f79-ed2c-43e4-97d3-e8b0432512d1))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 75178571-ba0e-4883-b158-43309b18a1f6)
(at 149 106 180)
(descr "Capacitor SMD 0603 (1608 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" "ploopy-nano.kicad_sch")
(property "Sheetname" "")
(path "/db0bad23-41e7-4f4d-9b2b-f17ecfba20ff")
(attr smd)
(fp_text reference "C10" (at -2.7 -0.1) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7f85ecd-e638-4d34-899b-87f3a7447ef9)
)
(fp_text value "0.1u" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1afdfc0d-5039-413c-992d-d00437a480c2)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp cc00f231-24f7-41d3-aea5-03bbd7488f33)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp a33840bc-9a91-4f6b-8a34-491963c48386))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp b9dfa35c-f531-4705-aaab-2e0133639657))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1dc4c6ad-cff0-4b1d-8724-d9be28bd25b8))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 56024a0e-55e5-42dd-aa20-2d7f48e8df0b))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 80450be7-46b4-4bb9-82e8-809779c32691))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c12bf460-cd12-4c99-bfe6-70c896268336))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 0921ba6a-bf17-4b45-99f8-c319cffecd15))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 26cfa37b-b7d3-437b-96b5-be1cd49092d8))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 3478b6ec-5d66-4017-b803-4e9cd767e77b))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp ac9d9276-b32f-452b-97d1-79e67314c8c0))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(C10-Pad1)") (pintype "passive") (tstamp 5f3c7d87-671c-480f-b195-a12566c1960b))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp b3bd3b2c-6d39-40d3-bd43-545db9ab8b94))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "ADNS-2610:ADNS-2610" (layer "F.Cu")
(tedit 63384644) (tstamp 8af56681-08af-4744-b490-b77a8bfbb5a9)
(at 150.15 91.15 180)
(property "Sheetfile" "ploopy-nano.kicad_sch")
(property "Sheetname" "")
(path "/6d4ee669-a7cb-4701-9911-8b43957cf4a6")
(attr through_hole exclude_from_bom)
(fp_text reference "U3" (at -6.162605 -14.550665) (layer "F.SilkS")
(effects (font (size 1.001992 1.001992) (thickness 0.15)))
(tstamp c7d04017-a8d4-44cb-a75f-0aeca81f942a)
)
(fp_text value "ADNS-5050" (at -3.603005 2.256925) (layer "F.Fab")
(effects (font (size 1.001409 1.001409) (thickness 0.15)))
(tstamp 5d9fbaaf-3e0a-4acd-a989-b84d71502135)
)
(fp_text user "LED Placement " (at -20.95 -5.95 90) (layer "F.Fab")
(effects (font (size 0.702333 0.702333) (thickness 0.15)))
(tstamp bd8234e9-3d31-43d5-afa9-fcf41cb9201f)
)
(fp_circle (center -1.3128 1.092) (end -1.1128 1.092) (layer "F.SilkS") (width 0.4) (fill none) (tstamp 09f567b5-4a67-4203-b5cb-ac6e02691d12))
(fp_line (start -15 -11.3025) (end 13.1 -11.3) (layer "F.CrtYd") (width 0.05) (tstamp 1f0c8bcb-8dc7-4c86-a0dd-610818eb189d))
(fp_line (start 13.1 -1.3) (end -15 -1.3) (layer "F.CrtYd") (width 0.05) (tstamp 474183fa-06e8-4775-a874-df35ecd19d63))
(fp_line (start 13.1 -11.3) (end 13.1 -1.3) (layer "F.CrtYd") (width 0.05) (tstamp 93aee24d-8ab3-44e0-8cbb-2168fc893ba5))
(fp_line (start -15 -1.3) (end -15 -11.3025) (layer "F.CrtYd") (width 0.05) (tstamp e8133847-6a6a-4b4e-9b2e-e5440956f6be))
(fp_line (start 13.06 -11.22) (end 13.06 -1.37) (layer "F.Fab") (width 0.127) (tstamp 02f5f150-3d6d-4e61-ba0e-91c6e40f0127))
(fp_line (start 13.06 -11.22) (end -14.94 -11.22) (layer "F.Fab") (width 0.127) (tstamp 130a6156-3489-4e04-abdf-947dce4f10fb))
(fp_line (start -2.45 -1.75) (end 7.45 -1.75) (layer "F.Fab") (width 0.127) (tstamp 28823a43-e26d-4754-8d94-c24be44cc480))
(fp_line (start -2.45 -10.85) (end -2.45 -1.75) (layer "F.Fab") (width 0.127) (tstamp 2c0720c8-8f02-41ed-8c3c-ebe381e6e7a7))
(fp_line (start 7.45 -1.75) (end 7.45 -10.85) (layer "F.Fab") (width 0.127) (tstamp 520176ec-0972-4059-b568-5f3ffe3956c7))
(fp_line (start 13.06 -1.37) (end -14.94 -1.37) (layer "F.Fab") (width 0.127) (tstamp 54f54a07-e70b-4ea3-8df0-a9ba108d86ee))
(fp_line (start -14.94 -11.22) (end -14.94 -1.37) (layer "F.Fab") (width 0.127) (tstamp 7e5c710e-870b-4ea3-86cc-4b70b2db34ca))
(fp_line (start 7.45 -10.85) (end -2.45 -10.85) (layer "F.Fab") (width 0.127) (tstamp 9cf05c89-420e-431d-bff9-7556571952aa))