-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathATMega-Board.kicad_pcb
15345 lines (15308 loc) · 612 KB
/
ATMega-Board.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 4.69)
)
(paper "USLetter")
(title_block
(title "IR gesteuertes ALPS Potentiometer für Lautsprecher")
(date "2021-05-16")
(rev "1")
(comment 1 "Kai Ruland")
)
(layers
(0 "F.Cu" signal "Front")
(1 "In1.Cu" power)
(2 "In2.Cu" power)
(31 "B.Cu" signal "Back")
(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)
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(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") (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 "In1.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 2" (type "prepreg") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 3" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(solder_mask_min_width 0.12)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "./gerbers")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "/VDC_IN")
(net 3 "Net-(C5-Pad2)")
(net 4 "Net-(C6-Pad2)")
(net 5 "/D2")
(net 6 "/D3")
(net 7 "+5V")
(net 8 "VIN")
(net 9 "/D12{slash}MISO")
(net 10 "/D13{slash}SCK")
(net 11 "/D11{slash}MOSI")
(net 12 "/D0{slash}RX")
(net 13 "/D1{slash}TX")
(net 14 "/D4")
(net 15 "/D5")
(net 16 "/D6")
(net 17 "/D7")
(net 18 "/D8")
(net 19 "/D9")
(net 20 "/D10")
(net 21 "unconnected-(J3-Pad2)")
(net 22 "/ARef")
(net 23 "/A0")
(net 24 "/A1")
(net 25 "/A2")
(net 26 "/A3")
(net 27 "/A4")
(net 28 "/A5")
(net 29 "unconnected-(J3-Pad10)")
(net 30 "/TX")
(net 31 "/RX")
(net 32 "unconnected-(J3-Pad11)")
(net 33 "/~{RESET}")
(net 34 "/ISP-5V")
(net 35 "Net-(D3-Pad2)")
(net 36 "Net-(J5-Pad2)")
(footprint "Diode_SMD:D_SOD-123" locked (layer "F.Cu")
(tedit 58645DC7) (tstamp 00000000-0000-0000-0000-0000609edbce)
(at 120.68155 92.8116 180)
(descr "SOD-123")
(tags "SOD-123")
(property "Distributor" "Reichelt")
(property "EAN / GTIN" "9900002196200")
(property "Hersteller" "ON Semiconductor")
(property "Sheetfile" "ATMega-Board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060a714d1")
(attr smd)
(fp_text reference "D1" (at 0.0254 -0.0254) (layer "F.SilkS")
(effects (font (size 0.762 0.762) (thickness 0.1016)))
(tstamp 8c9343b0-11c4-41b6-acb6-0ca26ec784fa)
)
(fp_text value "MBR0520LT" (at 0 2.1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b6af3fcf-bf2e-447e-a4ba-85d525e9297d)
)
(fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d8add37b-5913-40cc-8cc0-a85a4a3592fd)
)
(fp_line (start -2.25 -1) (end 1.65 -1) (layer "F.SilkS") (width 0.12) (tstamp 5872743c-c456-4b50-ad55-fa09c3cf663f))
(fp_line (start -2.25 1) (end 1.65 1) (layer "F.SilkS") (width 0.12) (tstamp e6beb0f0-c098-472c-9c60-88745db2463d))
(fp_line (start -2.25 -1) (end -2.25 1) (layer "F.SilkS") (width 0.12) (tstamp ea64af6c-61f3-4625-bca6-3ef75dcb1dc3))
(fp_line (start -2.35 -1.15) (end 2.35 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 0e454ba4-27ab-4521-a72f-df03b1b6a1ea))
(fp_line (start -2.35 -1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 6035a0e3-0a0d-42af-a15e-de443b838b45))
(fp_line (start 2.35 -1.15) (end 2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp c307b0c2-82a0-4a71-ab83-82f4a61745bf))
(fp_line (start 2.35 1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp fdd360a3-0b69-4b39-b725-62e1993bff01))
(fp_line (start -0.75 0) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 00f3a377-90da-498c-a0df-bf96cad28f2c))
(fp_line (start -0.35 0) (end -0.35 -0.55) (layer "F.Fab") (width 0.1) (tstamp 2a387b91-4e97-44a3-b6a7-169f76fa0bf4))
(fp_line (start -1.4 -0.9) (end 1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp 2be96557-7f1a-40e9-bbd0-6d67712ecb31))
(fp_line (start 1.4 0.9) (end -1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 34fe963b-6f48-4223-873f-e74795d0455f))
(fp_line (start -0.35 0) (end -0.35 0.55) (layer "F.Fab") (width 0.1) (tstamp 3897263b-046b-49d3-8f3b-7b9772725dad))
(fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer "F.Fab") (width 0.1) (tstamp 5009fb7a-1a76-4630-8a06-2b2dc364c95f))
(fp_line (start -0.35 0) (end 0.25 -0.4) (layer "F.Fab") (width 0.1) (tstamp 62bf0f2f-2c10-4de4-92dc-deebde60945a))
(fp_line (start 1.4 -0.9) (end 1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 8c53aae8-46dc-442b-96db-5dd1aae48d24))
(fp_line (start 0.25 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (tstamp c013eb28-0fdb-4cba-8298-d68e5ca26a6b))
(fp_line (start -1.4 0.9) (end -1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp eb0afe93-9be1-4d93-ac96-2e9124b6e361))
(fp_line (start 0.25 0.4) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp ffe67751-e4e5-4c47-b536-99d5a60ca1ec))
(pad "1" smd rect locked (at -1.65 0 180) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/VDC_IN") (pinfunction "K") (pintype "passive") (tstamp 08d09c7a-e89e-46cd-8f62-87c06a1a8f74))
(pad "2" smd rect locked (at 1.65 0 180) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "VIN") (pinfunction "A") (pintype "passive") (tstamp c2928f44-9bf8-4507-8215-01baeb2663de))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-123.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-0000609edbde)
(at 192.5828 79.756)
(descr "Mounting Hole 3.2mm, no annular, M3, DIN965")
(tags "mounting hole 3.2mm no annular m3 din965")
(property "Sheetfile" "ATMega-Board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060b30f04")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 79251239-20fe-4a08-8bb9-d54d0e9b61b2)
)
(fp_text value "MountingHole" (at 0 3.8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1172aeb8-ddb4-460f-aff4-3fcad7dfdbed)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 850fb0ca-87ca-4a33-a6bb-0cb5dbe795f1)
)
(fp_circle (center 0 0) (end 2.8 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 80e55cd8-80c7-4a3d-bf3d-c20262361bca))
(fp_circle (center 0 0) (end 3.05 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 3ffc33f0-db2b-4dd6-9451-40b8911eab5f))
(pad "" np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp a03fb5d5-a63a-441c-819a-0c250c6f4643))
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-0000609edbee)
(at 192.6336 117.8052)
(descr "Mounting Hole 3.2mm, no annular, M3, DIN965")
(tags "mounting hole 3.2mm no annular m3 din965")
(property "Sheetfile" "ATMega-Board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060b31424")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03276f28-bdaf-4812-a5bb-9683a44ba05b)
)
(fp_text value "MountingHole" (at 0 3.8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a001dcc3-3237-49ea-afbb-5916aa82a2e2)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1c1c0104-5099-470a-b76b-21bc30726a6f)
)
(fp_circle (center 0 0) (end 2.8 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp dbc68ae8-b690-4842-ba8c-141c7208821e))
(fp_circle (center 0 0) (end 3.05 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp c3a3ab50-513b-4629-a807-fea1474fded4))
(pad "" np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 09a83aaa-e6e4-458d-a382-a370b2141eee))
)
(footprint "Package_TO_SOT_SMD:SOT-89-3" locked (layer "F.Cu")
(tedit 5C33D6E8) (tstamp 00000000-0000-0000-0000-0000609edcde)
(at 126.85375 92.8116 90)
(descr "SOT-89-3, http://ww1.microchip.com/downloads/en/DeviceDoc/3L_SOT-89_MB_C04-029C.pdf")
(tags "SOT-89-3")
(property "Distributor" "Reichelt")
(property "EAN / GTIN" "9900001372926")
(property "Hersteller" "Microchip")
(property "Sheetfile" "ATMega-Board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060a50ad3")
(attr smd)
(fp_text reference "U1" (at 3.0734 -1.7272 180) (layer "F.SilkS")
(effects (font (size 0.762 0.762) (thickness 0.1016)))
(tstamp fc603dbf-6c2d-4417-8c64-8e0d0cc054bd)
)
(fp_text value "MCP1703A-5002_SOT89" (at 0.3 3.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 23a9a37a-8850-475e-bb7d-3295f6b5c7bf)
)
(fp_text user "${REFERENCE}" (at 0.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a2e2fcd3-619c-49ce-8560-f916c30d9692)
)
(fp_line (start -1.06 -2.36) (end -1.06 -2.13) (layer "F.SilkS") (width 0.12) (tstamp 3796587e-fae6-4307-a7fe-b59a378b4f57))
(fp_line (start 1.66 -2.36) (end 1.66 -1.05) (layer "F.SilkS") (width 0.12) (tstamp 3a592781-3ae6-4e2f-b89d-b737b8f5445d))
(fp_line (start 1.66 2.36) (end -1.06 2.36) (layer "F.SilkS") (width 0.12) (tstamp 4df10ca8-65b9-4dd9-8a4a-207a3b01f433))
(fp_line (start 1.66 1.05) (end 1.66 2.36) (layer "F.SilkS") (width 0.12) (tstamp 6579342c-25f1-44f7-814d-b3ee48984710))
(fp_line (start -2.2 -2.13) (end -1.06 -2.13) (layer "F.SilkS") (width 0.12) (tstamp b86fe791-7cb4-4a08-a2fd-3b067ea8bc3b))
(fp_line (start -1.06 -2.36) (end 1.66 -2.36) (layer "F.SilkS") (width 0.12) (tstamp be323656-ef54-4246-8953-7f1e702df6b3))
(fp_line (start -1.06 2.36) (end -1.06 2.13) (layer "F.SilkS") (width 0.12) (tstamp d655c696-1bf7-4a5c-bc49-ca4e988d949e))
(fp_line (start 2.55 -2.5) (end -2.55 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 04aa8a2a-0b34-40b1-b658-ad4de040b68b))
(fp_line (start -2.55 2.5) (end 2.55 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 3b711473-d047-4b81-82e5-569f5126284e))
(fp_line (start 2.55 -2.5) (end 2.55 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 6d4470cc-7929-4f60-b84b-5462d8256a82))
(fp_line (start -2.55 2.5) (end -2.55 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp e7d63924-ab34-4714-b9e2-37e15c5945a2))
(fp_line (start 1.55 2.25) (end -0.95 2.25) (layer "F.Fab") (width 0.1) (tstamp 43554d57-73b9-4950-b48e-0b51664a277e))
(fp_line (start -0.95 -1.25) (end 0.05 -2.25) (layer "F.Fab") (width 0.1) (tstamp aea5bf4b-d06a-479d-b0dc-5e42c9623734))
(fp_line (start 1.55 -2.25) (end 1.55 2.25) (layer "F.Fab") (width 0.1) (tstamp d5445ce3-febf-4ef3-9dca-382af12466d4))
(fp_line (start 0.05 -2.25) (end 1.55 -2.25) (layer "F.Fab") (width 0.1) (tstamp ecfd600e-287a-4d65-b996-ba6459831ed5))
(fp_line (start -0.95 2.25) (end -0.95 -1.25) (layer "F.Fab") (width 0.1) (tstamp ee05dfe9-31da-4fbc-83a4-401cd12bdc6f))
(pad "1" smd rect locked (at -1.65 -1.5 90) (size 1.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 2d1200fc-685e-410f-a207-dce95c4c75ff))
(pad "2" smd custom locked (at -1.5625 0 90) (size 1.475 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/VDC_IN") (pinfunction "VI") (pintype "power_in") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly (pts
(xy 3.8625 0.8665)
(xy 0.7375 0.8665)
(xy 0.7375 -0.8665)
(xy 3.8625 -0.8665)
) (width 0) (fill yes))
) (tstamp 9ccb5430-3e44-41ca-9eea-dca0e03955da))
(pad "3" smd rect locked (at -1.65 1.5 90) (size 1.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "+5V") (pinfunction "VO") (pintype "power_out") (tstamp 896d9f71-826d-4f2e-bf7d-f44a7f886563))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-89-3.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_IDC:IDC-Header_2x03_P2.54mm_Vertical" locked (layer "F.Cu")
(tedit 5EAC9A07) (tstamp 00000000-0000-0000-0000-0000609f29ba)
(at 185.7496 92.451)
(descr "Through hole IDC box header, 2x03, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0")
(tags "Through hole vertical IDC box header THT 2x03 2.54mm double row")
(property "Sheetfile" "ATMega-Board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006098266f")
(attr through_hole)
(fp_text reference "J4" (at 1.27 -6.1) (layer "F.SilkS") hide
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp 277ebff2-0642-463e-8855-4d0dc3b7053b)
)
(fp_text value "Conn_02x03_Odd_Even" (at 1.27 11.18) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5bce3260-607e-4d17-806d-9b56232f4881)
)
(fp_text user "${REFERENCE}" (at 1.27 2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86e75520-2333-43b9-8340-c334c45cf4cb)
)
(fp_line (start -3.29 10.29) (end -3.29 -5.21) (layer "F.SilkS") (width 0.12) (tstamp 1e82cb74-e029-47a5-add5-152457860e45))
(fp_line (start -1.98 8.99) (end -1.98 4.59) (layer "F.SilkS") (width 0.12) (tstamp 4acd556c-1258-479b-b7e0-b187ef08d12d))
(fp_line (start -3.29 0.49) (end -1.98 0.49) (layer "F.SilkS") (width 0.12) (tstamp 5a7bd63b-44ce-45fe-a991-7ded75fe5bc6))
(fp_line (start 5.83 10.29) (end -3.29 10.29) (layer "F.SilkS") (width 0.12) (tstamp 6bd16b27-0306-4e66-ac0d-f5e2cf046128))
(fp_line (start -3.68 0) (end -4.68 -0.5) (layer "F.SilkS") (width 0.12) (tstamp 7409bbe6-1eea-411e-8f37-dadacbf6f86f))
(fp_line (start 5.83 -5.21) (end 5.83 10.29) (layer "F.SilkS") (width 0.12) (tstamp 787bfd6d-2fab-4271-a56e-c17296adbbbb))
(fp_line (start 4.52 8.99) (end -1.98 8.99) (layer "F.SilkS") (width 0.12) (tstamp 84bf54cf-b597-49e0-b544-1f3a8ceb66fb))
(fp_line (start -4.68 -0.5) (end -4.68 0.5) (layer "F.SilkS") (width 0.12) (tstamp 9444a38f-a5a4-4c6a-add5-68a3da60cc42))
(fp_line (start -1.98 4.59) (end -1.98 4.59) (layer "F.SilkS") (width 0.12) (tstamp 95c1558c-6d7e-45b1-ac2e-4ccb43193dfc))
(fp_line (start -1.98 -3.91) (end 4.52 -3.91) (layer "F.SilkS") (width 0.12) (tstamp 9ef7b70e-097f-4cb1-9140-9a343597d4bd))
(fp_line (start -3.29 -5.21) (end 5.83 -5.21) (layer "F.SilkS") (width 0.12) (tstamp a2bfef53-6e44-4173-ae62-128b0e04afb8))
(fp_line (start -1.98 4.59) (end -3.29 4.59) (layer "F.SilkS") (width 0.12) (tstamp cdca04ef-db62-4ed0-9703-2e941fdd4b20))
(fp_line (start 4.52 -3.91) (end 4.52 8.99) (layer "F.SilkS") (width 0.12) (tstamp e431d34c-461e-4be1-947a-3bb8893076ad))
(fp_line (start -4.68 0.5) (end -3.68 0) (layer "F.SilkS") (width 0.12) (tstamp e5be9216-a466-4d47-a629-e2baafad4dfa))
(fp_line (start -1.98 0.49) (end -1.98 -3.91) (layer "F.SilkS") (width 0.12) (tstamp e9beed0a-9e2b-40f6-a731-262b3db0ed1a))
(fp_line (start 6.22 10.69) (end 6.22 -5.6) (layer "F.CrtYd") (width 0.05) (tstamp 203a73f0-33e3-4126-9b3d-5f02590ea037))
(fp_line (start -3.68 -5.6) (end -3.68 10.69) (layer "F.CrtYd") (width 0.05) (tstamp 9369496c-c9aa-4ef8-9537-169e0c5d6311))
(fp_line (start 6.22 -5.6) (end -3.68 -5.6) (layer "F.CrtYd") (width 0.05) (tstamp 93b5adc6-a8b3-4c96-8614-2401da7a1908))
(fp_line (start -3.68 10.69) (end 6.22 10.69) (layer "F.CrtYd") (width 0.05) (tstamp d6dd04d6-c87f-4c0a-a219-285918170d90))
(fp_line (start -3.18 0.49) (end -1.98 0.49) (layer "F.Fab") (width 0.1) (tstamp 05793526-1721-4a61-99db-693271f14d39))
(fp_line (start 4.52 -3.91) (end 4.52 8.99) (layer "F.Fab") (width 0.1) (tstamp 09f28e97-98a1-4ae2-95a1-60ab2ab5d2d7))
(fp_line (start -2.18 -5.1) (end 5.72 -5.1) (layer "F.Fab") (width 0.1) (tstamp 288aaa0e-b825-4cc8-927d-10ff9acbdf55))
(fp_line (start -3.18 -4.1) (end -2.18 -5.1) (layer "F.Fab") (width 0.1) (tstamp 36adc27d-6e25-417f-a6ef-2520b60f2367))
(fp_line (start 4.52 8.99) (end -1.98 8.99) (layer "F.Fab") (width 0.1) (tstamp 392dc3f3-6eaf-4b0b-8c01-6d8fb91aef65))
(fp_line (start 5.72 -5.1) (end 5.72 10.18) (layer "F.Fab") (width 0.1) (tstamp 583f58b8-0594-4d90-b73d-d032b7c51d1c))
(fp_line (start -1.98 4.59) (end -1.98 4.59) (layer "F.Fab") (width 0.1) (tstamp 5f2a2274-c3a3-4b5f-9d50-b22d86c900cb))
(fp_line (start -1.98 8.99) (end -1.98 4.59) (layer "F.Fab") (width 0.1) (tstamp 9c450295-e86a-4b94-8f08-9093bd2381cf))
(fp_line (start -1.98 -3.91) (end 4.52 -3.91) (layer "F.Fab") (width 0.1) (tstamp a671d439-6cfc-4a52-a5a5-e36bb0ce315e))
(fp_line (start -1.98 4.59) (end -3.18 4.59) (layer "F.Fab") (width 0.1) (tstamp a774e13a-0df3-4fdc-9cb3-55320af0806f))
(fp_line (start -3.18 10.18) (end -3.18 -4.1) (layer "F.Fab") (width 0.1) (tstamp c21727f8-e922-4d1a-b14b-4b250dcf410f))
(fp_line (start 5.72 10.18) (end -3.18 10.18) (layer "F.Fab") (width 0.1) (tstamp d01b550c-fe09-4900-9967-5f9e0f2cf316))
(fp_line (start -1.98 0.49) (end -1.98 -3.91) (layer "F.Fab") (width 0.1) (tstamp efcf0ed7-2ba5-405d-8c2a-465c8b063e99))
(pad "1" thru_hole roundrect locked (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (roundrect_rratio 0.1470588235)
(net 9 "/D12{slash}MISO") (pinfunction "Pin_1") (pintype "passive") (tstamp 8cf4364e-bdd8-4d1e-b047-ca8ed845b48e))
(pad "2" thru_hole circle locked (at 2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 34 "/ISP-5V") (pinfunction "Pin_2") (pintype "passive") (tstamp edb49e6e-02b1-4f27-9af2-16095da52777))
(pad "3" thru_hole circle locked (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "/D13{slash}SCK") (pinfunction "Pin_3") (pintype "passive") (tstamp 226abfcb-f470-42ab-8a3b-297b8b2156e5))
(pad "4" thru_hole circle locked (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "/D11{slash}MOSI") (pinfunction "Pin_4") (pintype "passive") (tstamp 08aec8c7-135e-4371-b31b-f454fd3a7825))
(pad "5" thru_hole circle locked (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 33 "/~{RESET}") (pinfunction "Pin_5") (pintype "passive") (tstamp d1fe94d5-ae19-4918-9f69-98dc8cf6ff4c))
(pad "6" thru_hole circle locked (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_6") (pintype "passive") (tstamp a5294fec-8441-4e78-bc67-1127b286c233))
(model "${KICAD6_3DMODEL_DIR}/Connector_IDC.3dshapes/IDC-Header_2x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-000060a08ee6)
(at 107.4928 79.756)
(descr "Mounting Hole 3.2mm, no annular, M3, DIN965")
(tags "mounting hole 3.2mm no annular m3 din965")
(property "Sheetfile" "ATMega-Board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060b30a8e")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ebcae482-abe3-4c80-aa2f-939773126b47)
)
(fp_text value "MountingHole" (at 0 3.8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a3314f40-33ec-44b2-9f88-1eaa8d5eaa08)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a16b1e7-9eaa-428f-b3dc-c47c4113845a)
)
(fp_circle (center 0 0) (end 2.8 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 208e688a-1bbc-4e60-880b-b253c4c737f4))
(fp_circle (center 0 0) (end 3.05 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 5efb9123-81f7-469e-9af4-e843717a76e5))
(pad "" np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp dbcf199a-f147-46a0-b866-1cdfe2b71bf1))
)
(footprint "Crystal:Crystal_HC49-4H_Vertical" locked (layer "F.Cu")
(tedit 5A1AD3B7) (tstamp 00000000-0000-0000-0000-000060a2b393)
(at 164.3766 103.99477)
(descr "Crystal THT HC-49-4H http://5hertz.com/pdfs/04404_D.pdf")
(tags "THT crystalHC-49-4H")
(property "Sheetfile" "ATMega-Board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060ac1fc3")
(attr through_hole)
(fp_text reference "Y1" (at 2.44 -3.10597) (layer "F.SilkS")
(effects (font (size 0.762 0.762) (thickness 0.1016)))
(tstamp b9e48f33-f7c6-4e06-a5f3-d7eb46bba285)
)
(fp_text value "8Mhz" (at 2.44 3.525) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 072c331d-9544-4265-85dc-e9510616892e)
)
(fp_text user "${REFERENCE}" (at 2.44 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 553f8a95-2223-49ab-bae1-4304296160bd)
)
(fp_line (start -0.76 2.525) (end 5.64 2.525) (layer "F.SilkS") (width 0.12) (tstamp 6db5dad3-5bd4-4022-b9a9-e80c3b06df3a))
(fp_line (start -0.76 -2.525) (end 5.64 -2.525) (layer "F.SilkS") (width 0.12) (tstamp b50e207e-2949-426a-85ec-d003a75f3b9a))
(fp_arc (start -0.76 2.525) (mid -3.285 0) (end -0.76 -2.525) (layer "F.SilkS") (width 0.12) (tstamp 713fd0bb-6203-4bbf-b896-a883107836c8))
(fp_arc (start 5.64 -2.525) (mid 8.165 0) (end 5.64 2.525) (layer "F.SilkS") (width 0.12) (tstamp e1c3bcde-0c20-434b-8b57-cb37fca6a639))
(fp_line (start -3.6 -2.8) (end -3.6 2.8) (layer "F.CrtYd") (width 0.05) (tstamp 03ca33fb-26bf-4d0f-b761-0e2caefd7f24))
(fp_line (start -3.6 2.8) (end 8.5 2.8) (layer "F.CrtYd") (width 0.05) (tstamp 27e2d859-e4a1-4b36-83fb-344da1301690))
(fp_line (start 8.5 -2.8) (end -3.6 -2.8) (layer "F.CrtYd") (width 0.05) (tstamp 432c61c3-125b-4668-9679-2e3ba632c426))
(fp_line (start 8.5 2.8) (end 8.5 -2.8) (layer "F.CrtYd") (width 0.05) (tstamp a26fcc31-f47b-4543-b733-4988f140e25e))
(fp_line (start -0.56 -2) (end 5.44 -2) (layer "F.Fab") (width 0.1) (tstamp 6d6842c1-069b-4602-a45f-75e8ade0cc62))
(fp_line (start -0.76 -2.325) (end 5.64 -2.325) (layer "F.Fab") (width 0.1) (tstamp aa862cdb-76d6-492c-bce3-a38754cd81ec))
(fp_line (start -0.76 2.325) (end 5.64 2.325) (layer "F.Fab") (width 0.1) (tstamp b9a45bdb-8666-4c62-bdbd-04cdb74952dc))
(fp_line (start -0.56 2) (end 5.44 2) (layer "F.Fab") (width 0.1) (tstamp f8ca86ae-1a6a-43c4-85e8-d18b65c661ce))
(fp_arc (start 5.64 -2.325) (mid 7.965 0) (end 5.64 2.325) (layer "F.Fab") (width 0.1) (tstamp 4395f165-fa7c-4f6b-86e7-3825baa5c037))
(fp_arc (start -0.56 2) (mid -2.56 0) (end -0.56 -2) (layer "F.Fab") (width 0.1) (tstamp 519c6838-4609-49b6-b1d5-2d45ab6ba81f))
(fp_arc (start -0.76 2.325) (mid -3.085 0) (end -0.76 -2.325) (layer "F.Fab") (width 0.1) (tstamp 8d73aa7e-d222-405d-b848-87ce0326dca6))
(fp_arc (start 5.44 -2) (mid 7.44 0) (end 5.44 2) (layer "F.Fab") (width 0.1) (tstamp bf998e5c-d5b8-4d12-9c8a-bf00dc4434f7))
(pad "1" thru_hole circle locked (at 0 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Net-(C5-Pad2)") (pinfunction "1") (pintype "passive") (tstamp 634e11f0-d192-4531-a280-76c51e2df121))
(pad "2" thru_hole circle locked (at 4.88 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Net-(C6-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 6dad5379-98d5-4c7c-be4b-de52f14d1bca))
(model "${KICAD6_3DMODEL_DIR}/Crystal.3dshapes/Crystal_HC49-4H_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" locked (layer "F.Cu")
(tedit 5F68FEEF) (tstamp 00000000-0000-0000-0000-000060a2b3cf)
(at 158.9526 104.013 90)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "ATMega-Board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060accebe")
(attr smd)
(fp_text reference "C5" (at 0 0 180) (layer "F.SilkS")
(effects (font (size 0.762 0.762) (thickness 0.1016)))
(tstamp 1230169a-16f6-4c49-bc07-460f075330fa)
)
(fp_text value "22p" (at 0 1.85 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8254a56f-a4c1-472f-9343-901a2f93a78a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 8d027766-131e-45ed-bf08-8ca4f432b04c)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 023323b0-838d-4fa3-a6c1-593cb58bf893))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer "F.SilkS") (width 0.12) (tstamp 8032da7f-55e0-4e6b-bdb3-adf834d3f293))
(fp_line (start 2.48 1.15) (end -2.48 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 540e2cef-c3b2-4b86-bafc-c690fc3f8256))
(fp_line (start 2.48 -1.15) (end 2.48 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 5d1d98b7-f72e-4e94-97d1-337eb2726232))
(fp_line (start -2.48 1.15) (end -2.48 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 709ddacd-d672-4103-9fc8-4d7865b13435))
(fp_line (start -2.48 -1.15) (end 2.48 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 97aba53d-9c50-45cc-a16b-65ddf262f5ad))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 2a00e67c-936d-4296-9ddb-3fce02bd27c7))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 32ea4b4d-ba8b-4271-a27a-64299492da92))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 923c0423-4f21-4038-a914-19bdc9185af2))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp b69e1dbb-f7b7-4117-8379-56c70d17c0b5))
(pad "1" smd roundrect locked (at -1.5625 0 90) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 1 "GND") (pintype "passive") (tstamp 5831e975-1884-426d-bc67-92b5d2956792))
(pad "2" smd roundrect locked (at 1.5625 0 90) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 3 "Net-(C5-Pad2)") (pintype "passive") (tstamp 426ee330-d99c-45c3-9bf3-ea179553de6e))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" locked (layer "F.Cu")
(tedit 5F68FEEF) (tstamp 00000000-0000-0000-0000-000060a2b42f)
(at 174.8276 104.013 90)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "ATMega-Board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060ace159")
(attr smd)
(fp_text reference "C6" (at 0 0 180) (layer "F.SilkS")
(effects (font (size 0.762 0.762) (thickness 0.1016)))
(tstamp 943a9612-51f8-4a1a-bf8a-813041318ff1)
)
(fp_text value "22p" (at 0 1.85 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b95942e-35eb-4d2d-9b84-fc29087d786f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 5e6a4c88-3a9c-4994-ac5b-fcefff6a3af6)
)
(fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer "F.SilkS") (width 0.12) (tstamp 0c64ef72-f941-4b3c-9028-18d5f4b589d8))
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer "F.SilkS") (width 0.12) (tstamp de22c37d-7c08-4865-9e38-da4463272a44))
(fp_line (start 2.48 1.15) (end -2.48 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 168aac20-e9e7-4fba-b755-8b11ee9dd1a0))
(fp_line (start 2.48 -1.15) (end 2.48 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 5f5531b7-8ded-4a53-b318-97349895bf09))
(fp_line (start -2.48 -1.15) (end 2.48 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 897afd42-402c-4736-8f9e-7bd87903eacc))
(fp_line (start -2.48 1.15) (end -2.48 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp dc372613-a518-459d-9d05-6dbedbc8db54))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 07b8b95d-e147-4eba-89e4-bba9e83685c9))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 46d113de-9b5b-405a-985a-3e959925e601))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 4b1102e9-8403-452c-aaa7-f763096388c8))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp b64f4716-f82c-47a8-8425-c0d08c907934))
(pad "1" smd roundrect locked (at -1.5625 0 90) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 1 "GND") (pintype "passive") (tstamp 3a21afa2-b0b7-45ee-8ac6-9b2656b2ce59))
(pad "2" smd roundrect locked (at 1.5625 0 90) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 4 "Net-(C6-Pad2)") (pintype "passive") (tstamp 5ea73876-dd34-47cb-b901-c6fdfef8685c))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-28_W7.62mm_Socket_LongPads" locked (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 00000000-0000-0000-0000-000060a2b4ae)
(at 145.1096 98.78777 90)
(descr "28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads")
(property "Distributor" "Reichelt")
(property "EAN / GTIN" "9900001218354")
(property "Hersteller" "Microchip")
(property "Sheetfile" "ATMega-Board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000609701ff")
(attr through_hole)
(fp_text reference "U2" (at 3.81 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d2db6ddc-359c-4ff9-89e4-0765e9651998)
)
(fp_text value "ATmega328-P" (at 3.81 35.35 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ce85b2a4-aa5f-4698-9fe4-1da26d1c7391)
)
(fp_text user "${REFERENCE}" (at 3.81 16.51 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a692f894-c2e1-4637-b450-db01c969a539)
)
(fp_line (start 6.06 34.35) (end 6.06 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 0a065b95-8bda-472e-9b3b-800d74d879de))
(fp_line (start -1.44 -1.39) (end -1.44 34.41) (layer "F.SilkS") (width 0.12) (tstamp 51400521-8ee4-4cbb-9564-dfc445fced24))
(fp_line (start 1.56 34.35) (end 6.06 34.35) (layer "F.SilkS") (width 0.12) (tstamp 98759e4f-ea53-42ee-bd86-760faa421cf2))
(fp_line (start 2.81 -1.33) (end 1.56 -1.33) (layer "F.SilkS") (width 0.12) (tstamp c54b0b47-a090-405b-8d9f-868201e4f379))
(fp_line (start -1.44 34.41) (end 9.06 34.41) (layer "F.SilkS") (width 0.12) (tstamp c5868273-0df0-4516-8484-180fa73a1b2e))
(fp_line (start 9.06 34.41) (end 9.06 -1.39) (layer "F.SilkS") (width 0.12) (tstamp c5e0f6a5-ac2d-457a-a123-a4c3c1b2525f))
(fp_line (start 9.06 -1.39) (end -1.44 -1.39) (layer "F.SilkS") (width 0.12) (tstamp e0a1c56d-864e-4d35-a986-15c8500fe0cf))
(fp_line (start 1.56 -1.33) (end 1.56 34.35) (layer "F.SilkS") (width 0.12) (tstamp e2ca48c8-44a7-4fe8-9957-d29fe8aae07e))
(fp_line (start 6.06 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp e3947563-42fd-4e6f-b179-19f79eebc9d3))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 604cf775-66d5-48b8-b5c8-f2cc241e1c87))
(fp_line (start 9.15 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 301aa91a-09a4-446f-8fef-c623e76dc405))
(fp_line (start -1.55 34.65) (end 9.15 34.65) (layer "F.CrtYd") (width 0.05) (tstamp 56dfb266-1649-4100-8f2f-3be6d6384c15))
(fp_line (start -1.55 -1.6) (end -1.55 34.65) (layer "F.CrtYd") (width 0.05) (tstamp ab0309b4-8d61-41e2-a871-876e673fea09))
(fp_line (start 9.15 34.65) (end 9.15 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp ed04f819-e833-4125-8f98-6a0bd6514f05))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 127e1aa7-3610-4f75-90fa-65ecb2865ff6))
(fp_line (start 6.985 -1.27) (end 6.985 34.29) (layer "F.Fab") (width 0.1) (tstamp 2b19abc3-5d0e-4905-a474-db9bcb40f08b))
(fp_line (start 0.635 34.29) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp 2f5a9907-61bb-484c-b04e-609a55e0ce0d))
(fp_line (start 8.89 34.35) (end 8.89 -1.33) (layer "F.Fab") (width 0.1) (tstamp 36808926-80ef-4e45-8ee5-df1b0758ad9d))
(fp_line (start 6.985 34.29) (end 0.635 34.29) (layer "F.Fab") (width 0.1) (tstamp 9934a45e-680d-439c-bbaf-5ac76923cb1e))
(fp_line (start -1.27 34.35) (end 8.89 34.35) (layer "F.Fab") (width 0.1) (tstamp 9b6a8394-3988-4d45-85b7-54daaecb2dfe))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp b68fe0c4-d526-4db7-ad70-3b88d51f16ec))
(fp_line (start -1.27 -1.33) (end -1.27 34.35) (layer "F.Fab") (width 0.1) (tstamp beab002d-0fe1-4a2a-9f28-24f9388b6c88))
(fp_line (start 8.89 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp bf009b82-2b2f-4b08-834b-be6c2d23afad))
(pad "1" thru_hole rect locked (at 0 0 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 33 "/~{RESET}") (pinfunction "~{RESET}/PC6") (pintype "bidirectional") (tstamp 7ba82072-120f-4eea-bccd-9c6a1045aea6))
(pad "2" thru_hole oval locked (at 0 2.54 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "/D0{slash}RX") (pinfunction "PD0") (pintype "bidirectional") (tstamp 37d06f15-26c9-4555-be2e-404b085d73c6))
(pad "3" thru_hole oval locked (at 0 5.08 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "/D1{slash}TX") (pinfunction "PD1") (pintype "bidirectional") (tstamp 90b996a3-d31e-4bcc-aee9-4a1b8ad5cf4d))
(pad "4" thru_hole oval locked (at 0 7.62 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "/D2") (pinfunction "PD2") (pintype "bidirectional") (tstamp 2af60b97-a636-46ef-bfc6-48c83159d1f4))
(pad "5" thru_hole oval locked (at 0 10.16 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "/D3") (pinfunction "PD3") (pintype "bidirectional") (tstamp 519c24b1-5d2b-4279-a6e2-eefba5ea62b2))
(pad "6" thru_hole oval locked (at 0 12.7 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "/D4") (pinfunction "PD4") (pintype "bidirectional") (tstamp b0ba06d7-be3f-4c3d-a0f9-b05edf35038f))
(pad "7" thru_hole oval locked (at 0 15.24 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "+5V") (pinfunction "VCC") (pintype "power_in") (tstamp 72abb3fb-23f6-4435-af16-ffc6ee8a0e0f))
(pad "8" thru_hole oval locked (at 0 17.78 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp cb7e0448-9a54-454e-9977-f8ccd3fdd72e))
(pad "9" thru_hole oval locked (at 0 20.32 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Net-(C5-Pad2)") (pinfunction "XTAL1/PB6") (pintype "bidirectional") (tstamp 356ad796-76a0-48e9-b1be-6e29d99edf45))
(pad "10" thru_hole oval locked (at 0 22.86 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Net-(C6-Pad2)") (pinfunction "XTAL2/PB7") (pintype "bidirectional") (tstamp 59a05c14-f1ed-44b1-b4c4-211f817d2a0d))
(pad "11" thru_hole oval locked (at 0 25.4 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "/D5") (pinfunction "PD5") (pintype "bidirectional") (tstamp 337f2e0f-3f2f-49c8-800d-6a130e6ebdd2))
(pad "12" thru_hole oval locked (at 0 27.94 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "/D6") (pinfunction "PD6") (pintype "bidirectional") (tstamp 575bce7e-035f-43d6-92a9-cd7ca63b3c34))
(pad "13" thru_hole oval locked (at 0 30.48 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "/D7") (pinfunction "PD7") (pintype "bidirectional") (tstamp d44b6b48-7643-43ab-af6b-ff37755c835f))
(pad "14" thru_hole oval locked (at 0 33.02 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "/D8") (pinfunction "PB0") (pintype "bidirectional") (tstamp 825289f4-272a-4caa-9ab0-70e385dd7f3d))
(pad "15" thru_hole oval locked (at 7.62 33.02 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "/D9") (pinfunction "PB1") (pintype "bidirectional") (tstamp e2a288de-c436-49a9-ac3b-ed7867ec9f24))
(pad "16" thru_hole oval locked (at 7.62 30.48 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "/D10") (pinfunction "PB2") (pintype "bidirectional") (tstamp 9a31c751-ed07-4664-9fda-d1fd6088dcb4))
(pad "17" thru_hole oval locked (at 7.62 27.94 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "/D11{slash}MOSI") (pinfunction "PB3") (pintype "bidirectional") (tstamp 3cb438e2-19b0-4ef0-9a46-5867a0cb2a7c))
(pad "18" thru_hole oval locked (at 7.62 25.4 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "/D12{slash}MISO") (pinfunction "PB4") (pintype "bidirectional") (tstamp 51969675-3cd3-401f-afa2-3806830e5584))
(pad "19" thru_hole oval locked (at 7.62 22.86 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "/D13{slash}SCK") (pinfunction "PB5") (pintype "bidirectional") (tstamp 8e1fb497-a030-4e33-b534-2c93fe0977e2))
(pad "20" thru_hole oval locked (at 7.62 20.32 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "+5V") (pinfunction "AVCC") (pintype "power_in") (tstamp a586873f-60fd-47dd-aeb7-06b81965c115))
(pad "21" thru_hole oval locked (at 7.62 17.78 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "/ARef") (pinfunction "AREF") (pintype "passive") (tstamp 9f6d8fd7-f21d-410f-a624-2d12663e58a7))
(pad "22" thru_hole oval locked (at 7.62 15.24 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 6b995fe8-60a1-4ee7-b3ab-1c56622591bc))
(pad "23" thru_hole oval locked (at 7.62 12.7 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 23 "/A0") (pinfunction "PC0") (pintype "bidirectional") (tstamp 20c0af06-7f73-47f3-9070-be2140434cef))
(pad "24" thru_hole oval locked (at 7.62 10.16 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 24 "/A1") (pinfunction "PC1") (pintype "bidirectional") (tstamp 4b89d906-7dc0-4dde-b139-3bea4d692a87))
(pad "25" thru_hole oval locked (at 7.62 7.62 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "/A2") (pinfunction "PC2") (pintype "bidirectional") (tstamp 9be1bb3d-1847-4004-8f37-aa7776b47048))
(pad "26" thru_hole oval locked (at 7.62 5.08 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "/A3") (pinfunction "PC3") (pintype "bidirectional") (tstamp 18fcb169-a85e-431b-a17d-203de9b1ed3a))
(pad "27" thru_hole oval locked (at 7.62 2.54 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "/A4") (pinfunction "PC4") (pintype "bidirectional") (tstamp 7582c611-7ed7-456e-81f5-23430e5b02e1))
(pad "28" thru_hole oval locked (at 7.62 0 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "/A5") (pinfunction "PC5") (pintype "bidirectional") (tstamp 323ad178-f4eb-4c66-9262-4670c9958248))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-28_W7.62mm_Socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-000060a2b513)
(at 107.5436 117.8052)
(descr "Mounting Hole 3.2mm, no annular, M3, DIN965")
(tags "mounting hole 3.2mm no annular m3 din965")
(property "Sheetfile" "ATMega-Board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060b31158")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 93ab95be-a196-45ff-8814-2f9783f2fe5d)
)
(fp_text value "MountingHole" (at 0 3.8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c60a7826-1274-4300-86a2-6f217838806a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8ce901c3-bb7e-40e0-8e01-e9df6db8aa18)
)
(fp_circle (center 0 0) (end 2.8 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 4955f89c-f965-499a-b328-4365437bceab))
(fp_circle (center 0 0) (end 3.05 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 44e201dd-2f11-4c4a-917d-bf93da31a4fc))
(pad "" np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp c6df6f5b-ff60-419e-bbea-b866203757fb))
)
(footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" locked (layer "F.Cu")
(tedit 5F68FEEF) (tstamp 00000000-0000-0000-0000-000060a3aa7f)
(at 125.27895 97.0026 180)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "ATMega-Board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060a568b5")
(attr smd)
(fp_text reference "C2" (at 0 0 90) (layer "F.SilkS")
(effects (font (size 0.762 0.762) (thickness 0.1016)))
(tstamp a51df807-d5a7-47e8-94c8-a948a0b3a23f)
)
(fp_text value "1uF" (at 0 1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c3cc2e8a-2fb7-41b8-bf76-c57c06f9e3d6)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp a4f06b7c-26ad-464b-8d60-80c8ab2c0619)
)
(fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer "F.SilkS") (width 0.12) (tstamp 2f17c386-22f2-4aa3-bfff-5b98710bd7c5))
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 6eb44d9b-06d8-4317-9c89-a08087c07dbc))
(fp_line (start 2.48 1.15) (end -2.48 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 6b94de04-8ae5-44c2-83a1-9e3dc4a52dc0))
(fp_line (start -2.48 1.15) (end -2.48 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 80eef5fe-a4b0-4bbd-8513-e53646b1815d))
(fp_line (start -2.48 -1.15) (end 2.48 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp c8a98b3c-a17e-48d8-a1ba-a994e163a165))
(fp_line (start 2.48 -1.15) (end 2.48 1.15) (layer "F.CrtYd") (width 0.05) (tstamp eed28a0c-80fe-40fe-8d26-6bad9dfbb43f))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 2155d332-2e6f-4868-9f3b-2efc75c72c70))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 216db984-cb0e-42fe-8ac7-f7297fc5c80e))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 2c85f1dd-5a4d-47e9-95e2-fd39fcbc5fd9))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp b8f4a5f2-ace1-4577-9765-004081b402dd))
(pad "1" smd roundrect locked (at -1.5625 0 180) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 2 "/VDC_IN") (pintype "passive") (tstamp 7e803ac7-4bc4-44ff-a48a-1041bb5eb1fd))
(pad "2" smd roundrect locked (at 1.5625 0 180) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 1 "GND") (pintype "passive") (tstamp f8adfc1a-4f71-4064-891d-de0cb8e3407e))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" locked (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 1b7328b7-1e29-462f-aa13-10196f9884b2)
(at 139.5476 96.3168)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "ATMega-Board.kicad_sch")
(property "Sheetname" "")
(path "/c1573d89-9c89-43a6-95bf-e61ed07b2569")
(attr smd)
(fp_text reference "R1" (at 0 0 90) (layer "F.SilkS")
(effects (font (size 0.762 0.762) (thickness 0.1016)))
(tstamp f6871a5c-6415-40da-9b9c-03ec07247381)
)
(fp_text value "1K" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dfd8e558-dd38-48d0-8b1f-2cf013fc448c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp a5ed7acc-f609-40a7-a960-cb40f17ea52c)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 2f926ad8-60a6-47e1-8ac3-7f6d7fb51f38))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer "F.SilkS") (width 0.12) (tstamp f75b0aa9-af4b-4731-9bfc-bfc3ea45247d))
(fp_line (start 2.45 1.12) (end -2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 10963130-39b9-4699-a2dd-3f4549c9ef38))
(fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 8298d66c-e7ae-4bdc-8d95-0813a3ec7f9a))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp ac621626-2d56-4c6a-8099-b7bfddac1d04))
(fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp e02588c8-5b7c-4d76-bbc7-c036ed18dc0c))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 2819186b-67f3-4eb5-b094-86adae225ee7))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 2a35a647-2f91-4651-a0da-e4cab11ddff8))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp c74d5d50-7e91-41e5-a3d8-aa251f54b989))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp caa87dfb-e542-4099-aacd-65a3cf2ca600))
(pad "1" smd roundrect locked (at -1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 31 "/RX") (pintype "passive") (tstamp 0ae50cce-6dc3-4c7a-bd68-a1a1c736478e))
(pad "2" smd roundrect locked (at 1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 12 "/D0{slash}RX") (pintype "passive") (tstamp cf56d871-9907-48ef-a3f7-79a046f63c22))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MySymbol:KR-Logo_10.4x7.2mm_SilkScreen" (layer "F.Cu")
(tedit 5FE8F6C5) (tstamp 1d4054b7-50e0-4765-9586-d464abe8cf53)
(at 125.222 105.41)
(descr "Kai Ruland Logo")
(attr exclude_from_pos_files)
(fp_text reference "G***" (at 0 -5.08) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b2007ddf-7008-45d6-a5b3-3c6bc0debe82)
)
(fp_text value "KR-Logo-10.4mm-SilkScreen" (at 0 5.08) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c1440fac-106d-4ff3-bdc3-cb780e6e0374)
)
(fp_poly (pts
(xy 1.422493 -3.620702)
(xy 1.508868 -3.614862)
(xy 1.587889 -3.603889)
(xy 1.659139 -3.587836)
(xy 1.722197 -3.566755)
(xy 1.75788 -3.55074)
(xy 1.799832 -3.525739)
(xy 1.844395 -3.491808)
(xy 1.89095 -3.449651)
(xy 1.938882 -3.399972)
(xy 1.987573 -3.343476)
(xy 2.036408 -3.280865)
(xy 2.084769 -3.212845)
(xy 2.13204 -3.140119)
(xy 2.163952 -3.08713)
(xy 2.195208 -3.03355)
(xy 2.213443 -3.041169)
(xy 2.231198 -3.047669)
(xy 2.256838 -3.055825)
(xy 2.288334 -3.065088)
(xy 2.323654 -3.074908)
(xy 2.360767 -3.084734)
(xy 2.397643 -3.094015)
(xy 2.432249 -3.102202)
(xy 2.462555 -3.108745)
(xy 2.463776 -3.10899)
(xy 2.558956 -3.125318)
(xy 2.650661 -3.135274)
(xy 2.742981 -3.139271)
(xy 2.76352 -3.139393)
(xy 2.851499 -3.137016)
(xy 2.932168 -3.129791)
(xy 3.007275 -3.117467)
(xy 3.078571 -3.099793)
(xy 3.111747 -3.089404)
(xy 3.155428 -3.07308)
(xy 3.195016 -3.054287)
(xy 3.231808 -3.031984)
(xy 3.267103 -3.005135)
(xy 3.3022 -2.972699)
(xy 3.338398 -2.93364)
(xy 3.376995 -2.886919)
(xy 3.396643 -2.861612)
(xy 3.415653 -2.836542)
(xy 3.432238 -2.814318)
(xy 3.445516 -2.796153)
(xy 3.454601 -2.783258)
(xy 3.458613 -2.776848)
(xy 3.458704 -2.776378)
(xy 3.453855 -2.774388)
(xy 3.440052 -2.768929)
(xy 3.417817 -2.760204)
(xy 3.387669 -2.748415)
(xy 3.350131 -2.733764)
(xy 3.305721 -2.716453)
(xy 3.254961 -2.696684)
(xy 3.198372 -2.67466)
(xy 3.136474 -2.650581)
(xy 3.069788 -2.624651)
(xy 2.998835 -2.597071)
(xy 2.924134 -2.568043)
(xy 2.846208 -2.537769)
(xy 2.765575 -2.506452)
(xy 2.682758 -2.474293)
(xy 2.598277 -2.441494)
(xy 2.512651 -2.408258)
(xy 2.426403 -2.374786)
(xy 2.340052 -2.341281)
(xy 2.25412 -2.307944)
(xy 2.169127 -2.274977)
(xy 2.085593 -2.242583)
(xy 2.004039 -2.210964)
(xy 1.924986 -2.180321)
(xy 1.848955 -2.150857)
(xy 1.776466 -2.122774)
(xy 1.708039 -2.096273)
(xy 1.644196 -2.071557)
(xy 1.585457 -2.048828)
(xy 1.532343 -2.028288)
(xy 1.485374 -2.010138)
(xy 1.445071 -1.994581)
(xy 1.411955 -1.981819)
(xy 1.386546 -1.972054)
(xy 1.369365 -1.965488)
(xy 1.360932 -1.962323)
(xy 1.36017 -1.962062)
(xy 1.353228 -1.962867)
(xy 1.35113 -1.971631)
(xy 1.351129 -1.971718)
(xy 1.350584 -1.980964)
(xy 1.349193 -1.998137)
(xy 1.347145 -2.02106)
(xy 1.344629 -2.047554)
(xy 1.34366 -2.0574)
(xy 1.338232 -2.125678)
(xy 1.336688 -2.186098)
(xy 1.339442 -2.240356)
(xy 1.34691 -2.290145)
(xy 1.359509 -2.337159)
(xy 1.377654 -2.383091)
(xy 1.40176 -2.429636)
(xy 1.432244 -2.478487)
(xy 1.455168 -2.51157)
(xy 1.518153 -2.591679)
(xy 1.589561 -2.66751)
(xy 1.669622 -2.739251)
(xy 1.758568 -2.807092)
(xy 1.85663 -2.871222)
(xy 1.964039 -2.931829)
(xy 1.977383 -2.938779)
(xy 2.057386 -2.9801)
(xy 2.017056 -3.040255)
(xy 1.967477 -3.111226)
(xy 1.918188 -3.175953)
(xy 1.869694 -3.233898)
(xy 1.822504 -3.284524)
(xy 1.777123 -3.327291)
(xy 1.73406 -3.361661)
(xy 1.693821 -3.387095)
(xy 1.68714 -3.390571)
(xy 1.649049 -3.407265)
(xy 1.603793 -3.423054)
(xy 1.554364 -3.437018)
(xy 1.503757 -3.448234)
(xy 1.494081 -3.450009)
(xy 1.438484 -3.457515)
(xy 1.373246 -3.462081)
(xy 1.298451 -3.46371)
(xy 1.214181 -3.462407)
(xy 1.12052 -3.458174)
(xy 1.017552 -3.451015)
(xy 0.905359 -3.440933)
(xy 0.784026 -3.427933)
(xy 0.6858 -3.416108)
(xy 0.580947 -3.402418)
(xy 0.473452 -3.387331)
(xy 0.362698 -3.370737)
(xy 0.248072 -3.352525)
(xy 0.128957 -3.332582)
(xy 0.004739 -3.310798)
(xy -0.125196 -3.28706)
(xy -0.261465 -3.261257)
(xy -0.404681 -3.233278)
(xy -0.55546 -3.203011)
(xy -0.714416 -3.170345)
(xy -0.882165 -3.135167)
(xy -0.99314 -3.111558)
(xy -1.046791 -3.100099)
(xy -1.103171 -3.088081)
(xy -1.160275 -3.075929)
(xy -1.216093 -3.06407)
(xy -1.268619 -3.052931)
(xy -1.315843 -3.042938)
(xy -1.35576 -3.034517)
(xy -1.36626 -3.032309)
(xy -1.415549 -3.021889)
(xy -1.461789 -3.011959)
(xy -1.505871 -3.002296)
(xy -1.548684 -2.992675)
(xy -1.591118 -2.982872)
(xy -1.634061 -2.972662)
(xy -1.678405 -2.961821)
(xy -1.725038 -2.950126)
(xy -1.77485 -2.937351)
(xy -1.828731 -2.923273)
(xy -1.88757 -2.907668)
(xy -1.952256 -2.890311)
(xy -2.02368 -2.870977)
(xy -2.102732 -2.849443)
(xy -2.1903 -2.825485)
(xy -2.23012 -2.814566)
(xy -2.325538 -2.788627)
(xy -2.411448 -2.765768)
(xy -2.487831 -2.745994)
(xy -2.554666 -2.729311)
(xy -2.611931 -2.715724)
(xy -2.659608 -2.705237)
(xy -2.697674 -2.697855)
(xy -2.72611 -2.693583)
(xy -2.743014 -2.6924)
(xy -2.76176 -2.695548)
(xy -2.775058 -2.70555)
(xy -2.783509 -2.723247)
(xy -2.787717 -2.74948)
(xy -2.788071 -2.755182)
(xy -2.787052 -2.789282)
(xy -2.780112 -2.815207)
(xy -2.76722 -2.833059)
(xy -2.762359 -2.836744)
(xy -2.755329 -2.839389)
(xy -2.739335 -2.84422)
(xy -2.71528 -2.850995)
(xy -2.684067 -2.859476)
(xy -2.6466 -2.869423)
(xy -2.60378 -2.880595)
(xy -2.55651 -2.892753)
(xy -2.505694 -2.905657)
(xy -2.455865 -2.918162)
(xy -2.231733 -2.97358)
(xy -2.010771 -3.027198)
(xy -1.793389 -3.078931)
(xy -1.579996 -3.128694)
(xy -1.371002 -3.176403)
(xy -1.166815 -3.221974)
(xy -0.967846 -3.265321)
(xy -0.774504 -3.306359)
(xy -0.587197 -3.345005)
(xy -0.406337 -3.381174)
(xy -0.232332 -3.41478)
(xy -0.065591 -3.445739)
(xy 0.093476 -3.473968)
(xy 0.244459 -3.49938)
(xy 0.38695 -3.521891)
(xy 0.520538 -3.541417)
(xy 0.62738 -3.555679)
(xy 0.656436 -3.559208)
(xy 0.693471 -3.563455)
(xy 0.737048 -3.568273)
(xy 0.78573 -3.573517)
(xy 0.838077 -3.579041)
(xy 0.892653 -3.584699)
(xy 0.948019 -3.590345)
(xy 1.002738 -3.595832)
(xy 1.055372 -3.601016)
(xy 1.104483 -3.60575)
(xy 1.148633 -3.609888)
(xy 1.186385 -3.613285)
(xy 1.2163 -3.615794)
(xy 1.22936 -3.616775)
(xy 1.329184 -3.621357)
(xy 1.422493 -3.620702)
) (layer "F.SilkS") (width 0.01) (fill solid) (tstamp 10df01b2-7dc2-4a19-8e09-fef8dfdbc053))
(fp_poly (pts
(xy 4.659252 0.718243)
(xy 4.664881 0.73159)
(xy 4.672991 0.751508)
(xy 4.682992 0.776543)
(xy 4.694292 0.805242)
(xy 4.69714 0.812532)
(xy 4.71039 0.846197)
(xy 4.721098 0.87228)
(xy 4.730275 0.892719)
(xy 4.738931 0.909449)
(xy 4.748079 0.924408)