-
Notifications
You must be signed in to change notification settings - Fork 0
/
arduinouno.kicad_pcb
10046 lines (9926 loc) · 523 KB
/
arduinouno.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "Arduino Uno")
)
(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
(pad_to_mask_clearance 0.2)
(solder_mask_min_width 0.2)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "/+5V_USB")
(net 3 "+5V")
(net 4 "/+5_3V3_16U2")
(net 5 "/+3V3_16U2_UCAP")
(net 6 "+5V_3V3")
(net 7 "/16U2_16MHZ_XTAL2")
(net 8 "/16U2_16MHZ_XTAL1")
(net 9 "Net-(C11-Pad2)")
(net 10 "/328P_AUTORESETn")
(net 11 "+3V3")
(net 12 "/+5_3V3_328P_VCC")
(net 13 "+AREF")
(net 14 "/+5_3V3_328P_AVCC")
(net 15 "/328P_16MHZ_XTAL2")
(net 16 "/328P_16MHZ_XTAL1")
(net 17 "/16U2_BUF_RESETn")
(net 18 "/328P_BUF_RESETn")
(net 19 "/USER_BUTTON_BUF")
(net 20 "Net-(D1-Pad2)")
(net 21 "Net-(D2-Pad2)")
(net 22 "Net-(D2-Pad1)")
(net 23 "/16U2_TX_LED")
(net 24 "Net-(D3-Pad2)")
(net 25 "Net-(D4-Pad2)")
(net 26 "/16U2_RX_LED")
(net 27 "Net-(D5-Pad2)")
(net 28 "/BUTTON_RESETn")
(net 29 "Net-(J1-Pad8)")
(net 30 "/328P_RESETn")
(net 31 "Net-(J1-Pad1)")
(net 32 "/AD0")
(net 33 "/AD1")
(net 34 "/AD2")
(net 35 "/AD3")
(net 36 "/AD4_SDA")
(net 37 "/AD5_SCL")
(net 38 "/IO0")
(net 39 "/IO1")
(net 40 "/IO2")
(net 41 "/IO3")
(net 42 "/IO4")
(net 43 "/IO5")
(net 44 "/IO6")
(net 45 "/IO7")
(net 46 "/IO8")
(net 47 "/IO9")
(net 48 "/SS")
(net 49 "/MOSI")
(net 50 "/MISO")
(net 51 "/SCK")
(net 52 "/16U2_MISO")
(net 53 "/16U2_MOSI")
(net 54 "/16U2_SCLK")
(net 55 "/16U2_HDR_RESETn")
(net 56 "/CON_USB_P")
(net 57 "/CON_USB_N")
(net 58 "Net-(J7-Pad4)")
(net 59 "/16U2PROG_328P_RESETn")
(net 60 "Net-(JP1-Pad3)")
(net 61 "/16U2_PB6")
(net 62 "/16U2_PB4")
(net 63 "/16U2_PB7")
(net 64 "/16U2_PB5")
(net 65 "/16U2_RESETn")
(net 66 "/16U2_SCLK_R")
(net 67 "/USB_N")
(net 68 "/USB_P")
(net 69 "/16U2_TXD")
(net 70 "/16U2_RXD")
(net 71 "/SCK_R")
(net 72 "/USER_BUTTON")
(net 73 "Net-(R22-Pad1)")
(net 74 "Net-(U2-Pad5)")
(net 75 "Net-(U2-Pad6)")
(net 76 "Net-(U2-Pad7)")
(net 77 "Net-(U2-Pad12)")
(net 78 "Net-(U2-Pad14)")
(net 79 "Net-(U2-Pad22)")
(net 80 "Net-(U2-Pad23)")
(net 81 "Net-(U2-Pad25)")
(net 82 "Net-(U2-Pad26)")
(footprint "arduinouno:C_ALUM_C_SIZE" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005b9fdaa2)
(at 108.8 92 90)
(path "/00000000-0000-0000-0000-00005bbc2a5d")
(solder_mask_margin 0.2)
(attr through_hole)
(fp_text reference "C1" (at 3.4 2 180) (layer "F.SilkS") hide
(effects (font (size 0.8128 0.8128) (thickness 0.15)))
(tstamp 8f328b8f-cfe0-4008-b561-7eaa8812841f)
)
(fp_text value "100u|10V" (at 0 3.75 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4f2bf238-3ee5-4aac-90f6-b379a096c1cb)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0c616e08-0ce5-4a3e-ab51-83ab6ca312f8)
)
(fp_line (start -2.75 -1.75) (end -1.75 -2.75)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 21dc62f1-753e-422e-9281-af306b41b9be))
(fp_line (start -2.75 -1) (end -2.75 -1.75)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 25ef404f-cf01-436e-bf81-dc7f3def5749))
(fp_line (start -2.75 1) (end -2.75 1.75)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp b1b834da-b907-40b4-9168-3b3f57ee6337))
(fp_line (start -2.75 1.75) (end -1.75 2.75)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 2664cd0b-e36e-4469-9234-36693c2cfaa6))
(fp_line (start -1.75 -2.75) (end 2.75 -2.75)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 67cc5c2b-9ee7-4822-add0-cdcd4a082521))
(fp_line (start 2.75 -2.75) (end 2.75 -1)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 5a1c6f03-7560-4ff8-965e-315de52b47af))
(fp_line (start 2.75 2.75) (end -1.75 2.75)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 4df7f18e-7749-4af2-b5d5-e2dc2a618c4a))
(fp_line (start 2.75 2.75) (end 2.75 1)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp d308f373-04fd-4ef5-94d8-5c17f07c80ff))
(fp_line (start -2.75 -1.75) (end -1.75 -2.75)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 89a0ddcb-609f-4357-9bed-246091ba0b1f))
(fp_line (start -2.75 1.75) (end -2.75 -1.75)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 4a6dccee-fe53-45e6-a192-c3c4970384aa))
(fp_line (start -1.75 -2.75) (end 2.75 -2.75)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 5688b8cd-a754-4346-8edf-7397af03709f))
(fp_line (start -1.75 2.75) (end -2.75 1.75)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 57bf9af1-ee41-4912-95f4-a8d2f62b0ccb))
(fp_line (start 2.75 -2.75) (end 2.75 2.75)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 3096d0b4-41a7-423b-80f3-8645cb672f10))
(fp_line (start 2.75 2.75) (end -1.75 2.75)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp d66fb001-1a0b-413f-b37d-7c26a839a0a8))
(fp_circle (center -2 -1.5) (end -1.75 -1.5)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp 9bf6ba8a-2252-404d-900b-23b1f29218bb))
(pad "1" smd rect (at -2.05 0 90) (size 3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/+5V_USB") (tstamp 77be2140-2424-4562-a359-481b4f0dc3dd))
(pad "2" smd rect (at 2.05 0 90) (size 3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp 21f9366b-7d31-44e3-a8bd-ffc92f28151d))
(model "${KIPRJMOD}/packages3d/capacitor size C.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "arduinouno:C_ALUM_C_SIZE" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005b9fdab8)
(at 108.8 100.1 90)
(path "/00000000-0000-0000-0000-00005bbc2b99")
(solder_mask_margin 0.2)
(attr through_hole)
(fp_text reference "C2" (at 3.5 2.05 180) (layer "F.SilkS") hide
(effects (font (size 0.8128 0.8128) (thickness 0.15)))
(tstamp 8d5cec27-4e5b-4028-be6c-e69088cb6cf3)
)
(fp_text value "100uF|10V" (at 0 3.75 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 63ff8db1-38be-40b2-9259-031900fe347c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6c94bdb7-a2fb-40eb-8724-0ead280ccbf7)
)
(fp_line (start -2.75 -1.75) (end -1.75 -2.75)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp bc4dea71-879a-4858-b52c-5b145e216fb5))
(fp_line (start -2.75 -1) (end -2.75 -1.75)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 6af400e6-b3b8-42a4-9f0b-cd4349918506))
(fp_line (start -2.75 1) (end -2.75 1.75)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 2d60ee2d-0702-4db8-ab67-466972bff7f6))
(fp_line (start -2.75 1.75) (end -1.75 2.75)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 2ee53c60-76ee-4d8a-b782-666a1f521551))
(fp_line (start -1.75 -2.75) (end 2.75 -2.75)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 131abf07-b58f-495d-9341-f630fbd725ad))
(fp_line (start 2.75 -2.75) (end 2.75 -1)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp a6edb689-ff4f-4984-b238-d10926cfa172))
(fp_line (start 2.75 2.75) (end -1.75 2.75)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp d7731eb2-2630-48d3-9f4a-e633f9fe830e))
(fp_line (start 2.75 2.75) (end 2.75 1)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 1cb09ea0-4744-4dbd-b8ec-d8edb79d4da8))
(fp_line (start -2.75 -1.75) (end -1.75 -2.75)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp ca168c1d-ba99-45d5-9d72-013c70935f1c))
(fp_line (start -2.75 1.75) (end -2.75 -1.75)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 092782b5-061e-4339-82e1-c8be3f20951e))
(fp_line (start -1.75 -2.75) (end 2.75 -2.75)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 42b26f49-0251-41ca-b5aa-f05d0c675d8e))
(fp_line (start -1.75 2.75) (end -2.75 1.75)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp ffbb4d99-c897-40e8-9f65-850b7ca26183))
(fp_line (start 2.75 -2.75) (end 2.75 2.75)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 9e86b8ea-fadc-4957-93fe-8b0fb60dfc39))
(fp_line (start 2.75 2.75) (end -1.75 2.75)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 43903e1b-6978-4e02-82f5-1d0e0d88a70a))
(fp_circle (center -2 -1.5) (end -1.75 -1.5)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp 324143c4-3f96-4782-a9a6-205f165a798c))
(pad "1" smd rect (at -2.05 0 90) (size 3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+5V") (tstamp 2e9c393e-271f-4288-ae36-3ff31082983b))
(pad "2" smd rect (at 2.05 0 90) (size 3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp eb01434f-d840-485a-905d-4a44fd85a62d))
(model "${KIPRJMOD}/packages3d/capacitor size C.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "arduinouno:C0805x145mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005b9fdac7)
(at 124 81.1 90)
(path "/00000000-0000-0000-0000-00005b9839b3")
(attr through_hole)
(fp_text reference "C3" (at -0.9 1.85 270) (layer "F.SilkS") hide
(effects (font (size 0.8128 0.8128) (thickness 0.15)))
(tstamp 5dffa36c-01c1-41b5-bb92-02a6ceaf2dfe)
)
(fp_text value "10uF|16V" (at 0 -1.8 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4555d56b-c78f-40e6-b68d-3294c413449d)
)
(fp_text user "${REFERENCE}" (at 0.05 0 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 1907dd9c-1ec6-459f-96ed-eef2b634cf99)
)
(fp_line (start -1.6 -0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 39647e85-1382-4e22-ade7-0997ded0e727))
(fp_line (start -1.6 0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 4727af0c-a249-4d2c-a551-f55cb3dfe76a))
(fp_line (start 1.6 -0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 0a5ec34a-27d2-4bc1-a68c-f613af7bf487))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp d3e2267c-79e0-492b-9a05-93ad81600859))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 7ffb36c4-f7f7-42e9-b0ba-b3fb17bf8035))
(fp_line (start -1.6 0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 29521f97-9bb3-443c-b776-fbb81e6c4971))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 17cc1a9c-5b21-4a16-ade5-dd2497784afc))
(fp_line (start 1.6 0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 96332eb3-48e7-4b42-ac2d-a92ee3cc9b77))
(pad "1" smd rect (at -0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "/+5_3V3_16U2") (tstamp 60235d61-2a85-4a55-9cf9-1d05e53733f9))
(pad "2" smd rect (at 0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp 9dbf96bf-7012-4db0-ba6c-9ffb0a04de53))
(model "${KIPRJMOD}/packages3d/CAPC2012X145N EIA 0805.step"
(offset (xyz 0 0 1.45))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 0))
)
)
(footprint "arduinouno:C0805x95mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005b9fdad6)
(at 121.8 81.1 -90)
(path "/00000000-0000-0000-0000-00005b983bc3")
(attr through_hole)
(fp_text reference "C4" (at 0 1.9 270) (layer "F.SilkS") hide
(effects (font (size 0.8128 0.8128) (thickness 0.15)))
(tstamp 33bc86f6-cc22-46ce-bae2-6d1c61510ec7)
)
(fp_text value "100nF" (at 0 -1.8 270) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9bca741d-aeb7-4327-a15f-dfea7b20f44e)
)
(fp_text user "${REFERENCE}" (at 0.05 0 270) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 992ae7fa-a758-4a9f-98b3-34c13300547d)
)
(fp_line (start -1.6 -0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp dcdaf433-bac9-42d0-85d8-8774f4c6fc9e))
(fp_line (start -1.6 0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 470a683b-79d3-461a-822f-42b293c6437a))
(fp_line (start 1.6 -0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 938b3984-c5ce-412e-b6b5-55ff5ba0185b))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 316b3c2a-9d59-41c3-8259-4108b3d09e48))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp a6787e73-a4e5-4972-bb33-664be6194223))
(fp_line (start -1.6 0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp cdcbe3e2-2e2b-4acc-b1c7-1f3a8c7f525c))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 5dd6407e-9f4b-4f9e-84c2-d80d1b8ee091))
(fp_line (start 1.6 0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 137c9aff-fa98-46e4-a195-9849138a0741))
(pad "1" smd rect (at -0.95 0 270) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "/+5_3V3_16U2") (tstamp 3ea5534b-4832-4f50-b681-fb8882589d19))
(pad "2" smd rect (at 0.95 0 270) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp ab509862-e5f0-4cc6-a2f7-0d5ec4530c56))
(model "${KIPRJMOD}/packages3d/CAPC2012X95N EIA 0805.step"
(offset (xyz 0 0 0.95))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 0))
)
)
(footprint "arduinouno:C0805x95mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005b9fdaf4)
(at 119.25 81.1 -90)
(path "/00000000-0000-0000-0000-00005b983e38")
(attr through_hole)
(fp_text reference "C6" (at 0.6 1.55 270) (layer "F.SilkS") hide
(effects (font (size 0.8128 0.8128) (thickness 0.15)))
(tstamp 7298c751-1054-449e-a248-d051a9df95fa)
)
(fp_text value "100nF" (at 0 -1.8 270) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1f49efd6-ddaf-49c2-8b5f-474d21d2edd5)
)
(fp_text user "${REFERENCE}" (at 0.05 0 270) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 500e8365-ae99-45ae-9f34-ecf0a8c4d4f1)
)
(fp_line (start -1.6 -0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 0e61245b-2633-4765-a468-14ddb20d83de))
(fp_line (start -1.6 0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp d6a38a28-d098-4f36-a006-003c79133acf))
(fp_line (start 1.6 -0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp b6c403ea-b07b-4670-921d-1d05229e7dc2))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 37935bb1-af7c-4442-901c-ede741b4dc79))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 6a1a4463-681e-412f-9e5c-62b5652590d1))
(fp_line (start -1.6 0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 998fc5a1-d62d-49d8-bcbb-8c62b3af8a21))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 9fe8e927-84c1-4d70-87a0-ad39eede38cc))
(fp_line (start 1.6 0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 4baba707-ac02-4ba1-875f-3b8d127bb894))
(pad "1" smd rect (at -0.95 0 270) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+5V") (tstamp 6551d569-7dbc-49fd-92fb-b98ed82aa6a5))
(pad "2" smd rect (at 0.95 0 270) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp 7e0a8e32-b244-4df5-a712-a3b9428de48e))
(model "${KIPRJMOD}/packages3d/CAPC2012X95N EIA 0805.step"
(offset (xyz 0 0 0.95))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 0))
)
)
(footprint "arduinouno:C0805x95mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005b9fdb03)
(at 114.6 81 180)
(path "/00000000-0000-0000-0000-00005c4cbd49")
(attr through_hole)
(fp_text reference "C7" (at -2.6 0.7 180) (layer "F.SilkS") hide
(effects (font (size 0.8128 0.8128) (thickness 0.15)))
(tstamp 9babe657-f259-4007-9d41-7c05fd96ada9)
)
(fp_text value "1uF|25V" (at 0 -1.8 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 582e31d1-3b03-4eb1-80d8-d923e62b308d)
)
(fp_text user "${REFERENCE}" (at 0.05 0 180) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 031c61c6-b264-4944-b322-980d479ab626)
)
(fp_line (start -1.6 -0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 2a16a8aa-76a2-42eb-999f-e1265146b092))
(fp_line (start -1.6 0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp b3221037-cdea-4572-b761-689926873d32))
(fp_line (start 1.6 -0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 133a927d-4119-4a81-935f-e07d2ac05d0d))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 99ce5202-3fed-417c-8213-1fc3e5b6a4c9))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp f139b784-2821-4f83-bd33-e531afd3cb47))
(fp_line (start -1.6 0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 63443bd6-f0e7-483f-95fd-419868da9f6a))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 59e2a34c-408e-45ab-ae2b-bfb89b3c6184))
(fp_line (start 1.6 0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 5721db60-4f56-4c5a-a63e-28a658a702fd))
(pad "1" smd rect (at -0.95 0 180) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp 605dd7b6-14e2-47fd-b84c-d7fd6a43e2b8))
(pad "2" smd rect (at 0.95 0 180) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "/+3V3_16U2_UCAP") (tstamp d0eb6caa-681f-473c-9a4b-8d7134466036))
(model "${KIPRJMOD}/packages3d/CAPC2012X95N EIA 0805.step"
(offset (xyz 0 0 0.95))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 0))
)
)
(footprint "arduinouno:C0805x95mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005b9fdb12)
(at 103.8 59.9 90)
(path "/00000000-0000-0000-0000-00005bb64fc4")
(attr through_hole)
(fp_text reference "C8" (at 0 1.9 270) (layer "F.SilkS") hide
(effects (font (size 0.8128 0.8128) (thickness 0.15)))
(tstamp eecb9da1-2ac7-40be-9e1a-95f4719bbf93)
)
(fp_text value "100nF" (at 0 -1.8 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f4a939b-e225-4270-88c6-8cbda5d8768a)
)
(fp_text user "${REFERENCE}" (at 0.05 0 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp b05c8bcf-de3a-42fc-8df8-7dfae56cc545)
)
(fp_line (start -1.6 -0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 2f7a69a6-a8b4-46c8-a23d-e9117f7628f0))
(fp_line (start -1.6 0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 63527aaa-52e9-4a36-b21f-22e00e299e2d))
(fp_line (start 1.6 -0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp be73c62b-8cd2-43a7-a30f-91aafe338f30))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp c6103b26-e084-49a1-a1d8-c1e916b733e4))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp c2d737cb-3148-440c-98dc-5c7e2a15870a))
(fp_line (start -1.6 0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 8b5bd3c2-0548-4e34-b56d-269451c7246d))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp f8b17ac2-0bb5-4426-85e2-6a5f01008b8b))
(fp_line (start 1.6 0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 37c2709e-c785-4e0a-9cb6-563d591c9231))
(pad "1" smd rect (at -0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "+5V_3V3") (tstamp d14fa97b-375a-4768-a9e4-892393769d9e))
(pad "2" smd rect (at 0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp 2b31bebe-4568-4503-be44-63bbf87d0374))
(model "${KIPRJMOD}/packages3d/CAPC2012X95N EIA 0805.step"
(offset (xyz 0 0 0.95))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 0))
)
)
(footprint "arduinouno:C0805x95mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005b9fdb21)
(at 126.725 69.475 180)
(path "/00000000-0000-0000-0000-00005b96a065")
(attr through_hole)
(fp_text reference "C9" (at -2.575 -0.025 180) (layer "F.SilkS") hide
(effects (font (size 0.8128 0.8128) (thickness 0.15)))
(tstamp 098e0b38-b692-4257-9329-d16e6afbf72e)
)
(fp_text value "18pF" (at 0 -1.8 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4aa349bf-b05e-4e65-ae2d-8e1ef05138c6)
)
(fp_text user "${REFERENCE}" (at 0.05 0 180) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp ac05993c-06a2-4907-ae68-caedf1ea8609)
)
(fp_line (start -1.6 -0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 522b264e-3572-445e-9b4e-4b249872000d))
(fp_line (start -1.6 0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp e32f7c4c-bf68-4b61-9042-54cbacc9fda4))
(fp_line (start 1.6 -0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp adc0746a-028c-49a8-876b-1d60efc19f91))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp dfd996df-f15e-4b49-837f-7c82696d23c2))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 7ac22d41-f8e8-4fcb-90ae-a2748742c2b3))
(fp_line (start -1.6 0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 51b61e7f-9751-4729-9999-e910d8782931))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp ce288811-f86d-4088-9749-124949ba8e04))
(fp_line (start 1.6 0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 21bb80e8-3fe3-4edd-95bf-0cff6d28513e))
(pad "1" smd rect (at -0.95 0 180) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp 2f884a12-f896-4f2a-b78b-891a22dce401))
(pad "2" smd rect (at 0.95 0 180) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "/16U2_16MHZ_XTAL2") (tstamp c902a5c6-2c2d-417e-9fc8-a90fa0502123))
(model "${KIPRJMOD}/packages3d/CAPC2012X95N EIA 0805.step"
(offset (xyz 0 0 0.95))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 0))
)
)
(footprint "arduinouno:C0805x95mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005b9fdb30)
(at 126.625 79.8 180)
(path "/00000000-0000-0000-0000-00005b96a06c")
(attr through_hole)
(fp_text reference "C10" (at -2.975 -0.1 180) (layer "F.SilkS") hide
(effects (font (size 0.8128 0.8128) (thickness 0.15)))
(tstamp 63ab56ec-2578-45bc-a8f9-ad0c78990153)
)
(fp_text value "18pF" (at 0 -1.8 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8c74c457-1e2c-4aa7-ab42-9d865c574ec1)
)
(fp_text user "${REFERENCE}" (at 0.05 0 180) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 3c4fe4a7-39c1-4523-8a87-9cb9fd418a3f)
)
(fp_line (start -1.6 -0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp a04f9f0d-2174-4b5c-b2d7-70983059d190))
(fp_line (start -1.6 0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 97199cc0-16fc-4fc3-bc7c-ae8151bca011))
(fp_line (start 1.6 -0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 83f0640a-4906-45a6-a025-e56dd33a43a3))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp d6a4106a-835c-4693-a9be-19d1f8ac03da))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 81bdc192-d6dc-41c8-b7c3-4530a883254d))
(fp_line (start -1.6 0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp aeed105d-6b90-439b-82cc-e2c31eacf4c8))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 0e8f48a6-1d51-4337-a3f9-3c5f1cf60f96))
(fp_line (start 1.6 0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 2f1ff97c-319d-4d96-bb0e-962d80f38369))
(pad "1" smd rect (at -0.95 0 180) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp ee2005a6-5150-4459-ba3d-f7aad50451fa))
(pad "2" smd rect (at 0.95 0 180) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "/16U2_16MHZ_XTAL1") (tstamp 60f77c6f-945a-4015-8a09-959ae9ab8c04))
(model "${KIPRJMOD}/packages3d/CAPC2012X95N EIA 0805.step"
(offset (xyz 0 0 0.95))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 0))
)
)
(footprint "arduinouno:C0805x145mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005b9fdb4e)
(at 113.1 91.9 90)
(path "/00000000-0000-0000-0000-00005be1bc34")
(attr through_hole)
(fp_text reference "C12" (at 2.8 0.5 90) (layer "F.SilkS") hide
(effects (font (size 0.8128 0.8128) (thickness 0.15)))
(tstamp fbb5823b-7ed7-467d-a127-5e7981bd76cc)
)
(fp_text value "10uF|16V" (at 0 -1.8 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a18719eb-abc0-418d-af29-34055b34845b)
)
(fp_text user "${REFERENCE}" (at 0.05 0 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 4163c924-6d28-4821-9bef-bf6b48360e8f)
)
(fp_line (start -1.6 -0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp e476932a-e56e-45e6-aaf5-d4ed75c34e12))
(fp_line (start -1.6 0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 2d50e910-8272-44ea-9b3c-fd0a7e11a3be))
(fp_line (start 1.6 -0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 3448b11a-1758-43cf-9163-6de633d8534e))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 4d2818b3-2656-4b44-9d5d-b36b30387a6c))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp f8dc3fb3-6bd5-4c45-9aaf-fc6ea883ee9e))
(fp_line (start -1.6 0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 9fc456ed-41a9-4583-b14b-a93ffbd9bb54))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp b762f306-9e7a-477e-ae51-c46a34e7796a))
(fp_line (start 1.6 0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 2e1474fd-f01f-47b1-b789-2ed1d2af9ca4))
(pad "1" smd rect (at -0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+5V") (tstamp ea1aa476-99c8-4446-9703-7e99ec38f053))
(pad "2" smd rect (at 0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp d014f3fd-6cc2-44df-914d-2b242cc999ca))
(model "${KIPRJMOD}/packages3d/CAPC2012X145N EIA 0805.step"
(offset (xyz 0 0 1.45))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 0))
)
)
(footprint "arduinouno:C0805x145mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005b9fdb5d)
(at 122.3 92.4 90)
(path "/00000000-0000-0000-0000-00005be02c9b")
(attr through_hole)
(fp_text reference "C13" (at 0 1.9 90) (layer "F.SilkS") hide
(effects (font (size 0.8128 0.8128) (thickness 0.15)))
(tstamp 712ba036-99db-4d00-93a3-42d06a8cbc96)
)
(fp_text value "10uF|16V" (at 0 -1.8 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 190ffddf-234d-4e39-8ea7-5a0a2fabcfad)
)
(fp_text user "${REFERENCE}" (at 0.05 0 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp b4b2fbfb-6b2d-4fcd-8386-e707e34216be)
)
(fp_line (start -1.6 -0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 43f46c2f-65b0-48bb-b347-31f7742ecd8f))
(fp_line (start -1.6 0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 602c9eec-4495-4b86-a1bf-e9d5ae3e22fa))
(fp_line (start 1.6 -0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 5f51d707-eeb8-4ead-92ee-2cdb55e56e34))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 2652ee45-44f3-46c2-99c6-4d1a0e47eab7))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 45968d43-b5d2-4b8f-8269-2cc2468c88bc))
(fp_line (start -1.6 0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 8fd5f34f-5c79-4f3c-a144-fb4ca3e932ba))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp be2b9fdf-fda3-43a7-8af1-1b1e3bf05f3e))
(fp_line (start 1.6 0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 79c3582f-4714-4d3d-b3ce-e055e3dd20d2))
(pad "1" smd rect (at -0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "+3V3") (tstamp 15809028-d0b3-495b-b38d-bea9c9b2e44d))
(pad "2" smd rect (at 0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp 5aa8af05-ce46-4aa4-9ea3-28cf95f2507d))
(model "${KIPRJMOD}/packages3d/CAPC2012X145N EIA 0805.step"
(offset (xyz 0 0 1.45))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 0))
)
)
(footprint "arduinouno:C0805x95mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005b9fdb6c)
(at 141 99.3)
(path "/00000000-0000-0000-0000-00005b953f50")
(attr through_hole)
(fp_text reference "C14" (at 2.8 0.1) (layer "F.SilkS") hide
(effects (font (size 0.8128 0.8128) (thickness 0.15)))
(tstamp 2e21ec0f-41dc-44df-a606-e4698faceb3f)
)
(fp_text value "100nF" (at 0 -1.8) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 95cc83e7-78c2-462e-a789-e68ad2f5d444)
)
(fp_text user "${REFERENCE}" (at 0.05 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 30d1177c-300e-41f1-8367-29584ccaa701)
)
(fp_line (start -1.6 -0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 6973ae8b-bdda-4ff3-96c1-777297687144))
(fp_line (start -1.6 0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 0d07e1cf-e064-45ea-8ff9-aa54003d2afa))
(fp_line (start 1.6 -0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp c7c3b7a7-8fce-4bf0-b4dc-ab9b04d24a8f))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 2ca1a5b7-c298-4368-896f-eab96f9d733e))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 70ebfa5c-b803-498a-bfd2-e8cf0774d83f))
(fp_line (start -1.6 0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 21967f77-223d-40dd-aa67-017e1379478a))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 57b98012-7dbe-4cbb-b7d9-6f0777480c42))
(fp_line (start 1.6 0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 846f0d56-fda7-424b-b45f-2b29362cbcb1))
(pad "1" smd rect (at -0.95 0) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+5V") (tstamp e0e62038-5157-41e1-85ef-2c789dfc529d))
(pad "2" smd rect (at 0.95 0) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp 5453aa3c-5dde-41ba-aa1d-70d1add7b160))
(model "${KIPRJMOD}/packages3d/CAPC2012X95N EIA 0805.step"
(offset (xyz 0 0 0.95))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 0))
)
)
(footprint "arduinouno:C0805x95mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005b9fdb7b)
(at 131.9 98.6 90)
(path "/00000000-0000-0000-0000-00005b95a992")
(attr through_hole)
(fp_text reference "C15" (at 2.2 0.5 180) (layer "F.SilkS") hide
(effects (font (size 0.8128 0.8128) (thickness 0.15)))
(tstamp 7b26a538-5a8f-436c-b6b5-bf28d82dea95)
)
(fp_text value "100nF" (at 0 -1.8 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 07162024-a33f-442c-825b-cc978edb7235)
)
(fp_text user "${REFERENCE}" (at 0.05 0 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 72cb6b53-6a87-440c-a9b1-6363920eeb11)
)
(fp_line (start -1.6 -0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 7ee40bc4-3526-405a-a14a-65b105f5ebdd))
(fp_line (start -1.6 0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 5295d23a-df86-423c-95da-e347389da76a))
(fp_line (start 1.6 -0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 85580eed-1270-4af6-9791-d7258546aaad))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 541f46bb-5c8f-4dfb-b7fd-3c14d2d075bb))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 7bad0a64-f4d1-43a9-8b83-8f121be180af))
(fp_line (start -1.6 0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp d45def6d-6791-4f61-acdb-dedb7267c76f))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp a9e93de3-931d-45a8-a054-05b9c9c2b4ac))
(fp_line (start 1.6 0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 9bdb5ad8-ae01-4bd5-90ff-8b6178c1993a))
(pad "1" smd rect (at -0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "+5V_3V3") (tstamp c0349ae1-adfb-413a-a3cf-8f85ce7118a0))
(pad "2" smd rect (at 0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp 530e6c73-4429-4ef2-afe9-0317340ad89f))
(model "${KIPRJMOD}/packages3d/CAPC2012X95N EIA 0805.step"
(offset (xyz 0 0 0.95))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 0))
)
)
(footprint "arduinouno:C0805x95mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005b9fdb8a)
(at 137.2 98.6 90)
(path "/00000000-0000-0000-0000-00005b9639fe")
(attr through_hole)
(fp_text reference "C16" (at -0.4 1.6 90) (layer "F.SilkS") hide
(effects (font (size 0.8128 0.8128) (thickness 0.15)))
(tstamp 094077fd-db48-43d7-8a1c-4719aee756aa)
)
(fp_text value "100nF" (at 0 -1.8 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8389260b-0d05-40d7-b7f7-b113f6e1856e)
)
(fp_text user "${REFERENCE}" (at 0.05 0 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 02d57350-2c60-4905-a42e-85fedde18ecc)
)
(fp_line (start -1.6 -0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 952f08d3-a5ff-481c-9770-dc2070e78dd6))
(fp_line (start -1.6 0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 4970ba4d-4aaa-45af-989c-a42e525ff3de))
(fp_line (start 1.6 -0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 7afedbab-fe8f-48c3-93ce-4f26b7c21937))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp fd44eaf9-2fa8-4c0a-b8f0-4128fab52689))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 603e0165-54ee-454b-b277-480c7c1a5a81))
(fp_line (start -1.6 0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 2ccb7e40-02af-4035-9e81-82ed8886261c))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp d4480843-a61a-454d-8e52-fb5db2149d2f))
(fp_line (start 1.6 0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 66b5d30d-3ed5-4d0f-9304-bcc8a9bf7f8f))
(pad "1" smd rect (at -0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "+3V3") (tstamp a99b049b-b2b6-4d84-a504-bb107dbb5e20))
(pad "2" smd rect (at 0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp 06d1ffe4-d1fc-4902-b354-418e18b5a0ca))
(model "${KIPRJMOD}/packages3d/CAPC2012X95N EIA 0805.step"
(offset (xyz 0 0 0.95))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 0))
)
)
(footprint "arduinouno:C0805x95mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005b9fdb99)
(at 104.5 52)
(path "/00000000-0000-0000-0000-00005b98989c")
(attr through_hole)
(fp_text reference "C17" (at 2.9 0) (layer "F.SilkS") hide
(effects (font (size 0.8128 0.8128) (thickness 0.15)))
(tstamp 109fdd88-4758-4c9c-8455-44c038d4ee0b)
)
(fp_text value "100nF" (at 0 -1.8) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2ea595c0-ae70-487b-9ed1-f8f3e8aa4dc6)
)
(fp_text user "${REFERENCE}" (at 0.05 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 2181a5ca-af5b-4ae4-9726-1a6717bd9451)
)
(fp_line (start -1.6 -0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 7add04a9-a45a-4fdf-a0bf-fe7a99d93370))
(fp_line (start -1.6 0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp e496e07c-2d03-4201-a1b0-8fed8905d57a))
(fp_line (start 1.6 -0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp adab73e7-1d44-4ac6-8e4b-f1558e0d0445))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 19addf04-21b4-41ca-bd77-2df3e945175e))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp a02fd2d7-2196-49d8-9f55-be2d0ab6191b))
(fp_line (start -1.6 0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 2ce99ea9-35b2-4c2a-a943-70c32bebfe7f))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 0b5b2467-a79e-437a-b72e-93633ffaa5b0))
(fp_line (start 1.6 0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 67f5cbb1-01cb-4366-915c-a047d3a2e824))
(pad "1" smd rect (at -0.95 0) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "+5V_3V3") (tstamp c19eaf31-1569-49c5-aef5-1e88b3244a70))
(pad "2" smd rect (at 0.95 0) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp f2866e4a-f133-4492-ab54-4b49851d2d81))
(model "${KIPRJMOD}/packages3d/CAPC2012X95N EIA 0805.step"
(offset (xyz 0 0 0.95))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 0))
)
)
(footprint "arduinouno:C0805x145mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005b9fdba8)
(at 148.9 96.225 180)
(path "/00000000-0000-0000-0000-00005b93cb27")
(attr through_hole)
(fp_text reference "C19" (at -2.9 -0.075 180) (layer "F.SilkS") hide
(effects (font (size 0.8128 0.8128) (thickness 0.15)))
(tstamp 91183a47-6f7d-4ffc-a5dc-705a2947c482)
)
(fp_text value "10uF|16V" (at 0 -1.8 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5956fd65-8ff4-4d29-9b30-c49dbe5c4557)
)
(fp_text user "${REFERENCE}" (at 0.05 0 180) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp fb4b75a0-7352-42e6-81f3-7ebbbb270f2a)
)
(fp_line (start -1.6 -0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp b1226512-e684-400d-a51f-44ffcbb697d7))
(fp_line (start -1.6 0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp fed0ce40-7a55-428c-b8d6-efcfe8aceae1))
(fp_line (start 1.6 -0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 9af75420-ea58-41a6-a3f6-e0adeee90bbf))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp a0801684-929e-4e6e-97d0-82a4fa5a394a))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 08bbd190-2122-440e-a820-7d8b11730a60))
(fp_line (start -1.6 0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp c4241216-67f8-4ff3-b6f5-85f26f1c6823))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 33cdf289-bc51-4afc-8cc0-bcca98bb9378))
(fp_line (start 1.6 0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp bd50d660-9315-41ef-9a9b-b1db38f58326))
(pad "1" smd rect (at -0.95 0 180) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "/+5_3V3_328P_VCC") (tstamp 7dd22799-3ccf-487b-a2ec-967960ae8056))
(pad "2" smd rect (at 0.95 0 180) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp 51a0b09c-347d-4a77-a53e-2a37e4ec755d))
(model "${KIPRJMOD}/packages3d/CAPC2012X145N EIA 0805.step"
(offset (xyz 0 0 1.45))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 0))
)
)
(footprint "arduinouno:C0805x145mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005b9fdbc6)
(at 126.7 55.6)
(path "/00000000-0000-0000-0000-00005b98f213")
(attr through_hole)
(fp_text reference "C21" (at -2.9 0) (layer "F.SilkS") hide
(effects (font (size 0.8128 0.8128) (thickness 0.15)))
(tstamp 8b4bf8b8-6855-4f6b-bc74-eb0e27e72c1a)
)
(fp_text value "10uF|16V" (at 0 -1.8) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d9d0cdcf-b86b-424d-9370-9436aa259e78)
)
(fp_text user "${REFERENCE}" (at 0.05 0) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 905266ed-6120-453b-9d78-d7c339366b46)
)
(fp_line (start -1.6 -0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 87016742-bf42-4428-b3c2-29042e72838b))
(fp_line (start -1.6 0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 81188ff5-f8bf-4a61-93ce-4d74b786087c))
(fp_line (start 1.6 -0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 64f733f2-3b01-42d9-b719-e5ef1a1805a7))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp a8b6a140-3783-4dc0-a85c-4a5fedf28418))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 5b2b3165-3a85-4121-8b8b-ea6a04079a8d))
(fp_line (start -1.6 0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 7a775a4c-ee98-4ede-889c-9c7d6e6689b0))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 1a6a44b7-d4c9-48f5-9398-751f8bb87f01))
(fp_line (start 1.6 0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 18d6c9e2-cf9a-46df-b5c4-e44070086c0e))
(pad "1" smd rect (at -0.95 0) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "+AREF") (tstamp 375b08ab-3933-4e2e-a3bb-1105c83df840))
(pad "2" smd rect (at 0.95 0) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp e6b7f3f6-6593-4c78-b5a2-734379679a78))
(model "${KIPRJMOD}/packages3d/CAPC2012X145N EIA 0805.step"
(offset (xyz 0 0 1.45))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 0))
)
)
(footprint "arduinouno:C0805x145mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005b9fdbd5)
(at 143.4 96.2 180)
(path "/00000000-0000-0000-0000-00005b945e40")
(attr through_hole)
(fp_text reference "C22" (at -0.5 -1.6 180) (layer "F.SilkS") hide
(effects (font (size 0.8128 0.8128) (thickness 0.15)))
(tstamp 5fcb89ed-75a8-44f6-8d7d-eebc1dcd7f90)
)
(fp_text value "10uF|16V" (at 0 -1.8 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e7da7759-2fe0-4e9e-9415-63d3f1506932)
)
(fp_text user "${REFERENCE}" (at 0.05 0 180) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp c0d28905-3188-479b-84a2-7ac8deb2d997)
)
(fp_line (start -1.6 -0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp a94d5203-c9b9-4e23-bc9d-5117239964cf))
(fp_line (start -1.6 0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 10f88625-d8b9-4191-9f68-885beb20c328))
(fp_line (start 1.6 -0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 8996c5e6-b172-41bb-ab75-6e2fa6afddf6))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 42fb9652-e1e9-41e8-8d72-cac5167565c8))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 15b876de-c4a7-4faf-a24c-9c6a2bb4ff92))
(fp_line (start -1.6 0.95) (end -1.6 -0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp e4386caf-c401-43cb-92f5-097df8ec8fef))
(fp_line (start 1.6 -0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 23e57eee-6bd7-484d-b6f8-8ac53bc95fd0))
(fp_line (start 1.6 0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 57e25cfc-02a8-46ba-ad29-60ac27caa3f5))
(pad "1" smd rect (at -0.95 0 180) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "/+5_3V3_328P_AVCC") (tstamp b728b70e-407f-4159-b097-3c356e13e156))
(pad "2" smd rect (at 0.95 0 180) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp 037754bb-c0b1-46ac-b633-613cf96f4ad5))
(model "${KIPRJMOD}/packages3d/CAPC2012X145N EIA 0805.step"
(offset (xyz 0 0 1.45))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 0))
)
)
(footprint "arduinouno:C0805x95mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005b9fdbe4)
(at 143.4 94.1 180)
(path "/00000000-0000-0000-0000-00005b945e0d")
(attr through_hole)
(fp_text reference "C23" (at 0 1.9 180) (layer "F.SilkS") hide
(effects (font (size 0.8128 0.8128) (thickness 0.15)))
(tstamp 48a6c3aa-8166-4cc6-a4ca-1b30bd01ce87)
)
(fp_text value "100nF" (at 0 -1.8 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe2faa2d-0b8d-499d-85f3-ead7b6a14982)
)
(fp_text user "${REFERENCE}" (at 0.05 0 180) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp fa9f0233-d53d-4964-8dfe-c626fd9520d7)
)
(fp_line (start -1.6 -0.95) (end -1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 61bcf230-0d62-49e0-862a-5148ccd6bd6b))
(fp_line (start -1.6 0.95) (end 1.6 0.95)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 0adfae67-e4ea-4fd7-8ea5-741a6f192d66))