-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathepi.kicad_pcb
12668 lines (12628 loc) · 712 KB
/
epi.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A5")
(title_block
(title "Epi")
(date "2022-10-27")
(rev "1,1")
(company "Rasmus L.")
)
(layers
(0 "F.Cu" mixed)
(31 "B.Cu" mixed)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(grid_origin 109.69 54.65)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers/prod")
)
)
(net 0 "")
(net 1 "+5V")
(net 2 "GND")
(net 3 "Net-(C2-Pad2)")
(net 4 "Net-(C5-Pad2)")
(net 5 "Net-(C6-Pad2)")
(net 6 "Net-(C7-Pad1)")
(net 7 "Net-(C8-Pad2)")
(net 8 "RST")
(net 9 "D1{slash}TX")
(net 10 "D0{slash}RX")
(net 11 "A4")
(net 12 "IO11")
(net 13 "IO12")
(net 14 "Net-(J4-PadA5)")
(net 15 "Net-(J4-PadA6)")
(net 16 "Net-(J4-PadA7)")
(net 17 "unconnected-(J4-PadA8)")
(net 18 "Net-(J4-PadB5)")
(net 19 "unconnected-(J4-PadB8)")
(net 20 "unconnected-(U1-Pad8)")
(net 21 "D+")
(net 22 "D-")
(net 23 "D7")
(net 24 "D15{slash}SCK")
(net 25 "D16{slash}MOSI")
(net 26 "D14{slash}MISO")
(net 27 "D3{slash}SCL")
(net 28 "D2{slash}SDA")
(net 29 "unconnected-(U1-Pad22)")
(net 30 "D4")
(net 31 "D6")
(net 32 "IO8")
(net 33 "IO9")
(net 34 "IO10")
(net 35 "D5")
(net 36 "IO13")
(net 37 "Net-(R7-Pad1)")
(net 38 "A0")
(net 39 "A1")
(net 40 "A2")
(net 41 "A3")
(net 42 "A5")
(net 43 "Net-(F1-Pad1)")
(net 44 "unconnected-(J4-PadS1)")
(net 45 "Net-(D1-Pad2)")
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 04d86342-9889-41cb-b45e-30203279563d)
(at 100.6 61.6 180)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "File: epi.kicad_sch")
(property "Sheetname" "")
(path "/d3f25bad-ae2f-475d-979e-9dd256d35973")
(attr smd)
(fp_text reference "C8" (at 0 -1.16) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 70587292-7119-4809-bbf9-02e973af2b60)
)
(fp_text value "1µf" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd9d22f8-68a2-48b5-9c67-1dc4df2be301)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp b6dfd663-456d-428a-8ba6-a432d7e79cc4)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp 0dc4f4bc-0a69-479e-bfb9-ea4fc05a51f4))
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp cde84d0a-1fae-443c-bd0d-25417390cc4e))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 0ba49dcb-20d8-4d4e-8c89-286be2e7e2b6))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 40dd3e05-1a6b-4860-a0fc-5cfd4f03eb94))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp e91abacf-9393-43e4-9cb1-36680430ee8f))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp f06e9371-11ba-47ed-8856-74b983ecfb98))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 0ec37730-2aae-4f10-be15-3fb8d20e873b))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 1286f366-20a4-48ed-9816-e20fcb0a576c))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp a1abf1d8-004e-4df7-8c07-af35c161bc23))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp ac0bab8d-8826-4cf8-a6b9-b668f934be45))
(pad "1" smd roundrect (at -0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 040fcbb0-823b-4695-8e01-cce2f250d593))
(pad "2" smd roundrect (at 0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(C8-Pad2)") (pintype "passive") (tstamp 9ab8eef1-945b-44fc-aeae-115bca644d7c))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 07e67ce1-8ec1-48ba-96a6-d85cd696a74b)
(at 99.74 63.4 -90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "File: epi.kicad_sch")
(property "Sheetname" "")
(path "/0b82e662-df5c-4eb0-8215-6c183f712db2")
(attr smd)
(fp_text reference "C9" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7024d176-0218-4bd7-bf22-7dc9224be833)
)
(fp_text value "100nf" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f51e83c6-a23a-4129-a948-75ef3de989e4)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 0db3f1d2-40b5-46d2-ae4a-e8f01e1e3803)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp 16b8c39c-510f-4545-9990-01053bb85a8d))
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp b28c9f10-4b6d-42da-8dba-fdc6006629e7))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 44a84a5c-6bac-488d-a969-434ed0fe0de0))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp a1c6a5cf-d19e-42e7-b54e-d0a36b9ac24f))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp c599cb3b-2737-465a-bd17-05ccf40d2cfa))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp f7eb9d68-afc2-4127-87c8-2058dba3f312))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 2c2f7c27-6232-42cd-8e6f-e515946a51a4))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 50fe5967-4f72-48de-8303-908328f59c76))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 85ffa018-482b-4662-923c-5e55ea0d6adc))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 8b537037-af20-4c6e-b95f-22355246734b))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 310e8414-31e9-4c7c-8c29-5e13cc8d7e62))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+5V") (pintype "passive") (tstamp e61b41f2-b80e-4fe9-8108-9bc8aa2c28bb))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 0914cd1a-e47c-4796-815a-a2606727cf9c)
(at 105.34 60.0365 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "File: epi.kicad_sch")
(property "Sheetname" "")
(path "/ee341107-f8dd-4705-9401-8f8385a300c5")
(attr smd)
(fp_text reference "RV1" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ffe86ed5-a73f-4266-b1b4-dea1632bf841)
)
(fp_text value "ESD protection varistor" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aef47223-c129-4176-aa52-902ee0d5069d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp f2f782b9-a2b8-49f6-86be-4f2dfc12798a)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 05f5c5ef-5195-4032-a05d-aac632879169))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 1f6e0e17-c271-4080-8f63-3d9e737bf886))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 149ab94a-dc09-4633-a9ce-e3f70816dc04))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 58e70ba8-e301-4f9b-9511-098a7f9f3a38))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 717d1d47-ee00-4db1-a99a-a90f7fbfe6d7))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp c441b35e-79ea-4213-abd7-845d1be5447f))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 2daedf91-d29c-41be-8599-b3888116c3b9))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 51ba73b5-f25d-4029-9c8c-10c3ee84f205))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 60296d53-d295-4372-847a-da28302c17aa))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 940eee5b-6a67-4884-bd3a-395e30d64d63))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "Net-(J4-PadA7)") (pintype "passive") (tstamp 14629fe4-9c0c-4097-bca3-11849a26651d))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 77b23b0b-9ad6-46a3-9dc9-36e32d55dbc7))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Crystal:Crystal_SMD_2016-4Pin_2.0x1.6mm" (layer "F.Cu")
(tedit 5A0FD1B2) (tstamp 11bbdcd9-8a47-4e55-8750-7b25b3091ed9)
(at 104.33 71.92)
(descr "SMD Crystal SERIES SMD2016/4 http://www.q-crystal.com/upload/5/2015552223166229.pdf, 2.0x1.6mm^2 package")
(tags "SMD SMT crystal")
(property "Sheetfile" "File: epi.kicad_sch")
(property "Sheetname" "")
(path "/919b95bb-f28e-45f5-a861-379aa5b6a616")
(attr smd)
(fp_text reference "Y1" (at 0 -2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4ea3f12b-4fdf-4f5c-a474-e4032ccf19a5)
)
(fp_text value "Crystal_GND24_Small" (at 0 2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 09af4750-6f9f-4281-bb7d-8d38fe982b4b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 99e65b01-ff5a-4336-8741-d71da7cbc9a2)
)
(fp_line (start 1.4 -1.3) (end -1.4 -1.3) (layer "F.CrtYd") (width 0.05) (tstamp 33a0877b-8b73-4031-a409-4d5297a4478d))
(fp_line (start -1.4 -1.3) (end -1.4 1.3) (layer "F.CrtYd") (width 0.05) (tstamp 3f352d10-c75b-4719-9f16-485080ba4934))
(fp_line (start -1.4 1.3) (end 1.4 1.3) (layer "F.CrtYd") (width 0.05) (tstamp 83754eab-0611-4f24-abdf-9e8d52abf8a1))
(fp_line (start 1.4 1.3) (end 1.4 -1.3) (layer "F.CrtYd") (width 0.05) (tstamp fbd11dcc-ae24-4f07-b830-229e7107649f))
(fp_line (start 0.9 -0.8) (end 1 -0.7) (layer "F.Fab") (width 0.1) (tstamp 293963ae-f9dc-4f85-a3aa-7ec23a9c9655))
(fp_line (start -1 0.3) (end -0.5 0.8) (layer "F.Fab") (width 0.1) (tstamp 2eaca939-165e-4440-b533-8caa18ea00dc))
(fp_line (start 1 -0.7) (end 1 0.7) (layer "F.Fab") (width 0.1) (tstamp 515ebbcc-130a-46c2-97b4-b4f0d8132d5b))
(fp_line (start -0.9 0.8) (end -1 0.7) (layer "F.Fab") (width 0.1) (tstamp 54dfc10a-6efd-4a5f-a813-f6296aeb2537))
(fp_line (start 1 0.7) (end 0.9 0.8) (layer "F.Fab") (width 0.1) (tstamp 64ae62b2-1e49-4a34-aa45-5a4b640599ee))
(fp_line (start -1 -0.7) (end -0.9 -0.8) (layer "F.Fab") (width 0.1) (tstamp 6a239fb8-a9fe-426e-9910-76fa7637d62a))
(fp_line (start -1 0.7) (end -1 -0.7) (layer "F.Fab") (width 0.1) (tstamp 9d3d1f6b-0858-4c8c-aaaf-9533e0fb6b4f))
(fp_line (start 0.9 0.8) (end -0.9 0.8) (layer "F.Fab") (width 0.1) (tstamp bcb78b06-d68f-427a-a61a-899477ec2dd8))
(fp_line (start -0.9 -0.8) (end 0.9 -0.8) (layer "F.Fab") (width 0.1) (tstamp bdca94ef-2ddf-4994-8383-3349b2b0073e))
(pad "1" smd rect (at -0.7 0.55) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(C6-Pad2)") (pinfunction "1") (pintype "passive") (tstamp 24d1d349-00ef-4737-9658-071afa362e71))
(pad "2" smd rect (at 0.7 0.55) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "2") (pintype "passive") (tstamp 11bba753-6e68-40ab-a59c-d3937e7fa294))
(pad "3" smd rect (at 0.7 -0.55) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(C5-Pad2)") (pinfunction "3") (pintype "passive") (tstamp 5d51fc81-3ce4-4f82-b3a9-b7113e399a2a))
(pad "4" smd roundrect (at -0.7 -0.55) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0)
(chamfer_ratio 0.3) (chamfer bottom_right)
(net 2 "GND") (pinfunction "4") (pintype "passive") (tstamp f9562bdb-4d93-4a6c-a417-2baafa44f9c8))
(model "${KIPRJMOD}/extra/crystal.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 1b7ff53b-23cf-4e4a-a69e-8ccf7202d69d)
(at 105.14 58.6365 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "File: epi.kicad_sch")
(property "Sheetname" "")
(path "/0838f439-92c2-4ce5-ba9d-37a51f08a736")
(attr smd)
(fp_text reference "R4" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 82773393-dcbc-4e1e-9329-a02b86ff14ab)
)
(fp_text value "5,1kΩ" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 36f1549d-e806-46b4-91ea-cd735a68ee07)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 40529c36-658e-4e41-b5d0-4877ca1ec1cf)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 62a197c3-737f-4cbf-8989-4c35532dfd87))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 9766b5b8-c3f6-448a-8de3-1aaa22e29eb5))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 111514d4-3b65-4f42-929b-cfaa6b732582))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 3c9cee4f-8a66-4359-8cb8-86e9606fbfd1))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 408baa46-3d38-4df9-882d-662b53ce0649))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 6edaea4a-9222-4053-9482-445cabfb6e51))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 1abad24a-c43d-4643-b942-b31b01375936))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 5d599c45-5744-4560-a485-df4b223fe08d))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 83222cde-f9ab-4a17-94ea-2c0cecf4eba0))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp b49f19b7-cc33-4242-bb53-b72fcf6b9e94))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 1c44e52f-d4ae-4788-b1a6-f7cb28e79a47))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "Net-(J4-PadB5)") (pintype "passive") (tstamp 09958cb6-2d51-43e3-8ca1-84203b2265e7))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 21872a53-e6c4-405e-9881-e189d779325a)
(at 107.08 60.5365)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "File: epi.kicad_sch")
(property "Sheetname" "")
(path "/fea89e33-8ea8-4159-b2ab-9301a5e5d74d")
(attr smd)
(fp_text reference "C1" (at 0 -1.16) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3f36aa0c-d88d-4f09-99a2-f85cf24af883)
)
(fp_text value "100nf" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e8ee5a78-519e-4a42-aae3-69076a8516dd)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 2453d8c0-ae80-473b-ab25-2bb785cfe5cb)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp dae6db26-ae03-43b8-bc30-30bb1d910786))
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp ec55dbf4-b77a-4da5-9af0-624ebbc4a017))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 069de7fd-dd65-454a-8125-4cd095c63945))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 69cbafa0-ab82-41e1-946b-8c94d1055518))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 97ca6768-da5a-4e56-a679-42b30df0e147))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp be4e680b-26ac-4082-8a46-a72945469099))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 0500bc50-2353-49e1-a994-147b413ec620))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 797787ce-6e10-4a91-a642-708b17ffdb48))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 91a0638a-37c0-462f-8a34-e4c7784cd222))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp ab55d3d4-210d-4fe8-9c0d-8f562324a57b))
(pad "1" smd roundrect (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+5V") (pintype "passive") (tstamp e3eea04c-a469-4f3f-ab54-23c3fae61e54))
(pad "2" smd roundrect (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp b40ec892-4a1e-4cdd-8fec-3616c80eb3db))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DFN_QFN:QFN-44-1EP_7x7mm_P0.5mm_EP5.2x5.2mm" (layer "F.Cu")
(tedit 5DC5F6A5) (tstamp 2840f6ff-f235-428a-ab20-9732e8c961e9)
(at 104.34 66.1865 -90)
(descr "QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/2512S.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py")
(tags "QFN NoLead")
(property "Sheetfile" "File: epi.kicad_sch")
(property "Sheetname" "")
(path "/e5a34e74-740d-4f11-ae22-b442e9a04463")
(attr smd)
(fp_text reference "U1" (at 0 -4.82 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 727c08de-392a-4ca6-af34-5678359cf6ce)
)
(fp_text value "ATmega32U4-M" (at 0 4.82 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 243887af-7dd8-45eb-afe2-a2f2d06f228f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7de30612-f20d-4c80-ab7d-55dbae7d7808)
)
(fp_line (start -2.885 3.61) (end -3.61 3.61) (layer "F.SilkS") (width 0.12) (tstamp 257eeb6e-1196-4890-8394-cc5198071fda))
(fp_line (start 2.885 -3.61) (end 3.61 -3.61) (layer "F.SilkS") (width 0.12) (tstamp 30b775f9-543c-4232-8e28-02afa99be90b))
(fp_line (start 3.61 3.61) (end 3.61 2.885) (layer "F.SilkS") (width 0.12) (tstamp 7c931959-dd46-405b-b072-4d24ed7f8a1e))
(fp_line (start -3.61 3.61) (end -3.61 2.885) (layer "F.SilkS") (width 0.12) (tstamp 7f997322-66e8-453b-99bb-9d04a05631eb))
(fp_line (start 3.61 -3.61) (end 3.61 -2.885) (layer "F.SilkS") (width 0.12) (tstamp a1d2db30-39ac-47f7-b194-2d82dcbeafe1))
(fp_line (start 2.885 3.61) (end 3.61 3.61) (layer "F.SilkS") (width 0.12) (tstamp d2ff9dc3-e0e2-47e9-9e76-ad1fb5284ee8))
(fp_circle (center -3.4 -3.4) (end -3 -3.4) (layer "F.SilkS") (width 0.12) (fill solid) (tstamp 7fbf099a-721e-442a-ab60-b809d946cf49))
(fp_line (start 4.12 4.12) (end 4.12 -4.12) (layer "F.CrtYd") (width 0.05) (tstamp 23db0705-e90e-49d7-a444-30359bcb53cc))
(fp_line (start 4.12 -4.12) (end -4.12 -4.12) (layer "F.CrtYd") (width 0.05) (tstamp 54748e03-8661-40c7-a969-1f0ff8395d2c))
(fp_line (start -4.12 -4.12) (end -4.12 4.12) (layer "F.CrtYd") (width 0.05) (tstamp 73d111c2-0363-4b16-8499-b08bffd5dfb4))
(fp_line (start -4.12 4.12) (end 4.12 4.12) (layer "F.CrtYd") (width 0.05) (tstamp 80a7c26a-bae5-495c-af76-68be44c8a07b))
(fp_line (start 3.5 3.5) (end -3.5 3.5) (layer "F.Fab") (width 0.1) (tstamp 140364d0-9f0c-43a1-8b9a-ba7dcf1a04cf))
(fp_line (start -3.5 3.5) (end -3.5 -2.5) (layer "F.Fab") (width 0.1) (tstamp 247c19c9-c61d-436f-a2f3-e7149ec805cb))
(fp_line (start -3.5 -2.5) (end -2.5 -3.5) (layer "F.Fab") (width 0.1) (tstamp 2c4028c3-a9bf-4f27-a8d5-a9c503b477b2))
(fp_line (start 3.5 -3.5) (end 3.5 3.5) (layer "F.Fab") (width 0.1) (tstamp 60ddb634-8df5-40dc-98d6-0e05fa736af8))
(fp_line (start -2.5 -3.5) (end 3.5 -3.5) (layer "F.Fab") (width 0.1) (tstamp 8a8e681a-87f2-49d8-b58b-31d2ab7248e1))
(pad "1" smd roundrect (at -3.3375 -2.5 270) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "D7") (pinfunction "PE6") (pintype "bidirectional") (tstamp d5839066-c3e9-4c23-a992-57b036b3f4d3))
(pad "2" smd roundrect (at -3.3375 -2 270) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+5V") (pinfunction "UVCC") (pintype "power_in") (tstamp 1dd6307a-5693-41dc-bc06-9092141456a0))
(pad "3" smd roundrect (at -3.3375 -1.5 270) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "D-") (pinfunction "D-") (pintype "bidirectional") (tstamp 8c4170a9-2b28-468e-81d4-3d64ea8592c2))
(pad "4" smd roundrect (at -3.3375 -1 270) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "D+") (pinfunction "D+") (pintype "bidirectional") (tstamp f926b000-1444-4375-a4f9-a45ad507d37a))
(pad "5" smd roundrect (at -3.3375 -0.5 270) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "UGND") (pintype "passive") (tstamp f0817509-cff4-4e5e-ab46-d9cf2552bde9))
(pad "6" smd roundrect (at -3.3375 0 270) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(C8-Pad2)") (pinfunction "UCAP") (pintype "passive") (tstamp 350b9f4e-da41-4612-8563-8b79848950bc))
(pad "7" smd roundrect (at -3.3375 0.5 270) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+5V") (pinfunction "VBUS") (pintype "input") (tstamp 9e6095ef-ede4-460b-b0e0-6d02013e2eec))
(pad "8" smd roundrect (at -3.3375 1 270) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "unconnected-(U1-Pad8)") (pinfunction "PB0") (pintype "bidirectional+no_connect") (tstamp 882b06ec-bed4-4e98-847a-48e4e14cdd64))
(pad "9" smd roundrect (at -3.3375 1.5 270) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "D15{slash}SCK") (pinfunction "PB1") (pintype "bidirectional") (tstamp fc3561a0-9c63-4060-88bb-758a40b913f7))
(pad "10" smd roundrect (at -3.3375 2 270) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "D16{slash}MOSI") (pinfunction "PB2") (pintype "bidirectional") (tstamp dcace0cc-605d-4702-8524-4e92f080d2fa))
(pad "11" smd roundrect (at -3.3375 2.5 270) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "D14{slash}MISO") (pinfunction "PB3") (pintype "bidirectional") (tstamp 2c0d7d0b-19fa-4752-93e1-4e974220e0ce))
(pad "12" smd roundrect (at -2.5 3.3375 270) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "IO11") (pinfunction "PB7") (pintype "bidirectional") (tstamp 56445abe-05b9-42cf-88eb-58fb748cf0c9))
(pad "13" smd roundrect (at -2 3.3375 270) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "RST") (pinfunction "~{RESET}") (pintype "input") (tstamp d97623d5-15df-48d6-b445-5b8f966acc46))
(pad "14" smd roundrect (at -1.5 3.3375 270) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+5V") (pinfunction "VCC") (pintype "power_in") (tstamp d49ab0de-679b-4b34-8f04-12e5a9fc2ac5))
(pad "15" smd roundrect (at -1 3.3375 270) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 7d5544c7-744e-415c-b58c-6ef7386549cb))
(pad "16" smd roundrect (at -0.5 3.3375 270) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(C6-Pad2)") (pinfunction "XTAL2") (pintype "output") (tstamp 096821c2-ec1b-47fe-a9fe-4c4a54ba44df))
(pad "17" smd roundrect (at 0 3.3375 270) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(C5-Pad2)") (pinfunction "XTAL1") (pintype "input") (tstamp e3fec51e-59e3-4c76-b235-939240e5feb2))
(pad "18" smd roundrect (at 0.5 3.3375 270) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "D3{slash}SCL") (pinfunction "PD0") (pintype "bidirectional") (tstamp 6ac104e7-7f6b-4c8d-b279-30a3b202a90d))
(pad "19" smd roundrect (at 1 3.3375 270) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "D2{slash}SDA") (pinfunction "PD1") (pintype "bidirectional") (tstamp 80f8bb8e-8201-416b-ab3b-449d101faef1))
(pad "20" smd roundrect (at 1.5 3.3375 270) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "D0{slash}RX") (pinfunction "PD2") (pintype "bidirectional") (tstamp 04f358ea-0750-4289-8a7d-3ebd52040f8f))
(pad "21" smd roundrect (at 2 3.3375 270) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "D1{slash}TX") (pinfunction "PD3") (pintype "bidirectional") (tstamp a0dc356d-8ca4-473d-a4a0-218456fd484d))
(pad "22" smd roundrect (at 2.5 3.3375 270) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "unconnected-(U1-Pad22)") (pinfunction "PD5") (pintype "bidirectional") (tstamp 0bc6ea37-5357-4f88-bb2b-d693b84432c9))
(pad "23" smd roundrect (at 3.3375 2.5 270) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 67c06188-2307-43e8-b696-8ea1f696c063))
(pad "24" smd roundrect (at 3.3375 2 270) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(C2-Pad2)") (pinfunction "AVCC") (pintype "power_in") (tstamp 3d735dbb-90f2-412e-9ba4-3cd91273fb04))
(pad "25" smd roundrect (at 3.3375 1.5 270) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "D4") (pinfunction "PD4") (pintype "bidirectional") (tstamp fcf84533-9b38-40a5-b396-6ee8590e4808))
(pad "26" smd roundrect (at 3.3375 1 270) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "IO12") (pinfunction "PD6") (pintype "bidirectional") (tstamp 97f52192-ff37-4d37-bf9a-86ac23c15a9c))
(pad "27" smd roundrect (at 3.3375 0.5 270) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "D6") (pinfunction "PD7") (pintype "bidirectional") (tstamp 7ef48387-4480-4dc0-a4c8-afdc1232c7b7))
(pad "28" smd roundrect (at 3.3375 0 270) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "IO8") (pinfunction "PB4") (pintype "bidirectional") (tstamp d3c183c0-a694-4d17-ad0b-0d5d43326337))
(pad "29" smd roundrect (at 3.3375 -0.5 270) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "IO9") (pinfunction "PB5") (pintype "bidirectional") (tstamp f7c4a944-f120-40cf-804b-264901f06ebf))
(pad "30" smd roundrect (at 3.3375 -1 270) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "IO10") (pinfunction "PB6") (pintype "bidirectional") (tstamp 451f0b6a-92bf-4a1f-baff-cdd6e8f45a11))
(pad "31" smd roundrect (at 3.3375 -1.5 270) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "D5") (pinfunction "PC6") (pintype "bidirectional") (tstamp b780b923-995d-4429-aa09-6d61de34f2d6))
(pad "32" smd roundrect (at 3.3375 -2 270) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "IO13") (pinfunction "PC7") (pintype "bidirectional") (tstamp 3e451d2a-5690-4c67-9fa4-898316740e44))
(pad "33" smd roundrect (at 3.3375 -2.5 270) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "Net-(R7-Pad1)") (pinfunction "~{HWB}/PE2") (pintype "bidirectional") (tstamp 7329abd7-dd54-4888-b9d9-c2aa96edf693))
(pad "34" smd roundrect (at 2.5 -3.3375 270) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+5V") (pinfunction "VCC") (pintype "passive") (tstamp 102c3de7-6bc1-4695-a8ca-c4e31d963e1a))
(pad "35" smd roundrect (at 2 -3.3375 270) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 361ab352-559a-4c56-9e02-b13829fabd84))
(pad "36" smd roundrect (at 1.5 -3.3375 270) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "A0") (pinfunction "PF7") (pintype "bidirectional") (tstamp 93865c52-32c9-4140-b973-0806701fca2f))
(pad "37" smd roundrect (at 1 -3.3375 270) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 39 "A1") (pinfunction "PF6") (pintype "bidirectional") (tstamp 2625f1c4-9ec1-48a9-bcf8-e7126c433a53))
(pad "38" smd roundrect (at 0.5 -3.3375 270) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "A2") (pinfunction "PF5") (pintype "bidirectional") (tstamp 0c095d51-82f1-4d1e-9c53-cebd2bc5e40e))
(pad "39" smd roundrect (at 0 -3.3375 270) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 41 "A3") (pinfunction "PF4") (pintype "bidirectional") (tstamp 9a9e5bc6-0163-4d0e-9070-c2239f4073d6))
(pad "40" smd roundrect (at -0.5 -3.3375 270) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "A4") (pinfunction "PF1") (pintype "bidirectional") (tstamp 7817d6e2-ed15-4ff3-9d78-a153f3b7f752))
(pad "41" smd roundrect (at -1 -3.3375 270) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "A5") (pinfunction "PF0") (pintype "bidirectional") (tstamp 8fa3a3de-1047-4422-ba51-b001264fea53))
(pad "42" smd roundrect (at -1.5 -3.3375 270) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(C7-Pad1)") (pinfunction "AREF") (pintype "passive") (tstamp fd4f90a6-e973-402a-a9be-aeb352d4f5fb))
(pad "43" smd roundrect (at -2 -3.3375 270) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 69a5afa7-6e0c-4712-88e7-10e1754b6534))
(pad "44" smd roundrect (at -2.5 -3.3375 270) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(C2-Pad2)") (pinfunction "AVCC") (pintype "passive") (tstamp 0dd68f79-ae66-4864-9174-a481765284b2))
(model "${KICAD6_3DMODEL_DIR}/Package_DFN_QFN.3dshapes/QFN-44-1EP_7x7mm_P0.5mm_EP5.2x5.2mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 2a518c62-210b-4e52-83f0-0c8503bb0492)
(at 107.29 72.25 90)
(descr "LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "File: epi.kicad_sch")
(property "Sheetname" "")
(path "/a5c417ed-b498-4a7f-a657-0a9106b9a2d7")
(attr smd)
(fp_text reference "D1" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7ae980a-6429-4baa-aa76-ac44e655aac2)
)
(fp_text value "LED" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a7117dc3-1e8c-4aec-b9fd-f433d01cf220)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp d27fd891-e54d-4857-99d5-aac5c297cb85)
)
(fp_line (start -0.75 0.5) (end -0.25 0.5) (layer "F.SilkS") (width 0.12) (tstamp a0ec7c03-e178-4d62-a911-9869a5aa3aad))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 0c43874f-fc8a-4fb7-b9f6-7ec564ed9d77))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 41d861cd-6ae8-431b-9808-bb88ed24a1cb))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 4d88d9ad-1766-410e-a793-75aa9a5e8813))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 72857d67-8f47-452a-b3bc-11066fb38eff))
(fp_line (start -0.4 0.25) (end -0.4 -0.25) (layer "F.Fab") (width 0.1) (tstamp 1013a546-9f5d-4848-836a-7ad3a8199e38))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 20835cf1-aacb-4673-9678-3541e3ec4c2f))
(fp_line (start -0.3 0.25) (end -0.3 -0.25) (layer "F.Fab") (width 0.1) (tstamp 4005fac3-f005-4a2d-accd-b50e23d51052))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 8c2a7906-ec2f-406a-8058-5ab17aeb3014))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp b9e05e61-0989-42b4-9bdc-59a7c56dde29))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp f5263e76-91ba-4f2c-a24c-21e4d637aa90))
(pad "1" smd roundrect (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp 347d39cc-0619-428f-8219-e1b905bd15cd))
(pad "2" smd roundrect (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 45 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 1077a693-4144-47ab-9894-15b4b6f6b13e))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 3196d950-419e-4be8-9e7c-7a139831cf90)
(at 104.39 60.0365 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "File: epi.kicad_sch")
(property "Sheetname" "")
(path "/021bb59e-bf26-4f0d-96f7-464e2bb32481")
(attr smd)
(fp_text reference "R2" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d8af378-f01c-433c-bf26-061ad0f7a766)
)
(fp_text value "22Ω" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 47371345-55b6-443c-97f2-17d8139b7379)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 2480c402-f3d4-442d-9a51-dea89aceb940)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 60a0aa81-dc31-451a-bcec-a348ac9fb762))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp b3e9fa6a-3e81-49b8-ada1-c26147410607))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 599b8a8f-0c31-452e-9f4a-49fda8a644c0))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 9fe96069-2b73-48e3-be85-84d62e3c3a14))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp b81c9337-59fe-4348-a98d-e349bde13cff))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp bb450cde-6d37-42e5-bf22-98d95637a8f2))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 330f0486-5b68-40ff-b790-e546b8d24b4d))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 639c873d-0813-4bb3-9ecd-5a75fe9679f2))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 926d0f2b-5576-4057-8bfb-746f26265be4))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 9f7b79ce-2de8-4fb7-978c-e4bc87972508))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "Net-(J4-PadA7)") (pintype "passive") (tstamp 2ab28947-a6eb-4864-9b92-a97c1ac6cdc5))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "D-") (pintype "passive") (tstamp dba78dac-5ea3-4950-bb65-e5af70f46788))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 33ec4987-5f0d-4a20-91fc-11af95c4c852)
(at 108.29 61.55 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "File: epi.kicad_sch")
(property "Sheetname" "")
(path "/5e35bf4c-7ada-442b-8ca6-c06dd0404eb2")
(attr smd)
(fp_text reference "R6" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d82614bc-7271-41bd-a60b-e493555a7cbe)
)
(fp_text value "10kΩ" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b6a5339d-6e94-4dc4-95f9-67f2831de9e6)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 450ed7a9-8b66-491c-9770-f8e1271b88b6)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 152003e1-a957-4dba-bb8a-d76669e7d460))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 5d12cdef-805d-4de5-8c79-c159125b34c4))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 5f0052f1-ebf4-4360-b324-fc6f59fc464f))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 8720e8ee-d894-470f-8912-2ebb4306d596))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 980e9f0c-c0bc-4dd6-855a-7e0529943df9))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 9deaf651-2175-43b1-b6ba-a1d1131467a0))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 1da49035-d031-4c36-99d4-a2c4e5542767))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 321a3332-702c-483e-a671-36fb5ed43aa4))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 5eaea08e-62c1-4122-9c7c-470dd187af2d))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 8b6e386c-48b1-4435-b8dd-b5e81a26efd9))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+5V") (pintype "passive") (tstamp 33e9ebf4-cb0a-428e-bd38-e819c171d95e))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "RST") (pintype "passive") (tstamp 8718f6a4-30cc-4e97-88d2-7869586c8a35))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 3b876c83-4f1e-47a6-953d-32ebda15ec32)
(at 108.04 70.75)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "File: epi.kicad_sch")
(property "Sheetname" "")
(path "/d23a8c2b-6e6e-4df0-a7d5-dd4ca3935473")
(attr smd)
(fp_text reference "R7" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a719b4d8-1a6f-473f-b6bc-174152f38b9e)
)
(fp_text value "10kΩ" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6327d065-719d-46e5-b5c0-69ef2ca980d6)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 06a44fbb-2815-4631-9fc0-b517d4661a86)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 1d3df471-a0c1-4874-8be0-9e04108dd3ca))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 245bff80-1cb3-40b3-ab98-13a45b2a6db9))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 12c56536-9c07-4742-adf8-9fffe6048938))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 27ced5c2-009a-4c8d-aaca-29dc310e292f))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 2d9d2a7e-0113-4211-8a5a-125bc08d8736))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 901a9bb4-2a70-4ec9-bbc3-f5f16b082252))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 0b0e7828-df67-4321-8e93-6926622883bd))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 51f5589d-722f-4758-bdf1-1ca81f5cdba6))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 90a93f22-552e-4d55-94bd-2097802ee490))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp b7f92f9e-8a1a-49aa-aa1f-f2c93197d445))
(pad "1" smd roundrect (at -0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "Net-(R7-Pad1)") (pintype "passive") (tstamp edd4b219-192f-40a7-86e5-49ffb6f0130b))
(pad "2" smd roundrect (at 0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 16834fe3-8b71-4f99-a876-1756ce8b9aec))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 44bb206b-d46c-47bc-8d9a-ebbbe4460315)
(at 102.115 59.0865 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "File: epi.kicad_sch")
(property "Sheetname" "")
(path "/9b22129a-0dd2-4970-a0f6-8e9334734a40")
(attr smd)
(fp_text reference "R1" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 74481d6f-5998-43e3-aa12-e2a51fdd0252)
)
(fp_text value "22Ω" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8f039046-6d5b-4349-b9eb-882c464f568f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp f618fdb5-a5b1-4a9a-96df-ce7ed3a38b28)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 1bc2709a-8dd1-4e19-b778-673cef9bfbca))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp df353d59-105e-4abc-ae23-1a3e85422baf))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 0d174127-f077-45dd-b12c-4290e7bb2ce7))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 3266c0a2-232f-424e-958f-5835d0cc4c2a))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 87af9291-8f21-4970-a3e9-8e643018e19e))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp a94b80b5-3b42-4b6b-a82f-95d5823bba31))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 09101705-2a66-4540-b131-0be68b55529c))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 34301e74-e84b-4960-a449-bb4019bfb1f7))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 4d8dc3a5-83d8-4eb4-9daa-7ae2de41f740))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp ef325ee5-cd02-4445-a278-f35c460c84b7))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "Net-(J4-PadA6)") (pintype "passive") (tstamp 95c77e4f-a53b-472b-a328-5c5078f6e75c))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "D+") (pintype "passive") (tstamp d608fbcf-8586-4cd9-8723-44e79fad2ce2))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "" (layer "F.Cu")
(tedit 0) (tstamp 5cbad950-9b42-43f3-8c6c-48164bc2bc2b)
(at 104.34 66.1865)
(fp_text reference "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 00357858-9982-4a60-862f-9d9f304dc116)
)
(fp_text value "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 64063c6f-ed93-46ea-a1df-55d257df028f)
)
(pad "1" smd roundrect (at 0 0 90) (size 1.75 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 646ac433-9cf0-4254-8a4c-de5cae751636))
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 6357e70b-acdd-4ba2-856d-313dc47d8f82)
(at 101.165 59.0865 90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "File: epi.kicad_sch")
(property "Sheetname" "")
(path "/7e3dc4a2-8186-4e1d-ae58-885c7591b8da")
(attr smd)
(fp_text reference "RV2" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 46d9a86d-9d7f-4c52-91c0-3a603a9d54b0)
)
(fp_text value "ESD protection varistor" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c870729f-5e06-41b8-8840-5ea79e52eb36)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp aefc7bdc-ca64-43fe-a5c1-2c10e345e734)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 6eb5b1de-3c3c-497d-8528-78fa3cdb9da2))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp a526fd82-4f65-4de7-8410-44f32e0366a2))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 57b8f5f8-c32c-46b9-b832-198db2a842bc))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 8604c48a-63cd-42ce-b352-056e6dcb9b0a))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 89210c0d-bd9b-419b-9a5a-2c81032ef643))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp ed893fe8-4aa9-4a1d-8c8d-a6eae1985001))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 47eaf322-419e-49c2-b3fb-d8db8fd95cec))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp ac42e89a-8926-46c7-8456-f16bc80fee50))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp dcd4d341-0846-4c3c-9552-b3e2656a0036))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp ef411dba-2312-468c-8085-617d34a4f39f))
(pad "1" smd roundrect (at -0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "Net-(J4-PadA6)") (pintype "passive") (tstamp a50687ab-3410-4ab9-9044-6ae6057a4723))
(pad "2" smd roundrect (at 0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp d1cd96d2-50cf-4059-b9f9-1e99fa6c854f))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 727e8253-4791-4535-b182-170946853c9f)
(at 107.09 59.5865 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "File: epi.kicad_sch")
(property "Sheetname" "")
(path "/0ee4123e-8b9e-4e7c-be5b-ff1fe5c80170")
(attr smd)
(fp_text reference "R3" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cdc7753d-3542-4d86-8840-a8eeaf525060)
)
(fp_text value "10kΩ" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5a588d9a-0736-4148-9c5b-a4017d25a972)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 1915c7cb-14e3-45d0-8795-0c975e10988e)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 38b3d75b-433a-482e-8094-6635adf20c37))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp adb2a599-91aa-4f79-876a-d9984bf726dd))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 37338703-bdc5-4147-ab70-7b8e9a34d0fa))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 4acaa256-6479-4731-9b56-7052cc0ac597))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp bbe27888-8414-41b1-bcb2-9088e8d762c3))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp c1705281-5d3d-44bf-8645-afc372cae3fb))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 791e5a73-99c4-4552-8a0a-b6d294ea70b6))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 8b43f232-0700-4393-9c17-d8cc090ac63b))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 9a0262b9-9c60-427c-86a2-37130ed9f25c))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp d6667d00-d346-4040-bdfe-f38e7c8b7502))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp d415f615-872d-4ff0-b97c-3d73f0781387))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+5V") (pintype "passive") (tstamp be477a53-007e-42ed-a5bb-d8439b00a104))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 832e10d4-cf31-4c48-b0a4-3367bb5a7fde)
(at 102.415 72.1 -90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "File: epi.kicad_sch")
(property "Sheetname" "")
(path "/81bd360b-1fc3-40d8-97b0-e03a3667ebc7")
(attr smd)
(fp_text reference "C6" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp feedf9fa-95c5-40f9-9321-7e1a79ef50d9)
)
(fp_text value "22pf" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd90862f-4426-46bd-b142-a1028389e98f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp f7623277-c91d-4c86-b4c7-3954d753bd6c)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp 128d6b2b-97c5-4c48-b1b2-083fac78fac0))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp 28fa5fe2-af43-4535-9f83-364a9aa6d975))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 20fe29d3-037a-44a7-bac5-82ff6a753a31))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 298311eb-a4c0-4851-82c2-16ade868fae0))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 77c98caf-0f67-4e02-b119-1f0d59415b60))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp b9c57ad4-6b64-42b7-9031-244da5656f24))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 2ff7367b-ad57-41cd-a364-29a8fed111e2))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 8624c8d3-42cd-4ac2-989a-1b7f10e55813))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp d1526f2b-f9f5-4c99-9bd2-04821010636a))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp d9a17a03-acb1-47b2-b3cd-a14cb80d8de3))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp b4ae94d4-2f17-4395-ad69-29d93c205172))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(C6-Pad2)") (pintype "passive") (tstamp fe5ee8f7-cf78-4b4e-96fc-46d8d436dc7a))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_1.27mm:PinHeader_1x12_P1.27mm_Vertical" locked (layer "F.Cu")
(tedit 59FED6E3) (tstamp 8a25b5d1-6b6b-4087-a032-d0652f88a53c)
(at 97.99 58.92)
(descr "Through hole straight pin header, 1x12, 1.27mm pitch, single row")
(tags "Through hole pin header THT 1x12 1.27mm single row")
(property "Sheetfile" "File: epi.kicad_sch")
(property "Sheetname" "")
(path "/fd8391ba-6477-49f1-90ad-f0984adfcfe9")
(attr through_hole)
(fp_text reference "J1" (at 0 -1.695) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 79bbb199-3689-4d12-b594-a59f42be1fef)
)
(fp_text value "Connector 1x12" (at 0 15.665) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2eb258fc-4f7c-403f-8a83-05fd4d92ed69)
)
(fp_text user "${REFERENCE}" (at 0 6.985 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 57311a6b-181c-4937-888e-e959961cf3cd)
)
(fp_line (start 1.55 -1.15) (end -1.55 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 3f6444bb-0b80-4a55-b53c-1d3d0ab485c5))
(fp_line (start -1.55 15.15) (end 1.55 15.15) (layer "F.CrtYd") (width 0.05) (tstamp 66418a15-87c2-4530-aa57-fc04f08bc8c6))
(fp_line (start -1.55 -1.15) (end -1.55 15.15) (layer "F.CrtYd") (width 0.05) (tstamp d1a4eb97-384a-4e3e-9187-65edfa3e6d29))
(fp_line (start 1.55 15.15) (end 1.55 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp efc2a0d1-cdd5-489d-9571-951268773e78))
(fp_line (start -1.05 -0.11) (end -0.525 -0.635) (layer "F.Fab") (width 0.1) (tstamp 46c1652d-fb3a-43c6-a4c9-4597255bdf47))
(fp_line (start 1.05 -0.635) (end 1.05 14.605) (layer "F.Fab") (width 0.1) (tstamp 90a88f9d-cade-4d91-8c9a-88e292b828c9))
(fp_line (start -0.525 -0.635) (end 1.05 -0.635) (layer "F.Fab") (width 0.1) (tstamp 98cb7757-9dca-4534-8dd3-ae5c6d756817))
(fp_line (start -1.05 14.605) (end -1.05 -0.11) (layer "F.Fab") (width 0.1) (tstamp 999e26b6-0492-4bc5-a45a-b9db7b1cb63a))
(fp_line (start 1.05 14.605) (end -1.05 14.605) (layer "F.Fab") (width 0.1) (tstamp d7aa3c24-7b29-4662-b146-03b552ac6fff))
(pad "1" thru_hole roundrect locked (at 0 0) (size 1.5 1) (drill 0.65) (property pad_prop_castellated) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 9 "D1{slash}TX") (pinfunction "Pin_1") (pintype "passive") (tstamp 42c9e556-17d0-4fb1-a235-964db3036f4d))
(pad "2" thru_hole roundrect locked (at 0 1.27) (size 1.5 1) (drill 0.65) (property pad_prop_castellated) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 10 "D0{slash}RX") (pinfunction "Pin_2") (pintype "passive") (tstamp e7b5ef38-f0a9-423c-8c1c-94a3a991e8e6))
(pad "3" thru_hole roundrect locked (at 0 2.54) (size 1.5 1) (drill 0.65) (property pad_prop_castellated) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp fab6efed-a67d-4786-9afa-3542f2397208))
(pad "4" thru_hole roundrect locked (at 0 3.81) (size 1.5 1) (drill 0.65) (property pad_prop_castellated) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp a0b566e1-8d9e-4ab9-a8f9-5659d9eae2c3))
(pad "5" thru_hole roundrect locked (at 0 5.08) (size 1.5 1) (drill 0.65) (property pad_prop_castellated) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 28 "D2{slash}SDA") (pinfunction "Pin_5") (pintype "passive") (tstamp 1fbc317c-58f9-4b8b-919d-560009a1b3f8))
(pad "6" thru_hole roundrect locked (at 0 6.35) (size 1.5 1) (drill 0.65) (property pad_prop_castellated) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 27 "D3{slash}SCL") (pinfunction "Pin_6") (pintype "passive") (tstamp 4c0b23f0-1f34-4904-a320-b53138119b18))
(pad "7" thru_hole roundrect locked (at 0 7.62) (size 1.5 1) (drill 0.65) (property pad_prop_castellated) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 30 "D4") (pinfunction "Pin_7") (pintype "passive") (tstamp 9470b463-a814-4080-9b97-b47ec430e554))
(pad "8" thru_hole roundrect locked (at 0 8.89) (size 1.5 1) (drill 0.65) (property pad_prop_castellated) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 35 "D5") (pinfunction "Pin_8") (pintype "passive") (tstamp d36bd463-6383-4926-81ad-2cd6f32194db))
(pad "9" thru_hole roundrect locked (at 0 10.16) (size 1.5 1) (drill 0.65) (property pad_prop_castellated) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 31 "D6") (pinfunction "Pin_9") (pintype "passive") (tstamp ea88a8d7-b180-4355-b160-8a9ff7435181))
(pad "10" thru_hole roundrect locked (at 0 11.43) (size 1.5 1) (drill 0.65) (property pad_prop_castellated) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 23 "D7") (pinfunction "Pin_10") (pintype "passive") (tstamp ebed61e7-e2a9-42df-ace3-99c2728f96c4))
(pad "11" thru_hole roundrect locked (at 0 12.7) (size 1.5 1) (drill 0.65) (property pad_prop_castellated) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 32 "IO8") (pinfunction "Pin_11") (pintype "passive") (tstamp 614439bf-b41e-425e-875d-38d1fa4896b3))
(pad "12" thru_hole roundrect locked (at 0 13.97) (size 1.5 1) (drill 0.65) (property pad_prop_castellated) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 33 "IO9") (pinfunction "Pin_12") (pintype "passive") (tstamp c96a28a7-fd7b-4169-9417-b9f90412357c))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.27mm.3dshapes/PinHeader_1x12_P1.27mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_1.27mm:PinHeader_1x05_P1.27mm_Vertical" locked (layer "F.Cu")
(tedit 59FED6E3) (tstamp 8cacdfc1-d698-4e8b-ad66-601c8a58757f)
(at 106.88 74.16 -90)
(descr "Through hole straight pin header, 1x05, 1.27mm pitch, single row")
(tags "Through hole pin header THT 1x05 1.27mm single row")
(property "Sheetfile" "File: epi.kicad_sch")
(property "Sheetname" "")
(path "/6eb52cd5-9cb9-4896-a775-aff21dc37af3")
(attr through_hole)
(fp_text reference "J3" (at 0 -1.695 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5fe1e9b4-b6d6-4ee3-a0ce-2aea3cc4f0c4)
)
(fp_text value "Conn_01x05" (at 0 6.775 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9a4b7c5-bcee-4346-a151-946cb3ad2343)
)
(fp_text user "${REFERENCE}" (at 0 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 84be85c4-2ba4-4a63-84e0-89f1c04e20ee)
)
(fp_line (start -1.55 -1.15) (end -1.55 6.25) (layer "F.CrtYd") (width 0.05) (tstamp 660d8878-cb65-41f7-9636-b62e077e6c0b))
(fp_line (start 1.55 -1.15) (end -1.55 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 67650d54-ba14-4771-b2dd-b794cb33d73a))
(fp_line (start 1.55 6.25) (end 1.55 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 9cde88cc-d258-497a-ba20-14eba503d1f9))
(fp_line (start -1.55 6.25) (end 1.55 6.25) (layer "F.CrtYd") (width 0.05) (tstamp d4130368-6a94-4aed-be07-c3b50b460b35))
(fp_line (start 1.05 -0.635) (end 1.05 5.715) (layer "F.Fab") (width 0.1) (tstamp 20b38d81-ed2c-44ab-8a11-39a6b5f3839b))
(fp_line (start 1.05 5.715) (end -1.05 5.715) (layer "F.Fab") (width 0.1) (tstamp 45d4d226-c7ad-4093-ae6d-750f924df71a))
(fp_line (start -0.525 -0.635) (end 1.05 -0.635) (layer "F.Fab") (width 0.1) (tstamp 7275b449-8d25-45e7-8d4f-5c87772aacdc))
(fp_line (start -1.05 5.715) (end -1.05 -0.11) (layer "F.Fab") (width 0.1) (tstamp a7401c8d-c135-494e-b8a0-50eae079f2a1))
(fp_line (start -1.05 -0.11) (end -0.525 -0.635) (layer "F.Fab") (width 0.1) (tstamp bf35b0ce-791c-4af0-8364-474501bbd87a))
(pad "1" thru_hole roundrect locked (at 0 0 270) (size 1.5 1) (drill 0.65) (property pad_prop_castellated) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 12 "IO11") (pinfunction "Pin_1") (pintype "passive") (tstamp a43ff392-005a-4364-9146-8c4ce17093f2))
(pad "2" thru_hole roundrect locked (at 0 1.27 270) (size 1.5 1) (drill 0.65) (property pad_prop_castellated) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 13 "IO12") (pinfunction "Pin_2") (pintype "passive") (tstamp c3bd08a9-e129-43bf-8896-99bfce1a961f))
(pad "3" thru_hole roundrect locked (at 0 2.54 270) (size 1.5 1) (drill 0.65) (property pad_prop_castellated) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 36 "IO13") (pinfunction "Pin_3") (pintype "passive") (tstamp f32d801d-a4aa-4a7f-ac89-d88c0c743283))
(pad "4" thru_hole roundrect locked (at 0 3.81 270) (size 1.5 1) (drill 0.65) (property pad_prop_castellated) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 42 "A5") (pinfunction "Pin_4") (pintype "passive") (tstamp 9d533ee6-1bdd-4626-ade6-a46a256b2e1f))
(pad "5" thru_hole roundrect locked (at 0 5.08 270) (size 1.5 1) (drill 0.65) (property pad_prop_castellated) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp f6384eed-e36e-4e29-af60-8f1c919cfc3a))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.27mm.3dshapes/PinHeader_1x05_P1.27mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 98511ca6-5bca-4292-86cd-f5dfa146a39f)
(at 108.49 60.1365 -90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")