-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNano2UNO-Adapter-3V3.kicad_pcb
9076 lines (9010 loc) · 378 KB
/
Nano2UNO-Adapter-3V3.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 "USLetter")
(title_block
(title "Nano2UNO Adapter 3V3")
(date "2023-12-31")
(rev "1.0.1")
(company "Designer: C. M. Bulliner")
(comment 2 "OF MERCHANTABILITY, SATISFACTORY QUALITY AND FITNESS FOR A PARTICULAR PURPOSE.")
(comment 3 "This document is distributed WITHOUT ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING")
(comment 4 "© 2023 C. M. Bulliner. Released under the CERN-OHL-P v2 license.")
)
(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)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Green") (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") (color "Green") (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 105.41 134.62)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin true)
(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 true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "../gerbers/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "/D1{slash}TX")
(net 3 "+5V")
(net 4 "/D0{slash}RX")
(net 5 "/A0")
(net 6 "/A1")
(net 7 "/A2")
(net 8 "/A3")
(net 9 "/D2")
(net 10 "/D3")
(net 11 "/D4")
(net 12 "/D5")
(net 13 "/AREF")
(net 14 "/D6")
(net 15 "/D7")
(net 16 "/D8")
(net 17 "/D9")
(net 18 "/D10")
(net 19 "/D11{slash}COPI")
(net 20 "/D12{slash}CIPO")
(net 21 "/D13{slash}SCK")
(net 22 "/A4{slash}SDA")
(net 23 "/A5{slash}SCL")
(net 24 "+3V3")
(net 25 "/~{RESET}")
(net 26 "/~{BOOT}")
(net 27 "Net-(D1-K)")
(net 28 "/VIN")
(net 29 "unconnected-(J6-A6-Pad10)")
(net 30 "unconnected-(J6-A7-Pad11)")
(net 31 "unconnected-(J6-VBUS-Pad12)")
(footprint "Project_Footprints:PinSocket_1x08_P2.54mm_Vertical_UNO_Power" locked (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-0000551afcfc)
(at 133.35 132.08 90)
(descr "Through hole straight socket strip, 1x08, 2.54mm pitch, single row")
(tags "Through hole socket strip THT 1x08 2.54mm single row")
(property "Description" "1x8 Socket Header")
(property "Manufacturer" "Samtec")
(property "Part Number" "ESW-108-33-L-S")
(property "Sheetfile" "Nano2UNO-Adapter-3V3.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x08")
(property "ki_keywords" "connector")
(path "/00000000-0000-0000-0000-000056d71773")
(attr through_hole)
(fp_text reference "J3" (at 0 -2.77 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d1751b0-6ea6-42ae-be0f-45f92420fb83)
)
(fp_text value "ESW-108-33-L-S" (at -3.81 8.89 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 08e134e8-6238-422a-8138-580a61640710)
)
(fp_text user "VIN" (at 1.905 17.78 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp 3eed6e6f-d132-45bc-8e5b-c5d2c8bc794b)
)
(fp_text user "GND" (at 1.905 13.97 unlocked) (layer "F.SilkS" knockout)
(effects (font (size 1 1) (thickness 0.15)) (justify bottom))
(tstamp 697af43a-0b78-4d0b-83b2-8bb25274ddf4)
)
(fp_text user "IOREF" (at 1.905 2.54 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp 9b42262d-ddc6-4f08-945e-18d3c2bde254)
)
(fp_text user "RESET" (at 1.905 5.08 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp adf17fc4-f31e-45e4-b060-75f4e8857d56)
)
(fp_text user "3.3V" (at 1.905 7.62 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp d860df55-b4e0-4c0f-be89-c0f067f99ed8)
)
(fp_text user "BOOT" (at 1.905 0 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp e9e340f3-065b-4c32-a8e8-8ae90471b858)
)
(fp_text user "5V" (at 1.905 10.16 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp eff2eef3-0878-4ab8-825d-d98e1f5174b0)
)
(fp_text user "${REFERENCE}" (at 0 8.89) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 065df40c-982f-4407-af7a-907b11b7db60)
)
(fp_line (start -1.33 -1.584) (end -1.33 19.364)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fbe624b2-4b6c-4fd3-b823-34c5b6d3cc83))
(fp_line (start -1.33 -1.584) (end 1.33 -1.584)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 57b869df-4d6d-4da7-a021-c5d563fd9c24))
(fp_line (start -1.33 19.364) (end 1.33 19.364)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3fb6f0b9-a049-4313-80a2-efe84eeadc11))
(fp_line (start 1.33 -1.584) (end 1.33 19.364)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9666fd49-c4ab-44ec-93f3-92d3c7e1d540))
(fp_line (start -1.8 -2.054) (end 1.75 -2.054)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9512871f-8268-4005-b0fa-b57da281630c))
(fp_line (start -1.8 19.804) (end -1.8 -2.054)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2a370e8f-cbe6-4a79-a274-c9ac583af4de))
(fp_line (start 1.75 -2.054) (end 1.75 19.804)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cbfc7d74-7b99-4c4f-9e98-7be869afed4e))
(fp_line (start 1.75 19.804) (end -1.8 19.804)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cb9a74bc-51b4-469a-8b7d-5a961c2b1d17))
(fp_line (start -1.27 -1.524) (end 1.27 -1.524)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 247fa426-6e0f-4c97-89be-7278df05af5b))
(fp_line (start -1.27 19.304) (end -1.27 -1.524)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ce2b97c3-9b8e-4d61-9cc8-ffd0c600af97))
(fp_line (start 1.27 -1.524) (end 1.27 19.304)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 279aeffc-1e00-4967-b309-42326186ffcb))
(fp_line (start 1.27 19.304) (end -1.27 19.304)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb6ab4cc-fa60-4ef2-99c2-3f9155bafe64))
(pad "1" thru_hole circle locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 26 "/~{BOOT}") (pinfunction "BOOT") (pintype "passive") (tstamp 80b2fc44-b800-4e0b-a513-3083f92ae3f6))
(pad "2" thru_hole circle locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "+3V3") (pinfunction "IOREF") (pintype "passive") (tstamp 6b6472c3-2ab5-421a-94a6-9eec3f09feeb))
(pad "3" thru_hole circle locked (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 25 "/~{RESET}") (pinfunction "RESET") (pintype "passive") (tstamp 3b4ed2d8-4230-4ead-b015-81b3d1a31e9e))
(pad "4" thru_hole circle locked (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "+3V3") (pinfunction "3.3V") (pintype "passive") (tstamp 4f7ca702-8966-4170-9334-55d41e60c773))
(pad "5" thru_hole circle locked (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "+5V") (pinfunction "5V") (pintype "passive") (tstamp 16855291-7a73-4360-9504-a0b1d7ccc8e9))
(pad "6" thru_hole circle locked (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp d09f719e-3992-4b7d-8fe1-2a309e79fc95))
(pad "7" thru_hole circle locked (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 7195c45b-bd86-428c-a8ab-10cd0384f17a))
(pad "8" thru_hole circle locked (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 28 "/VIN") (pinfunction "VIN") (pintype "passive") (tstamp 10756699-f46b-4529-af94-175839a75b36))
(model "${KIPRJMOD}/project_libraries/Project_3DModels.3dshapes/ESW-108-33-L-S.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Project_Footprints:PinSocket_1x06_P2.54mm_Vertical_UNO_Analog" locked (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-0000551afd13)
(at 156.21 132.08 90)
(descr "Through hole straight socket strip, 1x06, 2.54mm pitch, single row")
(tags "Through hole socket strip THT 1x06 2.54mm single row")
(property "Description" "1x6 Socket Header")
(property "Manufacturer" "Samtec")
(property "Part Number" "ESW-106-33-L-S")
(property "Sheetfile" "Nano2UNO-Adapter-3V3.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x06")
(property "ki_keywords" "connector")
(path "/00000000-0000-0000-0000-000056d72f1c")
(attr through_hole)
(fp_text reference "J4" (at 0 -2.77 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 11a59375-4395-477a-bfcd-17b5cad74622)
)
(fp_text value "ESW-106-33-L-S" (at -3.81 6.35 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ce1eff8f-46ca-493e-b16c-a45f6b8e16be)
)
(fp_text user "A2" (at 1.905 5.08 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp 697d7834-ff53-4fb7-b145-d593fe5ddb69)
)
(fp_text user "A3" (at 1.905 7.62 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp 7caf9373-b77c-43eb-8778-072b24629a51)
)
(fp_text user "A5" (at 1.905 12.7 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp 7d3e567b-ea63-4a80-9383-9192a191710c)
)
(fp_text user "A0" (at 1.905 0 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp bebc72a8-bf0a-4d96-817c-b4ba588b5916)
)
(fp_text user "A1" (at 1.905 2.54 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp e2d99826-8ff5-4e31-9294-be746528f9a8)
)
(fp_text user "A4" (at 1.905 10.16 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp e8055f9a-336e-4709-8121-8755606db8ad)
)
(fp_text user "${REFERENCE}" (at 0 6.35 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 791ceb5f-6f4b-4db6-b893-054cfb0f4fc7)
)
(fp_line (start -1.33 -1.584) (end -1.33 14.284)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a9f73d5c-32e2-47ce-9a87-114035d02587))
(fp_line (start -1.33 -1.584) (end 1.33 -1.584)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f1c8b256-1bf9-4294-9f49-bd06fd3737f8))
(fp_line (start -1.33 14.284) (end 1.33 14.284)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e7c80118-6abc-4131-abb0-922a76803f7a))
(fp_line (start 1.33 -1.584) (end 1.33 14.284)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c2249f45-8459-4e67-b062-d32d0f86fb87))
(fp_line (start -1.8 -2.054) (end 1.75 -2.054)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8d27a952-2a8a-47d4-a58c-3e05c306b6c8))
(fp_line (start -1.8 14.704) (end -1.8 -2.054)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 26f58479-bc3c-4fca-9fa9-fa2d7977c588))
(fp_line (start 1.75 -2.054) (end 1.75 14.704)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5b83c3b2-6590-4b62-9099-d822d17329a3))
(fp_line (start 1.75 14.704) (end -1.8 14.704)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3a5326bb-faaa-48a1-af2f-f7c6c89a8cdd))
(fp_line (start -1.27 -1.524) (end 1.27 -1.524)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 50a4dfcb-726e-4f94-b2e8-763b252b7b44))
(fp_line (start -1.27 14.224) (end -1.27 -1.524)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d56089f9-59e5-4e37-80ac-5a727c382552))
(fp_line (start 1.27 -1.524) (end 1.27 14.224)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 84eca35e-b389-467c-a4d8-a741f274dd43))
(fp_line (start 1.27 14.224) (end -1.27 14.224)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ebac48f1-2dad-4599-b203-e82cf3a7d0e4))
(pad "1" thru_hole circle locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "/A0") (pinfunction "A0") (pintype "passive") (tstamp a63235b8-04ce-4af7-8d70-48dbde7f2b71))
(pad "2" thru_hole circle locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "/A1") (pinfunction "A1") (pintype "passive") (tstamp 8883cc34-986a-4550-8fcb-dda66134cd7f))
(pad "3" thru_hole circle locked (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "/A2") (pinfunction "A2") (pintype "passive") (tstamp fc9b3532-6f95-4579-a5e8-c5293ce9b800))
(pad "4" thru_hole circle locked (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "/A3") (pinfunction "A3") (pintype "passive") (tstamp d0c8c102-caa9-4cda-b28d-7948b1cbacd0))
(pad "5" thru_hole circle locked (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 22 "/A4{slash}SDA") (pinfunction "A4") (pintype "passive") (tstamp adae1a96-8968-44ff-8e23-1bc3c9626462))
(pad "6" thru_hole circle locked (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 23 "/A5{slash}SCL") (pinfunction "A5") (pintype "passive") (tstamp 845feb37-5fc7-43f6-8802-a8ceb1700b4f))
(model "${KIPRJMOD}/project_libraries/Project_3DModels.3dshapes/ESW-106-33-L-S.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Project_Footprints:PinSocket_1x10_P2.54mm_Vertical_UNO_Digital_2" locked (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-0000551afd43)
(at 147.066 83.82 -90)
(descr "Through hole straight socket strip, 1x10, 2.54mm pitch, single row")
(tags "Through hole socket strip THT 1x10 2.54mm single row")
(property "Description" "1x10 Socket Header")
(property "Manufacturer" "Samtec")
(property "Part Number" "ESW-110-33-L-S")
(property "Sheetfile" "Nano2UNO-Adapter-3V3.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x10")
(property "ki_keywords" "connector")
(path "/00000000-0000-0000-0000-000056d72368")
(attr through_hole)
(fp_text reference "J2" (at 0 -2.77 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 82ee983a-6f54-4a71-a051-aab33b5864d1)
)
(fp_text value "ESW-110-33-L-S" (at 0 11.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1020f114-685d-4b0c-9842-ca3ee65c6eb1)
)
(fp_text user "SCL" (at 1.905 22.86 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp 1a77f913-089d-4ff2-8f5b-3384d8f06719)
)
(fp_text user "12" (at 1.905 10.16 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp 34cb251a-6746-41ca-99ab-66341fc90369)
)
(fp_text user "10" (at 1.905 5.08 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp 3fbbc03b-0e24-4360-8b02-3f345fa20a48)
)
(fp_text user "11" (at 1.905 7.62 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp 54b794d6-0f68-4e56-8055-a98d3791eaaa)
)
(fp_text user "8" (at 1.905 0 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp 94aab506-527c-46d6-b874-7c33739a1a55)
)
(fp_text user "SDA" (at 1.905 20.32 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp 996e845f-bf01-467c-9f23-e91a9c1c468b)
)
(fp_text user "13" (at 1.905 12.7 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp a500fe00-3a2a-4ac7-99b8-9857574adc7d)
)
(fp_text user "AREF" (at 1.905 17.78 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp b4ab71a0-022a-44da-aa5a-f557a802ab97)
)
(fp_text user "9" (at 1.905 2.54 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp e5ea74e3-a5e8-4849-991e-9b405452b5ed)
)
(fp_text user "GND" (at 1.905 15.24 90 unlocked) (layer "F.SilkS" knockout)
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp f1e60dfb-e2d1-46b8-b45c-ee6c3872653b)
)
(fp_text user "${REFERENCE}" (at 0 11.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cfe87d93-6534-4673-899f-26cf6912e419)
)
(fp_line (start -1.33 -1.584) (end -1.33 24.444)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d9a6057e-1f3e-4ee0-91f3-bbf14498f7f6))
(fp_line (start -1.33 -1.584) (end 1.33 -1.584)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e19fd672-c94b-4ef4-8cc4-ca200297727e))
(fp_line (start -1.33 24.444) (end 1.33 24.444)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4c1d4b48-61c6-4cf7-b69d-01bf49acf6fa))
(fp_line (start 1.33 -1.584) (end 1.33 24.444)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c85b143a-18d4-4553-91cc-1c75bbc94b0f))
(fp_line (start -1.8 -1.914) (end 1.75 -1.914)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2caa20f2-14aa-43e6-ace9-da411ca7723b))
(fp_line (start -1.8 24.714) (end -1.8 -1.914)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eb498ed4-c4b2-4a93-8ee2-7069e029f75e))
(fp_line (start 1.75 -1.914) (end 1.75 24.714)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eb83d769-dd23-466d-936c-a5dd3b511aaf))
(fp_line (start 1.75 24.714) (end -1.8 24.714)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dca06317-6dd7-454f-90ce-f55d127b513b))
(fp_line (start -1.27 -1.524) (end 1.27 -1.524)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 07eb6f47-9e66-4078-8a5b-9f9d2e7a13fb))
(fp_line (start -1.27 24.384) (end -1.27 -1.524)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cc1c5a0d-3ee2-4f22-8b5d-51985caddf58))
(fp_line (start 1.27 -1.524) (end 1.27 24.384)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f3483d24-bcc5-46bf-aea9-b2b1e5b250a8))
(fp_line (start 1.27 24.384) (end -1.27 24.384)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a103ad5-7775-44c4-9308-91ffb6944a80))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 16 "/D8") (pinfunction "8") (pintype "passive") (tstamp ea1027ca-55f0-4766-917b-e91c01a55488))
(pad "2" thru_hole circle locked (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "/D9") (pinfunction "9") (pintype "passive") (tstamp 8dbaefa3-b5f3-4ae9-b4eb-2f9ca5d60263))
(pad "3" thru_hole circle locked (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 18 "/D10") (pinfunction "10") (pintype "passive") (tstamp 8b660784-57e1-4489-ab70-d0e79c28ce53))
(pad "4" thru_hole circle locked (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 19 "/D11{slash}COPI") (pinfunction "11") (pintype "passive") (tstamp 3b290ff6-798f-4b1a-8576-eb345cc84290))
(pad "5" thru_hole circle locked (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 20 "/D12{slash}CIPO") (pinfunction "12") (pintype "passive") (tstamp 305550c6-7f01-48a1-8516-a881b9d685f7))
(pad "6" thru_hole circle locked (at 0 12.7 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 21 "/D13{slash}SCK") (pinfunction "13") (pintype "passive") (tstamp c0ca553c-0b11-4e75-9fff-214b35fdccac))
(pad "7" thru_hole circle locked (at 0 15.24 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 66a53b81-80bf-4ed9-a636-85963c90733f))
(pad "8" thru_hole circle locked (at 0 17.78 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "/AREF") (pinfunction "AREF") (pintype "passive") (tstamp 4f748d9f-036e-4f14-8817-083391e7cc0f))
(pad "9" thru_hole circle locked (at 0 20.32 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 22 "/A4{slash}SDA") (pinfunction "SDA") (pintype "passive") (tstamp f6dd20c2-a870-468a-a5f1-640661f38f4a))
(pad "10" thru_hole circle locked (at 0 22.86 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 23 "/A5{slash}SCL") (pinfunction "SCL") (pintype "passive") (tstamp a3a750da-03e5-4a12-8f39-1c7b8f93d55a))
(model "${KIPRJMOD}/project_libraries/Project_3DModels.3dshapes/ESW-110-33-L-S.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Project_Footprints:PinSocket_1x08_P2.54mm_Vertical_UNO_Digital_1" locked (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-0000551afd5a)
(at 168.91 83.82 -90)
(descr "Through hole straight socket strip, 1x08, 2.54mm pitch, single row")
(tags "Through hole socket strip THT 1x08 2.54mm single row")
(property "Description" "1x8 Socket Header")
(property "Manufacturer" "Samtec")
(property "Part Number" "ESW-108-33-L-S")
(property "Sheetfile" "Nano2UNO-Adapter-3V3.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x08")
(property "ki_keywords" "connector")
(path "/00000000-0000-0000-0000-000056d734d0")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.77 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dec0c3fb-af11-4217-9449-bcffd305b5b7)
)
(fp_text value "ESW-108-33-L-S" (at 0 8.89) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e6e101cf-be9e-42c7-a36b-6b2ddc9e382b)
)
(fp_text user "7" (at 1.905 17.78 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp 2d301a46-53aa-4fca-bb36-e4ca57e0a0af)
)
(fp_text user "TX→1" (at 1.905 2.54 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp 52940ea3-8072-499c-81b5-4fb3a4ccafe5)
)
(fp_text user "4" (at 1.905 10.16 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp 5746d3ac-54cf-4eb6-9fcb-e419164e73e8)
)
(fp_text user "2" (at 1.905 5.08 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp 94eaaca9-2bbc-4f61-8847-794f4ade73d1)
)
(fp_text user "3" (at 1.905 7.62 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp 9f058520-26a0-497d-9350-ce70ab5f8146)
)
(fp_text user "5" (at 1.905 12.7 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp bf410eea-6364-4e78-a935-2e1a26b33f52)
)
(fp_text user "RX←0" (at 1.905 0 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp e0236357-08ec-421b-a704-99dbb8ce0888)
)
(fp_text user "6" (at 1.905 15.24 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp f3983465-f0b1-4e53-b338-5ffbd4f62a7f)
)
(fp_text user "${REFERENCE}" (at 0 8.89) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7d1c831e-9231-4b30-bc09-d16617142138)
)
(fp_line (start -1.33 -1.584) (end -1.33 19.364)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 138d0569-89fd-4b44-ba69-df644aa47bb5))
(fp_line (start -1.33 -1.584) (end 1.33 -1.584)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 20885b3d-a41f-4515-b25d-0b89211ff18f))
(fp_line (start -1.33 19.364) (end 1.33 19.364)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fbc1925a-2c1f-46cf-94fd-d77d9b380f5e))
(fp_line (start 1.33 -1.584) (end 1.33 19.364)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b247feaf-ae5d-413f-876c-a7f014815409))
(fp_line (start -1.8 -2.054) (end 1.75 -2.054)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aea9156a-0a16-47fc-adc7-16a58dec4d62))
(fp_line (start -1.8 19.804) (end -1.8 -2.054)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b007311e-1824-4a96-b417-b4c0caaeab1e))
(fp_line (start 1.75 -2.054) (end 1.75 19.804)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 597e6cd8-d00c-4450-885f-4a1b6cdba452))
(fp_line (start 1.75 19.804) (end -1.8 19.804)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4dd80091-0041-48ae-bde1-3647c3a26ac1))
(fp_line (start -1.27 -1.524) (end 1.27 -1.524)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 020d3e36-8914-44cd-85c6-f08852f3b083))
(fp_line (start -1.27 19.304) (end -1.27 -1.524)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp af6c9246-efe4-46c8-a20e-d3fa3cc23f0f))
(fp_line (start 1.27 -1.524) (end 1.27 19.304)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 79b93470-97ce-426c-9d13-a8b94cac2103))
(fp_line (start 1.27 19.304) (end -1.27 19.304)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4526dd15-f240-4ec0-9a08-928ffbe18f4d))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "/D0{slash}RX") (pinfunction "RX←0") (pintype "passive") (tstamp 14099236-b474-4e1f-9e58-bca6eab772f5))
(pad "2" thru_hole circle locked (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "/D1{slash}TX") (pinfunction "TX→1") (pintype "passive") (tstamp 00c54deb-7589-4263-bdec-27cae10614a2))
(pad "3" thru_hole circle locked (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "/D2") (pinfunction "2") (pintype "passive") (tstamp 97d6dfc8-0762-46e9-9e0f-9248e350b031))
(pad "4" thru_hole circle locked (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "/D3") (pinfunction "3") (pintype "passive") (tstamp 1de06edb-65d5-4d57-9946-75a91b74285c))
(pad "5" thru_hole circle locked (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "/D4") (pinfunction "4") (pintype "passive") (tstamp 7f218f92-da0d-4815-b4de-c748a2121bfb))
(pad "6" thru_hole circle locked (at 0 12.7 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 12 "/D5") (pinfunction "5") (pintype "passive") (tstamp 6deb928b-d7c4-4f55-b5d7-0731f9f91aa3))
(pad "7" thru_hole circle locked (at 0 15.24 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "/D6") (pinfunction "6") (pintype "passive") (tstamp 9fbb12e8-61a6-4753-8809-7c4fe098eefb))
(pad "8" thru_hole circle locked (at 0 17.78 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "/D7") (pinfunction "7") (pintype "passive") (tstamp 8b1cd20f-753b-4599-be42-a46bbea6720b))
(model "${KIPRJMOD}/project_libraries/Project_3DModels.3dshapes/ESW-108-33-L-S.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Project_Footprints:D_DO-41_SOD81_P10.16mm_Horizontal" (layer "F.Cu")
(tstamp 01610c2c-1545-4c50-b67d-ed79e6ad8837)
(at 130.175 127.635 180)
(descr "Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf")
(tags "Diode DO-41_SOD81 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm")
(property "Description" "DO-41 Diode")
(property "Manufacturer" "Vishay")
(property "Part Number" "SB260S-E3/54")
(property "Sheetfile" "Nano2UNO-Adapter-3V3.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Schottky diode")
(property "ki_keywords" "diode Schottky")
(path "/0bcea8fa-b4ce-4923-a0a4-bb3ccc59dcaf")
(attr through_hole)
(fp_text reference "D1" (at 5.08 -2.47 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f104dd3c-228b-400c-87d9-b87342ddc470)
)
(fp_text value "SB260S-E3/54" (at 5.08 2.47 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 133bcd26-641b-4122-bc79-cfff095f3777)
)
(fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa676040-b9ce-4c12-9e06-cc1320d95a10)
)
(fp_line (start 1.34 0) (end 2.36 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 39fd5d0f-e1f5-43fd-adf8-c3acab855a75))
(fp_line (start 2.36 -1.47) (end 2.36 1.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f0920807-c825-4680-b855-a91434f1ded9))
(fp_line (start 2.36 1.47) (end 7.8 1.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2b86c2b3-1875-4622-bd04-970685e76c11))
(fp_line (start 3.14 -1.47) (end 3.14 1.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 92de5cb3-bb34-42bc-b31f-c863454db1fb))
(fp_line (start 3.26 -1.47) (end 3.26 1.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1474d1d0-0095-4eb9-b429-40c125fb624b))
(fp_line (start 3.38 -1.47) (end 3.38 1.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 93d808ec-dd40-479f-a53c-d1d56e97edc3))
(fp_line (start 7.8 -1.47) (end 2.36 -1.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 38b7a438-64eb-4fbd-97e4-c302a3c8b0dc))
(fp_line (start 7.8 1.47) (end 7.8 -1.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2d29539c-de71-4361-9962-83796a57a943))
(fp_line (start 8.82 0) (end 7.8 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3aaf38ee-aa66-499b-b4f4-34f6418ae94c))
(fp_line (start -1.35 -1.6) (end -1.35 1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f5e67a66-a4e5-45db-a669-4081fd160272))
(fp_line (start -1.35 1.6) (end 11.51 1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8dc4a8f7-ecd2-4f6d-bb72-d40ff798c4e7))
(fp_line (start 11.51 -1.6) (end -1.35 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f83cc40b-84a6-41bf-898a-4b3f5b27c45f))
(fp_line (start 11.51 1.6) (end 11.51 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d8db03db-aac0-44d9-bcb5-5b8283d657cd))
(fp_line (start 0 0) (end 2.48 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6081ff8d-11a5-4c8e-b5bd-f104d795e4c8))
(fp_line (start 2.48 -1.35) (end 2.48 1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e197486b-60f9-4b09-85c7-70a002befca8))
(fp_line (start 2.48 1.35) (end 7.68 1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ec3007fb-1aea-40fc-b193-f00529f324be))
(fp_line (start 3.16 -1.35) (end 3.16 1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a9354dd3-3a41-484b-a660-3a1904519089))
(fp_line (start 3.26 -1.35) (end 3.26 1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0780fa0d-9a3f-4a46-a8b3-a667772c99e1))
(fp_line (start 3.36 -1.35) (end 3.36 1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e9d8d8f9-c2d3-4876-9dc3-9371501136f7))
(fp_line (start 7.68 -1.35) (end 2.48 -1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3a749a39-c4d4-40e5-af35-21bc52ecfcde))
(fp_line (start 7.68 1.35) (end 7.68 -1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8b25d691-dba2-4206-aab0-67b844ceb6be))
(fp_line (start 10.16 0) (end 7.68 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4c98ddd7-35aa-4f3e-ad65-8dbc68534f3d))
(pad "1" thru_hole roundrect (at 0 0 180) (size 2.2 2.2) (drill 1.1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 27 "Net-(D1-K)") (pinfunction "K") (pintype "passive") (tstamp 894816c2-5854-4e6d-85fa-ba150db65d9b))
(pad "2" thru_hole oval (at 10.16 0 180) (size 2.2 2.2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 28 "/VIN") (pinfunction "A") (pintype "passive") (tstamp ebac2f55-5ab4-423b-90f3-a437b29acbe4))
(model "${KIPRJMOD}/project_libraries/Project_3DModels.3dshapes/D_DO-41_SOD81_P10.16mm_Horizontal.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Project_Footprints:CP_Radial_D6.3mm_P2.50mm" (layer "F.Cu")
(tstamp 20fde996-6982-450d-942d-ab39adc844a2)
(at 128.905 121.92 180)
(descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor")
(property "Description" "10uF X7R Through-Hole Capacitor")
(property "Manufacturer" "Panasonic")
(property "Part Number" "ECE-A1HKS100 ")
(property "Sheetfile" "Nano2UNO-Adapter-3V3.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Polarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/45f9a00c-1a42-4356-94fb-d703774c2eac")
(attr through_hole)
(fp_text reference "C2" (at 0 -4.4) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0ebb3997-91fb-414a-a5b0-fb3ea5cd670e)
)
(fp_text value "10uF" (at 0 4.4) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2dd4569b-bc10-4695-99ab-9fd310ce5361)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4977c1d8-a11c-4ed2-90c7-2563d86bb0f5)
)
(fp_line (start -3.500241 -1.839) (end -2.870241 -1.839)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cb4ebe73-4cb1-4f8e-9d9a-af84f319e16a))
(fp_line (start -3.185241 -2.154) (end -3.185241 -1.524)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd0994f7-c530-49e6-a320-abfbdf853b5d))
(fp_line (start 0 -3.23) (end 0 3.23)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9d1cf8c1-5e97-4539-98df-4d81be63d23f))
(fp_line (start 0.04 -3.23) (end 0.04 3.23)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d8d7687e-72e8-4f14-8b17-ef09d35d7936))
(fp_line (start 0.08 -3.23) (end 0.08 3.23)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0e756d2-80ec-403d-84c4-99275b8bc434))
(fp_line (start 0.12 -3.228) (end 0.12 3.228)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a7e403e3-95ca-4ee4-b24d-58b44b6923d2))
(fp_line (start 0.16 -3.227) (end 0.16 3.227)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 69e79c46-9040-463e-b297-f1e03a061874))
(fp_line (start 0.2 -3.224) (end 0.2 3.224)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a5e4f498-f44c-42f8-bf09-b4a6c1d2eab4))
(fp_line (start 0.24 -3.222) (end 0.24 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 60fe7e18-26b4-4cc6-ad33-9620215022f4))
(fp_line (start 0.24 1.04) (end 0.24 3.222)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1ec82d7b-26ee-404b-bb33-e9ba4a5c2d7e))
(fp_line (start 0.28 -3.218) (end 0.28 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp db88ca50-e6fa-4c3a-b4ef-8438de50f892))
(fp_line (start 0.28 1.04) (end 0.28 3.218)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34c5c760-191e-4257-b814-47c850f8eb03))
(fp_line (start 0.32 -3.215) (end 0.32 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eeee60c1-f5e9-4879-b681-534e00a562ea))
(fp_line (start 0.32 1.04) (end 0.32 3.215)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fda286da-c5b5-46cb-a71a-c6360b153c87))
(fp_line (start 0.36 -3.211) (end 0.36 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab8df739-4fb5-4124-9e63-3c5579fe8b04))
(fp_line (start 0.36 1.04) (end 0.36 3.211)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d6223f10-2513-45bd-b606-81b7d3c44d38))
(fp_line (start 0.4 -3.206) (end 0.4 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4426fc02-be5e-4866-b316-924fbfa5b892))
(fp_line (start 0.4 1.04) (end 0.4 3.206)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 65a1d452-c80c-4626-85c9-7a3e0ac6e3c9))
(fp_line (start 0.44 -3.201) (end 0.44 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1a5809ef-fbff-45d8-b679-38cccdc1b5ba))
(fp_line (start 0.44 1.04) (end 0.44 3.201)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 959e20b5-b458-447e-8022-fef7c212950b))
(fp_line (start 0.48 -3.195) (end 0.48 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e80fb7cd-a37b-4d31-8ed3-2ef5f88c343f))
(fp_line (start 0.48 1.04) (end 0.48 3.195)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b675af4-1233-42ec-9ef1-a32972902859))
(fp_line (start 0.52 -3.189) (end 0.52 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 85a6675f-bd92-424b-ad97-f90afed7a90b))
(fp_line (start 0.52 1.04) (end 0.52 3.189)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e297dc38-226b-469a-8eb7-4679e627afcc))
(fp_line (start 0.56 -3.182) (end 0.56 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d5fd37a9-3590-4a2d-8b0d-a3e694a48f63))
(fp_line (start 0.56 1.04) (end 0.56 3.182)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b04aa436-3f0d-4e07-b8cb-3b6f8d220747))
(fp_line (start 0.6 -3.175) (end 0.6 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 91bf0091-6950-406e-bf56-6823f111e793))
(fp_line (start 0.6 1.04) (end 0.6 3.175)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dae761c1-bf82-4661-836e-4cd4a1885f73))
(fp_line (start 0.64 -3.167) (end 0.64 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3e2b8d28-4ed1-4674-bea6-98c178e4f4e6))
(fp_line (start 0.64 1.04) (end 0.64 3.167)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6d6f800b-db25-4328-8721-f41e5d82d252))
(fp_line (start 0.68 -3.159) (end 0.68 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f4ab2be-09cc-4bf6-936a-a833b1c4a022))
(fp_line (start 0.68 1.04) (end 0.68 3.159)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 88c7f78d-d351-4140-90bc-7fc1a5bebf1e))
(fp_line (start 0.721 -3.15) (end 0.721 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 527777c2-2df2-49ce-9224-1cedeab44fec))
(fp_line (start 0.721 1.04) (end 0.721 3.15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9dda1c43-0cf7-486b-9ab9-3252dd12bae5))
(fp_line (start 0.761 -3.141) (end 0.761 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 59f5b374-479d-484b-a6d9-df987620ba62))
(fp_line (start 0.761 1.04) (end 0.761 3.141)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ead558c-3c87-4484-a80d-a93e825269b1))
(fp_line (start 0.801 -3.131) (end 0.801 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6fb0da74-6e7e-4ef6-a0d9-94ab2b819a1d))
(fp_line (start 0.801 1.04) (end 0.801 3.131)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp edf2cd52-721f-4ff1-ac9d-b4a5b309b351))
(fp_line (start 0.841 -3.121) (end 0.841 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 87d7a5a5-dcbb-4c47-bfcb-0a7cb57fcb76))
(fp_line (start 0.841 1.04) (end 0.841 3.121)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0ad6fb14-164a-4b7a-8ec3-bbf7572fd9d6))
(fp_line (start 0.881 -3.11) (end 0.881 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2973e99-0851-431f-92cd-934131bcda3f))
(fp_line (start 0.881 1.04) (end 0.881 3.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dea4ce28-1c4b-4862-9936-cb749b846abe))
(fp_line (start 0.921 -3.098) (end 0.921 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 204eae1e-4ae2-40b7-93ce-32a07f52d8fc))
(fp_line (start 0.921 1.04) (end 0.921 3.098)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6c782abc-4e8a-43bb-a7db-78c1ad28c017))
(fp_line (start 0.961 -3.086) (end 0.961 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4d46c5ee-27d5-43a7-9c9d-38aa0b7b7f99))
(fp_line (start 0.961 1.04) (end 0.961 3.086)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5accfc18-0240-44f3-988b-c2e0a87c0203))
(fp_line (start 1.001 -3.074) (end 1.001 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 260e7385-1a66-4c27-9f91-2af07620bbd2))
(fp_line (start 1.001 1.04) (end 1.001 3.074)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dcf7d669-f3f9-4c12-af64-fc708129421a))
(fp_line (start 1.041 -3.061) (end 1.041 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd44a43f-cff1-4e1d-aac2-1735ab38090d))
(fp_line (start 1.041 1.04) (end 1.041 3.061)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cfa56b6a-61b6-4215-a377-ab84fea78075))
(fp_line (start 1.081 -3.047) (end 1.081 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 40d5c02d-fb86-4989-8c66-e2a917301b33))
(fp_line (start 1.081 1.04) (end 1.081 3.047)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2936a531-6cd4-4535-a73f-0592c6bb440f))
(fp_line (start 1.121 -3.033) (end 1.121 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 69ff4173-961d-4900-b7bf-4fcbe89568f7))
(fp_line (start 1.121 1.04) (end 1.121 3.033)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8348508b-8148-46ff-ba90-e7f1fdac9d1a))
(fp_line (start 1.161 -3.018) (end 1.161 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff9d8e3e-5c4d-421d-8e03-49e2d0cfbd67))
(fp_line (start 1.161 1.04) (end 1.161 3.018)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bac11f29-b383-4ef2-afb0-09a436d53f00))
(fp_line (start 1.201 -3.002) (end 1.201 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f8300367-1dcc-4d7a-8b83-a1d3639a529c))
(fp_line (start 1.201 1.04) (end 1.201 3.002)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a9387cc4-158b-415a-8201-6df7a65d97c4))
(fp_line (start 1.241 -2.986) (end 1.241 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb4788aa-ef38-4cbf-b719-e129b20b6f2d))
(fp_line (start 1.241 1.04) (end 1.241 2.986)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e9739217-a41b-49eb-bbda-ca70392dd6d3))
(fp_line (start 1.281 -2.97) (end 1.281 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 07c19c13-ebc7-44e4-9f24-9521de808240))
(fp_line (start 1.281 1.04) (end 1.281 2.97)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 992eb88a-5c8e-4706-8e13-ceea32ad0460))
(fp_line (start 1.321 -2.952) (end 1.321 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f4414c30-c06e-4ae6-975b-eeddb7f7c165))
(fp_line (start 1.321 1.04) (end 1.321 2.952)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b593af5-3101-451e-96db-0a279c714161))
(fp_line (start 1.361 -2.934) (end 1.361 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0306fd9-beb3-4ee0-8225-a406fd7e916b))
(fp_line (start 1.361 1.04) (end 1.361 2.934)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 56da263b-64d8-4966-b073-313a70815194))
(fp_line (start 1.401 -2.916) (end 1.401 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2a1afc8-9c41-4311-81eb-cc1a9928eb13))
(fp_line (start 1.401 1.04) (end 1.401 2.916)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0e71ce6b-644a-41bc-b8d0-a2b45f222713))
(fp_line (start 1.441 -2.896) (end 1.441 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a7f18ebc-e049-4d40-8708-7b8e029eaca4))
(fp_line (start 1.441 1.04) (end 1.441 2.896)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 62eddfe5-1eb3-468f-935f-474da88da02a))
(fp_line (start 1.481 -2.876) (end 1.481 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a093fbd7-9726-4870-8be3-a3d70f645625))
(fp_line (start 1.481 1.04) (end 1.481 2.876)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 18f13dd1-53f1-4a43-a6fb-2b868be19c5c))
(fp_line (start 1.521 -2.856) (end 1.521 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 65e2967d-7de3-45f4-a360-4470f8b6d093))
(fp_line (start 1.521 1.04) (end 1.521 2.856)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d84e40dd-e6a8-4a46-bdaa-9dd277a403e5))
(fp_line (start 1.561 -2.834) (end 1.561 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8ea21169-cf62-41c9-b592-d5cee25b3468))
(fp_line (start 1.561 1.04) (end 1.561 2.834)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bda4a1fb-9020-4537-85c9-159ebff91a77))
(fp_line (start 1.601 -2.812) (end 1.601 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp de677fb3-a0a6-47e8-8799-9c80f51858e3))
(fp_line (start 1.601 1.04) (end 1.601 2.812)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9c4de3b0-a391-4abb-9c1b-4b3080354c9d))
(fp_line (start 1.641 -2.79) (end 1.641 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a0b0c2eb-1aae-4e55-a960-4ba41a453867))
(fp_line (start 1.641 1.04) (end 1.641 2.79)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bfd1720d-deae-4d8e-b11c-0b4b8ddab5ad))
(fp_line (start 1.681 -2.766) (end 1.681 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4b05b99d-3c15-4b61-9cb6-a70ac496f98a))
(fp_line (start 1.681 1.04) (end 1.681 2.766)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2586a811-542a-4f60-95d8-94422215df4d))
(fp_line (start 1.721 -2.742) (end 1.721 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 451d98bb-9345-4229-abbe-9aeec87a9b6e))
(fp_line (start 1.721 1.04) (end 1.721 2.742)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d9790a13-e2a0-4137-ae1d-a5054e0d623e))
(fp_line (start 1.761 -2.716) (end 1.761 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b156ff0d-abfe-4516-aef4-6a7030889306))
(fp_line (start 1.761 1.04) (end 1.761 2.716)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9f742571-8c3d-491b-a2bf-d9e3db1993cf))
(fp_line (start 1.801 -2.69) (end 1.801 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b93424e8-92c9-4354-8f4e-e996dea12e7b))
(fp_line (start 1.801 1.04) (end 1.801 2.69)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 882bd4d0-b98f-4367-8597-8fdd0f45d2df))
(fp_line (start 1.841 -2.664) (end 1.841 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 07469029-2ef3-4d39-9747-d415a7a38f70))
(fp_line (start 1.841 1.04) (end 1.841 2.664)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e44ea77e-b2e5-4183-8232-f35abc8c5c26))
(fp_line (start 1.881 -2.636) (end 1.881 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 64a1aaf0-c19e-47d8-9131-24960e9fb56f))
(fp_line (start 1.881 1.04) (end 1.881 2.636)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6f97e460-8d35-475f-a7d5-2b7a46b013fb))
(fp_line (start 1.921 -2.607) (end 1.921 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5d40e03d-3cbe-45da-9684-801b4a11c10d))
(fp_line (start 1.921 1.04) (end 1.921 2.607)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f9f981eb-947f-40be-b0d8-2fb4be3fe088))
(fp_line (start 1.961 -2.578) (end 1.961 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2e47fdd5-009c-47f0-88a6-632570982b85))
(fp_line (start 1.961 1.04) (end 1.961 2.578)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c3356dbd-41ec-47e4-a225-f3d8bde86b50))
(fp_line (start 2.001 -2.548) (end 2.001 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 50a673b8-7165-4bf5-8f27-ffb5a7ed5e17))
(fp_line (start 2.001 1.04) (end 2.001 2.548)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b6cc4323-5669-4357-8a6c-f9620ae942f3))
(fp_line (start 2.041 -2.516) (end 2.041 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e7776eab-92f6-47f2-b33f-22fe80006eec))
(fp_line (start 2.041 1.04) (end 2.041 2.516)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f697a1e8-3380-4418-a228-bcaa4f6d0fb7))
(fp_line (start 2.081 -2.484) (end 2.081 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d6011d2-6d8f-4a60-9910-2d369d8bbf98))
(fp_line (start 2.081 1.04) (end 2.081 2.484)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1cddc8c2-de85-4704-a893-a838d94b2c66))
(fp_line (start 2.121 -2.45) (end 2.121 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1b634d53-7f5e-42be-84f5-b0263380bcd1))
(fp_line (start 2.121 1.04) (end 2.121 2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1c1bc4e0-0397-46a4-b85a-c8abd5587e2a))
(fp_line (start 2.161 -2.416) (end 2.161 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1dad5db4-6f32-41d6-8558-fbd2517b3ec7))
(fp_line (start 2.161 1.04) (end 2.161 2.416)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6acd4179-5219-4a94-9e8f-6619db6af387))
(fp_line (start 2.201 -2.38) (end 2.201 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7409f05c-e13b-4832-a88b-11673bd4b27d))
(fp_line (start 2.201 1.04) (end 2.201 2.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a09a2ca3-57c3-4285-86eb-51668bf65e6e))
(fp_line (start 2.241 -2.343) (end 2.241 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 996ac5fc-2ee5-41f9-823c-68c001a0d86a))
(fp_line (start 2.241 1.04) (end 2.241 2.343)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b03b3d95-644a-4507-80e4-050aab5ea40f))
(fp_line (start 2.281 -2.305) (end 2.281 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd865253-447f-49d8-8777-29e5409820f1))
(fp_line (start 2.281 1.04) (end 2.281 2.305)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 321f59e0-63a2-4ea4-9566-6a09664d525d))
(fp_line (start 2.321 -2.265) (end 2.321 2.265)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d57d4fd0-2717-46b5-9da5-d01f519fc34b))
(fp_line (start 2.361 -2.224) (end 2.361 2.224)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2a5ac6ac-870e-4eec-bd3e-70fb60485881))
(fp_line (start 2.401 -2.182) (end 2.401 2.182)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 910aaf0b-2d27-4c3b-b25c-ef3983e461b6))
(fp_line (start 2.441 -2.137) (end 2.441 2.137)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f0bd2213-69e3-4e0d-9dd2-aa4bd7de615d))
(fp_line (start 2.481 -2.092) (end 2.481 2.092)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2cc0610f-8b75-4415-bf1d-00c5cfe52f1b))
(fp_line (start 2.521 -2.044) (end 2.521 2.044)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7965922c-63c4-4637-9d7d-e81b36b71681))
(fp_line (start 2.561 -1.995) (end 2.561 1.995)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 95097ef2-3008-45ee-9d6d-510161a39786))
(fp_line (start 2.601 -1.944) (end 2.601 1.944)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8069901a-04c0-4c88-af22-4c3211f49764))
(fp_line (start 2.641 -1.89) (end 2.641 1.89)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f3e3134f-27cb-4e89-806b-b22ae1934b39))
(fp_line (start 2.681 -1.834) (end 2.681 1.834)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2dd2bab9-853f-4006-8f37-0647d543980b))
(fp_line (start 2.721 -1.776) (end 2.721 1.776)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d23e84b0-f0dd-4ac1-b70e-7eb6182d010a))
(fp_line (start 2.761 -1.714) (end 2.761 1.714)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf2cec3f-fbf0-49ee-85f3-3d2e0aef12fb))
(fp_line (start 2.801 -1.65) (end 2.801 1.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 91a3195c-f9ef-417b-adc7-04d89fa3c000))
(fp_line (start 2.841 -1.581) (end 2.841 1.581)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aacb6b25-f932-4f19-a112-23b9a273b6aa))
(fp_line (start 2.881 -1.509) (end 2.881 1.509)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 48cde525-9a62-4dd4-a65b-403293af8172))
(fp_line (start 2.921 -1.432) (end 2.921 1.432)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d9089a26-3e70-417b-8e21-f387fed32804))
(fp_line (start 2.961 -1.35) (end 2.961 1.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f086a06f-7446-40e7-8ca8-5bc041e25ec4))
(fp_line (start 3.001 -1.262) (end 3.001 1.262)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8b927aa4-aa73-4f3e-98ab-e5262e8ccf53))
(fp_line (start 3.041 -1.165) (end 3.041 1.165)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3afeee5f-97ce-4df7-b33e-d7d96ef4c234))
(fp_line (start 3.081 -1.059) (end 3.081 1.059)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9556e8c8-c25a-45c4-b302-ce0cdb9f6203))
(fp_line (start 3.121 -0.94) (end 3.121 0.94)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d49a7196-6ef5-4625-b9cb-6f47f39518c0))
(fp_line (start 3.161 -0.802) (end 3.161 0.802)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f01beb67-a04f-4583-9854-c0df3de8fd6e))
(fp_line (start 3.201 -0.633) (end 3.201 0.633)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 43bc1f0a-120e-41a9-b315-5623d82300f1))
(fp_line (start 3.241 -0.402) (end 3.241 0.402)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d598138c-2c23-47ba-aed6-3f809ce92837))
(fp_circle (center 0 0) (end 3.27 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 800d704b-99dd-4272-9a4e-3dc073659123))
(fp_circle (center 0 0) (end 3.4 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp db51c87a-3e2b-4aaa-bd31-69e8c0831fcc))
(fp_line (start -2.693972 -1.3735) (end -2.063972 -1.3735)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 48b7deeb-85e5-4ac2-954d-be7de462c9d3))
(fp_line (start -2.378972 -1.6885) (end -2.378972 -1.0585)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 17f0af71-cd21-441e-acba-f37d4bcfabad))
(fp_circle (center 0 0) (end 3.15 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp bf809e90-4028-460f-aa01-8b7ebe005db5))
(pad "1" thru_hole roundrect (at -1.25 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 3 "+5V") (pintype "passive") (tstamp 9c806cf6-4558-47f3-8552-36604b9b03a5))
(pad "2" thru_hole circle (at 1.25 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pintype "passive") (tstamp ade657b9-4262-4c06-8956-ac853acdbb94))
(model "${KIPRJMOD}/project_libraries/Project_3DModels.3dshapes/CP_Radial_D6.3mm_P2.50mm.step"
(offset (xyz -1.25 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Project_Footprints:CP_Radial_D6.3mm_P2.50mm" (layer "F.Cu")
(tstamp 4ad15ba2-ce53-4a58-8647-269543cfa762)
(at 121.92 121.92 180)
(descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor")
(property "Description" "10uF X7R Through-Hole Capacitor")
(property "Manufacturer" "Panasonic")
(property "Part Number" "ECE-A1HKS100 ")
(property "Sheetfile" "Nano2UNO-Adapter-3V3.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Polarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/cc760b79-93fe-4bb7-9abc-c4af9edbf5f7")
(attr through_hole)
(fp_text reference "C1" (at 0 -4.4) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 96f4a48b-e436-4906-9d5b-5887b85479ad)
)
(fp_text value "10uF" (at 0 4.4) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2596ca15-3f6c-476e-ac66-ab2432843c82)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 112ce5d9-2d71-4c1a-bc1b-a7289c7b2fc3)
)
(fp_line (start -3.500241 -1.839) (end -2.870241 -1.839)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 485b43ed-7dbf-415b-aad4-13ed53cdafef))
(fp_line (start -3.185241 -2.154) (end -3.185241 -1.524)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7948b3b9-d1db-428a-9e23-a015945985ff))
(fp_line (start 0 -3.23) (end 0 3.23)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fdf76e34-2bc8-435e-9ba7-15b8fc948d63))
(fp_line (start 0.04 -3.23) (end 0.04 3.23)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2dc0ca75-714e-4652-bf57-67b72b3d6169))
(fp_line (start 0.08 -3.23) (end 0.08 3.23)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 904ab581-49f1-46f8-960a-6600f0a5bce3))
(fp_line (start 0.12 -3.228) (end 0.12 3.228)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3c7c5efb-c8cd-40ef-9d1a-f58704f3ef1e))
(fp_line (start 0.16 -3.227) (end 0.16 3.227)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1befbdd9-c8bc-41da-aacd-4849f6146907))
(fp_line (start 0.2 -3.224) (end 0.2 3.224)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fa7a0b9a-fb2d-4eff-9811-1d624c74aee4))
(fp_line (start 0.24 -3.222) (end 0.24 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp be2ca51a-753e-49e2-800d-871c4f67fe7b))
(fp_line (start 0.24 1.04) (end 0.24 3.222)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e516dd97-dd7f-498e-8981-fc7bb7cd63ef))
(fp_line (start 0.28 -3.218) (end 0.28 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1bda1c55-a582-4007-86a2-63324abda984))
(fp_line (start 0.28 1.04) (end 0.28 3.218)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d2a7429-8787-4222-9621-ccb8129a00f6))
(fp_line (start 0.32 -3.215) (end 0.32 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp da7c3ac6-8f15-4bef-bf20-b7f51ab19f8c))
(fp_line (start 0.32 1.04) (end 0.32 3.215)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8bfe7474-fdd5-4fa4-974a-d981a1abb404))
(fp_line (start 0.36 -3.211) (end 0.36 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 87b14408-9e34-4c4f-af69-2b178f8fedd6))
(fp_line (start 0.36 1.04) (end 0.36 3.211)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 193abc3f-fef3-4fdc-abfd-03b135263f2a))
(fp_line (start 0.4 -3.206) (end 0.4 -1.04)