-
Notifications
You must be signed in to change notification settings - Fork 6
/
epi.kicad_pcb
12228 lines (12181 loc) · 505 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 20221018) (generator pcbnew)
(general
(thickness 1.68)
)
(paper "A5")
(title_block
(title "Epi")
(date "2023-01-02")
(rev "1,2,0")
(company "Rasmus L.")
)
(layers
(0 "F.Cu" mixed)
(1 "In1.Cu" signal)
(2 "In2.Cu" signal)
(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.04))
(layer "dielectric 1" (type "core") (thickness 0.14) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.04))
(layer "dielectric 2" (type "prepreg") (thickness 1.22) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.04))
(layer "dielectric 3" (type "core") (thickness 0.14) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.04))
(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 107.854422 56.800001)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(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-(U1-XTAL1)")
(net 5 "RST")
(net 6 "D1{slash}TX")
(net 7 "D0{slash}RX")
(net 8 "A4")
(net 9 "Net-(U1-XTAL2)")
(net 10 "Net-(U1-UCAP)")
(net 11 "Net-(D1-K)")
(net 12 "Net-(D2-A)")
(net 13 "D17{slash}SS")
(net 14 "Net-(J4-CC1)")
(net 15 "Net-(J4-D+-PadA6)")
(net 16 "D+")
(net 17 "D-")
(net 18 "D7")
(net 19 "D15{slash}SCK")
(net 20 "D16{slash}MOSI")
(net 21 "D14{slash}MISO")
(net 22 "D3{slash}SCL")
(net 23 "D2{slash}SDA")
(net 24 "Net-(J4-D--PadA7)")
(net 25 "D4")
(net 26 "D6")
(net 27 "D8")
(net 28 "D9")
(net 29 "D5")
(net 30 "D10")
(net 31 "Net-(J4-CC2)")
(net 32 "A0")
(net 33 "A1")
(net 34 "A2")
(net 35 "A3")
(net 36 "A5")
(net 37 "Net-(J4-SHIELD)")
(net 38 "Net-(U1-~{HWB}{slash}PE2)")
(net 39 "unconnected-(U1-PD5-Pad22)")
(net 40 "D11")
(net 41 "D12")
(net 42 "D13")
(net 43 "unconnected-(U1-AREF-Pad42)")
(net 44 "Net-(C7-Pad1)")
(net 45 "Net-(FB1-Pad1)")
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 04d86342-9889-41cb-b45e-30203279563d)
(at 99.65 65.6 -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" "epi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/d3f25bad-ae2f-475d-979e-9dd256d35973")
(attr smd)
(fp_text reference "C8" (at 0 -1.17 -90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2f19e355-6233-4fe2-b98b-f38a6689ce35)
)
(fp_text value "1µF" (at 0 1.17 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 46ae23ac-14e9-494a-8ffe-2ab00d9193ec)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 425bc8ce-1f5f-4a01-8589-db7ca05948d3)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 931164ea-3b17-4310-a113-bd597b339a95))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1c8110f2-20e6-431c-8aa0-104e4c89bf8e))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 32d28b91-dde9-4068-9f83-d75d51a053be))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0aec1fe7-2ea6-4ec0-9099-04d6a67537b2))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 64e140df-b3af-4407-ab4d-0689fb859ee5))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b87a1802-a51f-4b7c-b38a-3f00dc7b1eea))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2ab16cbf-4e4a-4e58-bce1-a2197c87885d))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 472e7b7b-ae21-44e0-8cfe-1243d356bec3))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5347c6d2-c9c9-473b-a252-b3a5a001ba64))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4309db65-17c4-4885-bc54-9f03b3ba79f4))
(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 2 "GND") (pintype "passive") (tstamp 2e3dc967-5d6d-4574-9982-e7f5c1caa6e7))
(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 10 "Net-(U1-UCAP)") (pintype "passive") (tstamp 12857511-cc45-4f9c-9ef5-4a028cff3454))
(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")
(tstamp 07e67ce1-8ec1-48ba-96a6-d85cd696a74b)
(at 99.654422 63.7 -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" "epi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/0b82e662-df5c-4eb0-8215-6c183f712db2")
(attr smd)
(fp_text reference "C9" (at 0 -1.17 -90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4890cefe-800e-483e-9373-3b4a4ebd77bd)
)
(fp_text value "100nF" (at 0 1.17 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 39f964a7-1278-4c5d-aa7a-8c4c923f54f0)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp f277bb78-230d-4c20-bc73-146fcf7b5825)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4c393290-1c88-4fc5-93b3-bcbc7c4d0f75))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 21b40dcb-e508-48b8-84c9-3cc7041ac6b0))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c08ed244-5e00-4f4d-b0c6-4b05254568a2))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 60782b5d-2d47-409f-b0b5-3dbbf7f0624e))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0ccfa372-c625-4735-bf7f-a7fda01cdf5e))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2b3d386a-fd6e-4ecf-bbaf-27d4d0f9a02a))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a993e72f-e74d-4e6c-8fe2-c7a9c69be44d))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9baf800c-2d89-4f4a-ab48-2e08673b1d1d))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 90588b82-17c8-43aa-927a-fec048aab176))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e6428ef2-250f-4352-a016-064c98065c96))
(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 2 "GND") (pintype "passive") (tstamp bf7e47bb-f401-490d-b02d-100457d76b74))
(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 1 "+5V") (pintype "passive") (tstamp 306464e5-40b3-4989-87fe-31ba4dd1fa6f))
(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")
(tstamp 0914cd1a-e47c-4796-815a-a2606727cf9c)
(at 105.68322 59 -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" "epi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Voltage dependent resistor")
(property "ki_keywords" "VDR resistance")
(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") hide
(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") hide
(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)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f6e0e17-c271-4080-8f63-3d9e737bf886))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 05f5c5ef-5195-4032-a05d-aac632879169))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 149ab94a-dc09-4633-a9ce-e3f70816dc04))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c441b35e-79ea-4213-abd7-845d1be5447f))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 717d1d47-ee00-4db1-a99a-a90f7fbfe6d7))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 58e70ba8-e301-4f9b-9511-098a7f9f3a38))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2daedf91-d29c-41be-8599-b3888116c3b9))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 60296d53-d295-4372-847a-da28302c17aa))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 51ba73b5-f25d-4029-9c8c-10c3ee84f205))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (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 24 "Net-(J4-D--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")
(tstamp 11bbdcd9-8a47-4e55-8750-7b25b3091ed9)
(at 104.254422 71.65)
(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" "epi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Four pin crystal, GND on pins 2 and 4, small symbol")
(property "ki_keywords" "quartz ceramic resonator oscillator")
(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" (at 0 2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 09af4750-6f9f-4281-bb7d-8d38fe982b4b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(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)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3f352d10-c75b-4719-9f16-485080ba4934))
(fp_line (start -1.4 1.3) (end 1.4 1.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83754eab-0611-4f24-abdf-9e8d52abf8a1))
(fp_line (start 1.4 -1.3) (end -1.4 -1.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 33a0877b-8b73-4031-a409-4d5297a4478d))
(fp_line (start 1.4 1.3) (end 1.4 -1.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fbd11dcc-ae24-4f07-b830-229e7107649f))
(fp_line (start -1 -0.7) (end -0.9 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a239fb8-a9fe-426e-9910-76fa7637d62a))
(fp_line (start -1 0.3) (end -0.5 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2eaca939-165e-4440-b533-8caa18ea00dc))
(fp_line (start -1 0.7) (end -1 -0.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9d3d1f6b-0858-4c8c-aaaf-9533e0fb6b4f))
(fp_line (start -0.9 -0.8) (end 0.9 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bdca94ef-2ddf-4994-8383-3349b2b0073e))
(fp_line (start -0.9 0.8) (end -1 0.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 54dfc10a-6efd-4a5f-a813-f6296aeb2537))
(fp_line (start 0.9 -0.8) (end 1 -0.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 293963ae-f9dc-4f85-a3aa-7ec23a9c9655))
(fp_line (start 0.9 0.8) (end -0.9 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bcb78b06-d68f-427a-a61a-899477ec2dd8))
(fp_line (start 1 -0.7) (end 1 0.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 515ebbcc-130a-46c2-97b4-b4f0d8132d5b))
(fp_line (start 1 0.7) (end 0.9 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 64ae62b2-1e49-4a34-aa45-5a4b640599ee))
(pad "1" smd rect (at -0.7 0.55) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "Net-(U1-XTAL2)") (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-(U1-XTAL1)") (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 "DIY:NPTH" (layer "F.Cu")
(tstamp 197c4c67-c260-408d-9461-abc20a5de701)
(at 108.404422 56.450001)
(attr through_hole)
(fp_text reference "DRILL2" (at -0.05 -3.2 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 2273c306-ec22-4182-9660-d67033e84f02)
)
(fp_text value "NPTH" (at -0.1 2.2 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dedcb396-ea91-4a37-adcc-c1c7eb34d640)
)
(fp_text user "${REFERENCE}" (at -0.1 3.7 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 78a26106-119a-4aa4-8b17-68b8d9dd14b5)
)
(pad "" np_thru_hole circle (at 0 0) (size 1 1) (drill 1) (layers "F&B.Cu" "*.Mask") (tstamp 1e4bbb8a-37fe-47f5-97fd-65e2510d3416))
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 1aa2c1d1-7fa9-41d5-9942-58811342f2e2)
(at 99.8 59.03 -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" "epi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/fed8445b-9374-4bf7-8d35-93513d5248c4")
(attr smd)
(fp_text reference "C1" (at 0 -1.17 -90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6163645e-33fd-45a3-a281-b056e7dba5d8)
)
(fp_text value "100nF" (at 0 1.17 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 63e82e59-c10e-4a54-8653-3b6bf82cc0c0)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp fcd68717-1c05-449b-86c8-394b0fdbf530)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8ebfb381-2f5f-4b47-84d1-5ff7e0c1ba64))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 665b8f61-8ffc-4252-9215-b36f61111dfd))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d561016-2d9c-41a1-bd5a-66933a39eda7))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2f459626-b5a1-41fc-9d18-d98e72ba6878))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 529bfae6-0a5d-4edd-8f45-dfe8e9a583fb))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e4afa7be-4645-467b-8176-6a64c80c2c38))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp de28697f-3e0d-4b8f-9694-38d29026ad06))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3b7037e7-ca5b-4db4-8309-45b9eafa2710))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 15a9a109-9fc0-47e4-970d-0209baced5e7))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 204ab853-2cbe-4633-b346-8c1379375a35))
(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 37 "Net-(J4-SHIELD)") (pintype "passive") (tstamp 175f9ae6-1efc-401a-984d-5ad6d44990b2))
(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 3647ce5d-ab5a-4983-bd92-6b302c43dab6))
(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")
(tstamp 1b7ff53b-23cf-4e4a-a69e-8ccf7202d69d)
(at 101.92322 59 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" "epi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/0838f439-92c2-4ce5-ba9d-37a51f08a736")
(attr smd)
(fp_text reference "R4" (at 0 -1.17 90) (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 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 36f1549d-e806-46b4-91ea-cd735a68ee07)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(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)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9766b5b8-c3f6-448a-8de3-1aaa22e29eb5))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 62a197c3-737f-4cbf-8989-4c35532dfd87))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 111514d4-3b65-4f42-929b-cfaa6b732582))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 408baa46-3d38-4df9-882d-662b53ce0649))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6edaea4a-9222-4053-9482-445cabfb6e51))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3c9cee4f-8a66-4359-8cb8-86e9606fbfd1))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 83222cde-f9ab-4a17-94ea-2c0cecf4eba0))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1abad24a-c43d-4643-b942-b31b01375936))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b49f19b7-cc33-4242-bb53-b72fcf6b9e94))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5d599c45-5744-4560-a485-df4b223fe08d))
(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 2 "GND") (pintype "passive") (tstamp 1c44e52f-d4ae-4788-b1a6-f7cb28e79a47))
(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 31 "Net-(J4-CC2)") (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 "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 21e6d3ec-7423-4437-9f54-486d8e29fd5b)
(at 100.31 60.4)
(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" "epi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/ff0d1c7d-7626-42e5-96d6-3163526c4a2f")
(attr smd)
(fp_text reference "R3" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a94519e4-6802-4215-9a8a-d315f050a5cc)
)
(fp_text value "10kΩ" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d65e822d-774a-4130-b96b-6898febcd500)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 6a937fd9-a07a-4edd-b412-bcf2adbc4b49)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bb058681-87fa-4f28-888b-6f79efb27773))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 105f8eda-4880-429d-aafb-6782a4599892))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6871eb7a-f650-4a7e-9ac4-a331b229ad97))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 42d64af4-298a-4900-9bf9-a0ecdff9aa49))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3014cc1f-9542-4bbd-8d34-00b9047aeb57))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 245a124e-4c39-4510-88b2-fe9f456fa28c))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 57d52a6a-d094-42f1-a703-451fe0c4bd07))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 52321e13-ad1b-4719-8709-62b16c24ad4c))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 080d03e8-d982-43ac-a999-b7400d8b2370))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7f1a2f61-b17a-4257-9b88-e09f9eac927c))
(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-(J4-SHIELD)") (pintype "passive") (tstamp ee57dc74-9c68-4571-aca7-67e863a4169f))
(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 fe15dda5-fd52-491a-8621-41d17f55ead3))
(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 "Package_DFN_QFN:QFN-44-1EP_7x7mm_P0.5mm_EP5.2x5.2mm" (layer "F.Cu")
(tstamp 2840f6ff-f235-428a-ab20-9732e8c961e9)
(at 104.27322 66.25)
(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" "epi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "16MHz, 32kB Flash, 2.5kB SRAM, 1kB EEPROM, USB 2.0, QFN-44")
(property "ki_keywords" "AVR 8bit Microcontroller MegaAVR USB")
(path "/e5a34e74-740d-4f11-ae22-b442e9a04463")
(attr smd)
(fp_text reference "U1" (at 0 -4.82) (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) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 243887af-7dd8-45eb-afe2-a2f2d06f228f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7de30612-f20d-4c80-ab7d-55dbae7d7808)
)
(fp_line (start -3.61 3.61) (end -3.61 2.885)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7f997322-66e8-453b-99bb-9d04a05631eb))
(fp_line (start -2.885 3.61) (end -3.61 3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 257eeb6e-1196-4890-8394-cc5198071fda))
(fp_line (start 2.885 -3.61) (end 3.61 -3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 30b775f9-543c-4232-8e28-02afa99be90b))
(fp_line (start 2.885 3.61) (end 3.61 3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d2ff9dc3-e0e2-47e9-9e76-ad1fb5284ee8))
(fp_line (start 3.61 -3.61) (end 3.61 -2.885)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a1d2db30-39ac-47f7-b194-2d82dcbeafe1))
(fp_line (start 3.61 3.61) (end 3.61 2.885)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7c931959-dd46-405b-b072-4d24ed7f8a1e))
(fp_circle (center -3.4 -3.4) (end -3 -3.4)
(stroke (width 0.12) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 7fbf099a-721e-442a-ab60-b809d946cf49))
(fp_line (start -4.12 -4.12) (end -4.12 4.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 73d111c2-0363-4b16-8499-b08bffd5dfb4))
(fp_line (start -4.12 4.12) (end 4.12 4.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 80a7c26a-bae5-495c-af76-68be44c8a07b))
(fp_line (start 4.12 -4.12) (end -4.12 -4.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 54748e03-8661-40c7-a969-1f0ff8395d2c))
(fp_line (start 4.12 4.12) (end 4.12 -4.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 23db0705-e90e-49d7-a444-30359bcb53cc))
(fp_line (start -3.5 -2.5) (end -2.5 -3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c4028c3-a9bf-4f27-a8d5-a9c503b477b2))
(fp_line (start -3.5 3.5) (end -3.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 247c19c9-c61d-436f-a2f3-e7149ec805cb))
(fp_line (start -2.5 -3.5) (end 3.5 -3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8a8e681a-87f2-49d8-b58b-31d2ab7248e1))
(fp_line (start 3.5 -3.5) (end 3.5 3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 60ddb634-8df5-40dc-98d6-0e05fa736af8))
(fp_line (start 3.5 3.5) (end -3.5 3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 140364d0-9f0c-43a1-8b9a-ba7dcf1a04cf))
(pad "1" smd roundrect (at -3.3375 -2.5) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "D7") (pinfunction "PE6") (pintype "bidirectional") (tstamp d5839066-c3e9-4c23-a992-57b036b3f4d3))
(pad "2" smd roundrect (at -3.3375 -2) (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) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "D-") (pinfunction "D-") (pintype "bidirectional") (tstamp 8c4170a9-2b28-468e-81d4-3d64ea8592c2))
(pad "4" smd roundrect (at -3.3375 -1) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "D+") (pinfunction "D+") (pintype "bidirectional") (tstamp f926b000-1444-4375-a4f9-a45ad507d37a))
(pad "5" smd roundrect (at -3.3375 -0.5) (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) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(U1-UCAP)") (pinfunction "UCAP") (pintype "passive") (tstamp 350b9f4e-da41-4612-8563-8b79848950bc))
(pad "7" smd roundrect (at -3.3375 0.5) (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) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "D17{slash}SS") (pinfunction "PB0") (pintype "bidirectional") (tstamp 882b06ec-bed4-4e98-847a-48e4e14cdd64))
(pad "9" smd roundrect (at -3.3375 1.5) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "D15{slash}SCK") (pinfunction "PB1") (pintype "bidirectional") (tstamp fc3561a0-9c63-4060-88bb-758a40b913f7))
(pad "10" smd roundrect (at -3.3375 2) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "D16{slash}MOSI") (pinfunction "PB2") (pintype "bidirectional") (tstamp dcace0cc-605d-4702-8524-4e92f080d2fa))
(pad "11" smd roundrect (at -3.3375 2.5) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "D14{slash}MISO") (pinfunction "PB3") (pintype "bidirectional") (tstamp 2c0d7d0b-19fa-4752-93e1-4e974220e0ce))
(pad "12" smd roundrect (at -2.5 3.3375) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "D11") (pinfunction "PB7") (pintype "bidirectional") (tstamp 56445abe-05b9-42cf-88eb-58fb748cf0c9))
(pad "13" smd roundrect (at -2 3.3375) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "RST") (pinfunction "~{RESET}") (pintype "input") (tstamp d97623d5-15df-48d6-b445-5b8f966acc46))
(pad "14" smd roundrect (at -1.5 3.3375) (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) (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) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(U1-XTAL2)") (pinfunction "XTAL2") (pintype "output") (tstamp 096821c2-ec1b-47fe-a9fe-4c4a54ba44df))
(pad "17" smd roundrect (at 0 3.3375) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(U1-XTAL1)") (pinfunction "XTAL1") (pintype "input") (tstamp e3fec51e-59e3-4c76-b235-939240e5feb2))
(pad "18" smd roundrect (at 0.5 3.3375) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "D3{slash}SCL") (pinfunction "PD0") (pintype "bidirectional") (tstamp 6ac104e7-7f6b-4c8d-b279-30a3b202a90d))
(pad "19" smd roundrect (at 1 3.3375) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "D2{slash}SDA") (pinfunction "PD1") (pintype "bidirectional") (tstamp 80f8bb8e-8201-416b-ab3b-449d101faef1))
(pad "20" smd roundrect (at 1.5 3.3375) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "D0{slash}RX") (pinfunction "PD2") (pintype "bidirectional") (tstamp 04f358ea-0750-4289-8a7d-3ebd52040f8f))
(pad "21" smd roundrect (at 2 3.3375) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "D1{slash}TX") (pinfunction "PD3") (pintype "bidirectional") (tstamp a0dc356d-8ca4-473d-a4a0-218456fd484d))
(pad "22" smd roundrect (at 2.5 3.3375) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 39 "unconnected-(U1-PD5-Pad22)") (pinfunction "PD5") (pintype "bidirectional+no_connect") (tstamp 0bc6ea37-5357-4f88-bb2b-d693b84432c9))
(pad "23" smd roundrect (at 3.3375 2.5) (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) (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) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "D4") (pinfunction "PD4") (pintype "bidirectional") (tstamp fcf84533-9b38-40a5-b396-6ee8590e4808))
(pad "26" smd roundrect (at 3.3375 1) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 41 "D12") (pinfunction "PD6") (pintype "bidirectional") (tstamp 97f52192-ff37-4d37-bf9a-86ac23c15a9c))
(pad "27" smd roundrect (at 3.3375 0.5) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "D6") (pinfunction "PD7") (pintype "bidirectional") (tstamp 7ef48387-4480-4dc0-a4c8-afdc1232c7b7))
(pad "28" smd roundrect (at 3.3375 0) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "D8") (pinfunction "PB4") (pintype "bidirectional") (tstamp d3c183c0-a694-4d17-ad0b-0d5d43326337))
(pad "29" smd roundrect (at 3.3375 -0.5) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "D9") (pinfunction "PB5") (pintype "bidirectional") (tstamp f7c4a944-f120-40cf-804b-264901f06ebf))
(pad "30" smd roundrect (at 3.3375 -1) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "D10") (pinfunction "PB6") (pintype "bidirectional") (tstamp 451f0b6a-92bf-4a1f-baff-cdd6e8f45a11))
(pad "31" smd roundrect (at 3.3375 -1.5) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "D5") (pinfunction "PC6") (pintype "bidirectional") (tstamp b780b923-995d-4429-aa09-6d61de34f2d6))
(pad "32" smd roundrect (at 3.3375 -2) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "D13") (pinfunction "PC7") (pintype "bidirectional") (tstamp 3e451d2a-5690-4c67-9fa4-898316740e44))
(pad "33" smd roundrect (at 3.3375 -2.5) (size 1.075 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "Net-(U1-~{HWB}{slash}PE2)") (pinfunction "~{HWB}/PE2") (pintype "bidirectional") (tstamp 7329abd7-dd54-4888-b9d9-c2aa96edf693))
(pad "34" smd roundrect (at 2.5 -3.3375) (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) (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) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "A0") (pinfunction "PF7") (pintype "bidirectional") (tstamp 93865c52-32c9-4140-b973-0806701fca2f))
(pad "37" smd roundrect (at 1 -3.3375) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "A1") (pinfunction "PF6") (pintype "bidirectional") (tstamp 2625f1c4-9ec1-48a9-bcf8-e7126c433a53))
(pad "38" smd roundrect (at 0.5 -3.3375) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "A2") (pinfunction "PF5") (pintype "bidirectional") (tstamp 0c095d51-82f1-4d1e-9c53-cebd2bc5e40e))
(pad "39" smd roundrect (at 0 -3.3375) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "A3") (pinfunction "PF4") (pintype "bidirectional") (tstamp 9a9e5bc6-0163-4d0e-9070-c2239f4073d6))
(pad "40" smd roundrect (at -0.5 -3.3375) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "A4") (pinfunction "PF1") (pintype "bidirectional") (tstamp 7817d6e2-ed15-4ff3-9d78-a153f3b7f752))
(pad "41" smd roundrect (at -1 -3.3375) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "A5") (pinfunction "PF0") (pintype "bidirectional") (tstamp 8fa3a3de-1047-4422-ba51-b001264fea53))
(pad "42" smd roundrect (at -1.5 -3.3375) (size 0.25 1.075) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "unconnected-(U1-AREF-Pad42)") (pinfunction "AREF") (pintype "passive+no_connect") (tstamp fd4f90a6-e973-402a-a9be-aeb352d4f5fb))
(pad "43" smd roundrect (at -2 -3.3375) (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) (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))
(pad "45" smd roundrect (at 0.125 0) (size 1.75 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp bded443c-7624-47bd-a5b7-3209d0fe8001))
(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")
(tstamp 2a518c62-210b-4e52-83f0-0c8503bb0492)
(at 107.3 71.7 -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" "epi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode, small symbol")
(property "ki_keywords" "LED diode light-emitting-diode")
(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") hide
(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") hide
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp d27fd891-e54d-4857-99d5-aac5c297cb85)
)
(fp_circle (center -1.05 0) (end -0.95 0)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 3fa076ff-443c-402d-aaad-720fec8ab173))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0c43874f-fc8a-4fb7-b9f6-7ec564ed9d77))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 72857d67-8f47-452a-b3bc-11066fb38eff))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 41d861cd-6ae8-431b-9808-bb88ed24a1cb))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4d88d9ad-1766-410e-a793-75aa9a5e8813))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 20835cf1-aacb-4673-9678-3541e3ec4c2f))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8c2a7906-ec2f-406a-8058-5ab17aeb3014))
(fp_line (start -0.4 0.25) (end -0.4 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1013a546-9f5d-4848-836a-7ad3a8199e38))
(fp_line (start -0.3 0.25) (end -0.3 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4005fac3-f005-4a2d-accd-b50e23d51052))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b9e05e61-0989-42b4-9bdc-59a7c56dde29))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f5263e76-91ba-4f2c-a24c-21e4d637aa90))
(pad "1" smd roundrect (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(D1-K)") (pinfunction "K") (pintype "passive") (tstamp 347d39cc-0619-428f-8219-e1b905bd15cd))
(pad "2" smd roundrect (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "D13") (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")
(tstamp 3196d950-419e-4be8-9e7c-7a139831cf90)
(at 104.75 59 -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" "epi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(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") hide
(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") hide
(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)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 60a0aa81-dc31-451a-bcec-a348ac9fb762))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b3e9fa6a-3e81-49b8-ada1-c26147410607))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 599b8a8f-0c31-452e-9f4a-49fda8a644c0))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bb450cde-6d37-42e5-bf22-98d95637a8f2))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9fe96069-2b73-48e3-be85-84d62e3c3a14))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b81c9337-59fe-4348-a98d-e349bde13cff))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 926d0f2b-5576-4057-8bfb-746f26265be4))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 639c873d-0813-4bb3-9ecd-5a75fe9679f2))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 330f0486-5b68-40ff-b790-e546b8d24b4d))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (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 24 "Net-(J4-D--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 17 "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")
(tstamp 33ec4987-5f0d-4a20-91fc-11af95c4c852)
(at 100.2 71.4 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" "epi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/5e35bf4c-7ada-442b-8ca6-c06dd0404eb2")
(attr smd)
(fp_text reference "R6" (at 0 -1.17 90) (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 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b6a5339d-6e94-4dc4-95f9-67f2831de9e6)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(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)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5d12cdef-805d-4de5-8c79-c159125b34c4))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 152003e1-a957-4dba-bb8a-d76669e7d460))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9deaf651-2175-43b1-b6ba-a1d1131467a0))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 980e9f0c-c0bc-4dd6-855a-7e0529943df9))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8720e8ee-d894-470f-8912-2ebb4306d596))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5f0052f1-ebf4-4360-b324-fc6f59fc464f))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5eaea08e-62c1-4122-9c7c-470dd187af2d))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1da49035-d031-4c36-99d4-a2c4e5542767))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 321a3332-702c-483e-a671-36fb5ed43aa4))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8b6e386c-48b1-4435-b8dd-b5e81a26efd9))
(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 1 "+5V") (pintype "passive") (tstamp 33e9ebf4-cb0a-428e-bd38-e819c171d95e))
(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 5 "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")
(tstamp 3b876c83-4f1e-47a6-953d-32ebda15ec32)
(at 108.9 63.25 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" "epi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/d23a8c2b-6e6e-4df0-a7d5-dd4ca3935473")
(attr smd)
(fp_text reference "R7" (at 0 -1.17 90) (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 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6327d065-719d-46e5-b5c0-69ef2ca980d6)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(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)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d3df471-a0c1-4874-8be0-9e04108dd3ca))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 245bff80-1cb3-40b3-ab98-13a45b2a6db9))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 27ced5c2-009a-4c8d-aaca-29dc310e292f))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 12c56536-9c07-4742-adf8-9fffe6048938))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 901a9bb4-2a70-4ec9-bbc3-f5f16b082252))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2d9d2a7e-0113-4211-8a5a-125bc08d8736))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b7f92f9e-8a1a-49aa-aa1f-f2c93197d445))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 51f5589d-722f-4758-bdf1-1ca81f5cdba6))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0b0e7828-df67-4321-8e93-6926622883bd))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 90a93f22-552e-4d55-94bd-2097802ee490))
(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 38 "Net-(U1-~{HWB}{slash}PE2)") (pintype "passive") (tstamp edd4b219-192f-40a7-86e5-49ffb6f0130b))
(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 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")
(tstamp 4280c1a9-463d-43d1-a046-ddb588b6dc4c)
(at 100.98322 59 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" "epi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Voltage dependent resistor")
(property "ki_keywords" "VDR resistance")
(path "/e6525ad7-3201-4276-b201-2042e4729e0c")
(attr smd)
(fp_text reference "RV3" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 46d6a405-9ea3-408f-af97-34dbe142c6bc)
)
(fp_text value "ESD protection varistor" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ab71fdec-5e91-4280-9396-457ccdc08ac6)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp a86af587-aa38-403e-acbb-ac91e3a79fa4)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4367ab60-b9fd-4535-b256-489be290f86d))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9d1d7628-2cfa-4236-813e-9141d8ff7885))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5f7dc1fc-c452-4cff-aa14-6b9b8ccb3d8d))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 475d4054-e3b9-4cba-bfd9-ad87a496ec64))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 01b59f0d-8216-4f11-8c3b-73aef9fe87a5))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a4fc2891-c80f-4a4c-a706-08a3cd04fc6d))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a2137ca-af7f-4eb9-918f-460ea2645cae))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 01849f3f-9289-4d43-bbbe-68599a59f94c))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8de5f394-1bd3-4da4-8a55-03d459ace1d6))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp acd4dece-e796-42f1-80ce-1813737b5ae7))
(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 2 "GND") (pintype "passive") (tstamp 4f033ed5-658a-4fa5-a829-f37bda03718a))
(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 45 "Net-(FB1-Pad1)") (pintype "passive") (tstamp fb4460db-4620-41b7-8505-bf522fb2a2e5))
(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")
(tstamp 44bb206b-d46c-47bc-8d9a-ebbbe4460315)
(at 103.8 59 -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" "epi.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(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") hide
(effects (font (size 1 1) (thickness 0.15)))