-
Notifications
You must be signed in to change notification settings - Fork 0
/
esp32promicro.kicad_pcb
executable file
·9515 lines (9476 loc) · 438 KB
/
esp32promicro.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(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)
(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 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers/")
)
)
(net 0 "")
(net 1 "+5V")
(net 2 "GND")
(net 3 "+3V3")
(net 4 "RESET")
(net 5 "XTALP")
(net 6 "XTALN")
(net 7 "VDDSPI")
(net 8 "Net-(D1-A)")
(net 9 "TXD")
(net 10 "RXD")
(net 11 "SDA2")
(net 12 "SCL3")
(net 13 "4")
(net 14 "5")
(net 15 "6")
(net 16 "7")
(net 17 "8")
(net 18 "9")
(net 19 "21")
(net 20 "20")
(net 21 "19")
(net 22 "18")
(net 23 "SCLK15")
(net 24 "MISO14")
(net 25 "MOSI16")
(net 26 "10")
(net 27 "Net-(U4-CC2)")
(net 28 "Net-(U4-CC1)")
(net 29 "SPICS")
(net 30 "Net-(L1-ANT)")
(net 31 "unconnected-(L1-Pad2)")
(net 32 "RGBLED")
(net 33 "unconnected-(LED1-DO-Pad1)")
(net 34 "IO0")
(net 35 "unconnected-(U1-VDD3P3-Pad2)")
(net 36 "unconnected-(U1-VDD3P3-Pad3)")
(net 37 "unconnected-(U1-VDD3P3_RTC-Pad20)")
(net 38 "unconnected-(U1-XTAL_32K_P-Pad21)")
(net 39 "unconnected-(U1-XTAL_32K_N-Pad22)")
(net 40 "USBN")
(net 41 "USBP")
(net 42 "+BATT")
(net 43 "unconnected-(U1-SPICS1-Pad28)")
(net 44 "SPIHD")
(net 45 "SPIWP")
(net 46 "SPICLK")
(net 47 "SPIQ")
(net 48 "SPID")
(net 49 "unconnected-(U1-SPICLK_N-Pad36)")
(net 50 "unconnected-(U1-SPICLK_P-Pad37)")
(net 51 "unconnected-(U1-GPIO33-Pad38)")
(net 52 "unconnected-(U1-GPIO34-Pad39)")
(net 53 "unconnected-(U1-GPIO38-Pad43)")
(net 54 "unconnected-(U1-MTCK-Pad44)")
(net 55 "unconnected-(U1-MTDO-Pad45)")
(net 56 "unconnected-(U1-VDD3P3_CPU-Pad46)")
(net 57 "unconnected-(U1-MTDI-Pad47)")
(net 58 "unconnected-(U1-MTMS-Pad48)")
(net 59 "unconnected-(U1-GPIO45-Pad51)")
(net 60 "unconnected-(U1-GPIO46-Pad52)")
(net 61 "unconnected-(U4-GND-PadA1B12)")
(net 62 "unconnected-(U4-DN2-PadB7)")
(net 63 "unconnected-(U4-SBU2-PadB8)")
(net 64 "unconnected-(U4-DP2-PadB6)")
(net 65 "unconnected-(U4-SBU1-PadA8)")
(net 66 "unconnected-(U4-VBUS-PadB4A9)")
(net 67 "unconnected-(SW1-Pad2)")
(net 68 "unconnected-(SW1-Pad3)")
(net 69 "unconnected-(SW3-Pad3)")
(net 70 "unconnected-(SW3-Pad4)")
(net 71 "VBAT")
(net 72 "CHRG")
(net 73 "Net-(U5-PROG)")
(net 74 "unconnected-(U1-GPIO21-Pad27)")
(net 75 "ANTENNA")
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 0c3a662b-ee65-490e-acb8-f950d16f4c79)
(at 103.251 67.818 90)
(descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x01 2.54mm single row")
(property "Sheetfile" "esp32promicro.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x01, script generated")
(property "ki_keywords" "connector")
(path "/719998ca-6754-46c5-b61d-5d4f5425b64d")
(attr through_hole)
(fp_text reference "J4" (at 0 -2.33 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 08527e3c-4233-428a-8037-70f7cf71173a)
)
(fp_text value "Conn_01x01_Pin" (at 0 2.33 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ec0251a2-bd3b-4ca1-b10e-ce1659262788)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa2cdd5e-5cc9-4194-bf0d-b24f0ca0c020)
)
(fp_line (start -1.8 -1.8) (end -1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eb7e8a14-1fac-449e-916a-679645756315))
(fp_line (start -1.8 1.8) (end 1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c308addc-cef8-46b7-a1ec-6ba9577c313b))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0d3d8757-4156-489f-a759-5ff887096d3a))
(fp_line (start 1.8 1.8) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 964be3be-05ea-4767-9e42-b454a1f94104))
(fp_line (start -1.27 1.27) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 55dc4319-5467-4225-8938-566612556fd0))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 55f63257-ee9b-4c94-af42-c145cbd2180e))
(fp_line (start 1.27 -1.27) (end 1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 362573f8-42f9-4953-8109-39a4db59206d))
(fp_line (start 1.27 1.27) (end -1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4d004785-9410-4f2a-b355-2d064dae0569))
(pad "1" thru_hole rect (at 0 0 90) (size 1.2 1.2) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 1db69a41-0cdc-47db-bc35-ddb54bd94b6b))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "lcsc:SOP-8_L5.0-W4.0-P1.27-LS6.0-BL" (layer "F.Cu")
(tstamp 1b93105b-1dfb-4b29-baa5-3088eee6de7d)
(at 117.648033 64.684285 90)
(property "LCSC Part" "C395464")
(property "Sheetfile" "esp32promicro.kicad_sch")
(property "Sheetname" "")
(path "/19afc8e1-fd51-4dcd-9024-9ac0007c1862")
(attr smd)
(fp_text reference "U2" (at 0 -6.148 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a8d4c48d-c5b0-4294-a5f4-e2e5dd884dfa)
)
(fp_text value "GD25Q80CTIGR" (at 0 6.77 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e925940-df93-42c5-8733-44c5aca2e06c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3072cac5-7054-4038-8992-23fcf2afe3d4)
)
(fp_line (start -2.53 -1.52) (end 2.53 -1.52)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 2998fb0e-8c94-4510-9958-09cbc964c920))
(fp_line (start -2.53 1.52) (end -2.53 -1.52)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 2ba28bd5-dc0e-4fdb-85f9-5a8ac7f13718))
(fp_line (start 2.53 -1.52) (end 2.53 1.52)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 4eba7957-83dd-49e0-b14b-e5398e8af3a9))
(fp_line (start 2.53 1.52) (end -2.53 1.52)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 324922e2-f05c-4aa9-959b-5449f24412c2))
(fp_circle (center -2.64 2.77) (end -2.49 2.77)
(stroke (width 0.3) (type solid)) (fill none) (layer "F.SilkS") (tstamp 4cc1f642-33c7-496c-b7b9-3d0de32ba369))
(fp_circle (center -1.91 0.77) (end -1.76 0.77)
(stroke (width 0.3) (type solid)) (fill none) (layer "F.SilkS") (tstamp cf726b4c-4881-45a8-8e27-8c221477e9f6))
(fp_circle (center -1.91 3.4) (end -1.76 3.4)
(stroke (width 0.3) (type solid)) (fill none) (layer "Cmts.User") (tstamp 9abf67df-340b-4f9b-9aa7-a31a7dfc3202))
(fp_circle (center -2.45 3) (end -2.42 3)
(stroke (width 0.06) (type solid)) (fill none) (layer "F.Fab") (tstamp 5c4b833c-6e03-4032-ae58-0f12bbcbd2bf))
(pad "1" smd oval (at -1.91 2.77 90) (size 0.57 2.04) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "SPICS") (pinfunction "~{CS}") (pintype "unspecified") (tstamp 664030dd-8706-4df8-89f3-c92f4b702174))
(pad "2" smd oval (at -0.63 2.77 90) (size 0.57 2.04) (layers "F.Cu" "F.Paste" "F.Mask")
(net 47 "SPIQ") (pinfunction "SO(IO1)") (pintype "unspecified") (tstamp 1f007614-c796-4f4d-bbd7-71844c80ffa5))
(pad "3" smd oval (at 0.63 2.77 90) (size 0.57 2.04) (layers "F.Cu" "F.Paste" "F.Mask")
(net 45 "SPIWP") (pinfunction "WP#(IO2)") (pintype "unspecified") (tstamp 793ca55f-bd43-44c2-a219-17f484d19618))
(pad "4" smd oval (at 1.9 2.77 90) (size 0.57 2.04) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "VSS") (pintype "unspecified") (tstamp 2b8318b2-d359-4f0d-b710-06ddf8cb4383))
(pad "5" smd oval (at 1.9 -2.77 90) (size 0.57 2.04) (layers "F.Cu" "F.Paste" "F.Mask")
(net 48 "SPID") (pinfunction "SI(IO0)") (pintype "unspecified") (tstamp 13f9762b-dcce-496f-a809-f746cdb3b658))
(pad "6" smd oval (at 0.63 -2.77 90) (size 0.57 2.04) (layers "F.Cu" "F.Paste" "F.Mask")
(net 46 "SPICLK") (pinfunction "SCLK") (pintype "unspecified") (tstamp e3dd7645-028b-495f-8f71-67491b92c353))
(pad "7" smd oval (at -0.63 -2.77 90) (size 0.57 2.04) (layers "F.Cu" "F.Paste" "F.Mask")
(net 44 "SPIHD") (pinfunction "HOLD#(IO3)") (pintype "unspecified") (tstamp 600432fa-4a9e-4d9a-af08-542da18c8b1d))
(pad "8" smd oval (at -1.91 -2.77 90) (size 0.57 2.04) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "VDDSPI") (pinfunction "VCC") (pintype "unspecified") (tstamp 250fd788-03fe-4fbb-9073-b5d26960b0e1))
(model "${EASYEDA2KICAD}/easyeda2kicad.3dshapes/SOP-8_L5.0-W4.0-H1.8-LS6.2-P1.27.wrl"
(offset (xyz 0.25 0.51 -0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 270))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 3d7e12df-184a-4d58-924b-162873222052)
(at 108.187479 59.182 90)
(descr "Capacitor SMD 0603 (1608 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" "esp32promicro.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/922e08db-63a2-42a1-8317-778dc7f98f65")
(attr smd)
(fp_text reference "C5" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c3ce95ea-cc9c-46c8-93e7-11fcd1ab5a84)
)
(fp_text value "C" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 112bedc3-5775-4fb0-88f0-a26ef85b21e3)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp f6fd0f55-0419-44fe-8df8-f6cc17509bbf)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab270122-c7f2-41c0-83a4-c9a3a857ea1e))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ed8b0c04-5db8-4e16-8b72-0cd0b1e3d66f))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3c978918-661b-4c52-b2a1-311063dc086f))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c5a21f5e-13e7-4d6d-8fd2-72002e823101))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 22fbc181-c181-4d45-b0db-2f6a79b54e07))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 809f8f93-d72f-4bc5-a3f1-131e58f1f9a7))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1bfd6827-a2a4-47ef-90e7-f27d17afc562))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 23c59413-99a1-40f0-92fa-45e0c9a27b90))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b0c36f1b-ba72-4b95-8d70-9ac000a46dbb))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 67a757d7-9082-47e0-b37d-db3ff45c0675))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "XTALN") (pintype "passive") (tstamp 89c4cc95-ba3e-4a0a-a4a9-e46dc8623aee))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp dabc11cc-e46d-41af-bacb-6e937608e2aa))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 48a410c4-e15d-4658-8087-4530221abb39)
(at 122.936 62.992)
(descr "Resistor SMD 0603 (1608 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" "esp32promicro.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/a16351d9-bb97-43ff-83d4-a5fcd2ca5ccd")
(attr smd)
(fp_text reference "R6" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 21aab01c-fa9b-4b9a-b4b2-683500b7321c)
)
(fp_text value "R" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f8fc082-2e0c-4100-8baf-e92774f8ed3a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 0affefeb-9078-4b8d-b616-54afbd9ef2ac)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dd689674-9832-4c33-8b27-8e81f724df55))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 498f7cf7-ad57-41db-99aa-ffec0cfc9492))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 65c980d4-e5b4-4f38-a293-fd90ad844b8e))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5087df74-4c93-4c21-8c1d-20621ff98571))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e69efc48-c9e4-4189-88e9-d27ccf97cba6))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a9a149fd-4f46-485d-af4e-88a200f17c91))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b21980ac-54a9-42ab-aa22-43ac628806b5))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 54beec8e-fbc9-433b-af6a-7bb8e07107b7))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d2cda8de-f0fe-4663-acf1-121fcc5c74cd))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 40f93686-3fbd-424f-b018-25b224983c28))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "+BATT") (pintype "passive") (tstamp 3a2761d2-d570-48e1-b9e7-737794406de1))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 71 "VBAT") (pintype "passive") (tstamp 4d303dfa-9292-4759-8bb3-3b7e023bfb16))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 4a1d5bf7-5149-4c97-a1b9-6293836c3660)
(at 122.936 64.4652 180)
(descr "Resistor SMD 0603 (1608 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" "esp32promicro.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/484229f1-21b9-461d-a21a-69e84470ea05")
(attr smd)
(fp_text reference "R7" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 30a67bc9-69ca-45cc-ad79-216ee23cdceb)
)
(fp_text value "R" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 36936d07-c727-45ec-950e-9c36dba98622)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp ef790468-bbce-4444-865b-8657fc2cfea8)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 33b4e13e-37d1-4eda-937d-cc563a7c9797))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb114019-bae5-4760-a525-801a853df941))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fb6ff773-b308-4b3f-a5ce-562b848f930b))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e08c126d-d99a-4dcc-ac8f-a00619cc6d5a))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 22d9777e-654b-44cf-9cd9-28a7eff2b226))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 431b7c73-f599-4f45-9f8b-529e5d4f66a9))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 51b79d47-3dac-4414-a778-ecb7f88cbd58))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bda93d0d-b228-4644-98c6-590baf5cbd96))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 99b0b317-d740-42f8-bdd8-3e955f241fd5))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 43e16088-61eb-48b1-973a-38f35531bd14))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 71 "VBAT") (pintype "passive") (tstamp 678cf6c1-0d5b-451a-9512-7f73de70c28b))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 68cc4760-38b1-4605-b192-ded26de6c033))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 4c1a161f-6d83-4faf-9efd-316c1f0ff87b)
(at 131.672663 56.202943 90)
(descr "Resistor SMD 0603 (1608 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" "esp32promicro.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/9d0e2327-d4a1-414e-9ff5-0d8a5a18b86b")
(attr smd)
(fp_text reference "R3" (at 7.905 16.62 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 22515020-7e91-4a41-94d7-ab0d0da7a01a)
)
(fp_text value "R" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bf3f4ba3-ad12-44a9-b7e8-0a8b0be112f0)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp edc5944e-7451-4bbe-8c7f-7cd5af5aeaaf)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b8104d51-2c90-4c53-8b92-480728a6f11c))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b8d010f1-2c91-43b6-b6b5-96998c97d25c))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c70ed590-fc9c-4355-969c-293176876a08))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 17e9fe91-ba7c-4978-9af9-3baff52008b2))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 44ab6f29-c4a0-42db-970c-46c43da85985))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2277b879-26a7-49ca-a9d0-2086cf36a470))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d2507295-14fd-4d5c-ab4b-4336f280f04b))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c3aad5d0-41d2-4bd4-8896-74d8b74c3d37))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2678da73-73dc-4add-8760-d586904459aa))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7f9ae6e9-82a0-44d2-8638-303505370a60))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+5V") (pintype "passive") (tstamp ce23d629-a621-4002-b219-40b172053f83))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(D1-A)") (pintype "passive") (tstamp febf6739-55df-4aee-a9d0-02b8d93c85c7))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "lcsc:SW-SMD_4P-L2.8-W1.9-P1.20-LS3.0_1TS028A" (layer "F.Cu")
(tstamp 4dc8df4f-0028-430e-868c-8045063ff779)
(at 119.38748 58.661269 180)
(property "LCSC Part" "C481983")
(property "Sheetfile" "esp32promicro.kicad_sch")
(property "Sheetname" "")
(path "/f4b6d178-44bb-46c1-bf62-f2432ef9a575")
(attr smd)
(fp_text reference "SW1" (at 0 -4.58) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 932a9ff1-a990-41cd-8192-489560d47d6c)
)
(fp_text value "1TS028A-1300-0600-CT" (at 0 4.58) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 62d109a7-8d8e-4e21-be24-dc10d5b99190)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dec88f71-c91a-40b6-a060-34ca39b3e794)
)
(fp_line (start -1.4 -0.04) (end -1.4 0.04)
(stroke (width 0.25) (type solid)) (layer "F.SilkS") (tstamp 5da16abe-5fd9-4e15-b07c-596342c6f477))
(fp_line (start -0.8 -1) (end 0.8 -1)
(stroke (width 0.25) (type solid)) (layer "F.SilkS") (tstamp 526dfbbc-27f2-415a-9922-aebb83f6bdcd))
(fp_line (start -0.8 1) (end 0.8 1)
(stroke (width 0.25) (type solid)) (layer "F.SilkS") (tstamp c63c0449-eb3b-4c82-bf92-5dee216827c9))
(fp_line (start 1.4 -0.04) (end 1.4 0.04)
(stroke (width 0.25) (type solid)) (layer "F.SilkS") (tstamp 3786e550-50b7-42cc-ad71-d12a64dbdd2b))
(fp_circle (center 0 0) (end 0.46 0)
(stroke (width 0.25) (type solid)) (fill none) (layer "F.SilkS") (tstamp 9a17df89-81af-4fd2-b8d7-b817638ed44b))
(fp_circle (center -1.5 -0.95) (end -1.47 -0.95)
(stroke (width 0.06) (type solid)) (fill none) (layer "F.Fab") (tstamp f5c5327f-5bb4-4ed2-a81a-b0d0cb33b44d))
(pad "1" smd rect (at -1.5 -0.58 180) (size 0.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "1") (pintype "unspecified") (tstamp db8f397d-654d-4a8c-9034-909549c89c31))
(pad "2" smd rect (at -1.5 0.58 180) (size 0.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 67 "unconnected-(SW1-Pad2)") (pinfunction "2") (pintype "unspecified") (tstamp 1bf4209d-f8ee-49fa-b8ec-7e9e66b96c81))
(pad "3" smd rect (at 1.5 -0.58) (size 0.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 68 "unconnected-(SW1-Pad3)") (pinfunction "3") (pintype "unspecified") (tstamp 0f6cfc97-7730-4ad2-82d7-28bec3049ea6))
(pad "4" smd rect (at 1.5 0.58) (size 0.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "RESET") (pinfunction "4") (pintype "unspecified") (tstamp 91f248a3-ec00-4e43-8fc1-d866fde46176))
(model "${EASYEDA2KICAD}/easyeda2kicad.3dshapes/SW-SMD_4P-L2.8-W2.1-H0.6-P1.20-LS3.0_1TS028A.wrl"
(offset (xyz 0 -0 -0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "lcsc:QFN-56_L7.0-W7.0-P0.40-TL-EP4.0" (layer "F.Cu")
(tstamp 5df025ec-8517-4023-ac16-89d2cb497048)
(at 109.079477 64.645823)
(property "LCSC Part" "C2913192")
(property "Sheetfile" "esp32promicro.kicad_sch")
(property "Sheetname" "")
(path "/6962785c-de09-4e1b-9895-6222e668acf1")
(attr smd)
(fp_text reference "U1" (at 0 -7.41) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9418eab6-939e-4663-b2be-0959acc3b7bb)
)
(fp_text value "ESP32-S3" (at 0 7.41) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f6268c39-63c5-423d-85dc-a4b5826c44c6)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1dbf0480-e6c1-440f-b081-1f91ea42f843)
)
(fp_line (start -3.58 -3.58) (end -3.58 -2.9)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 5da072eb-6752-43d1-9db5-eac6134e1162))
(fp_line (start -3.58 3.58) (end -3.58 2.9)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 8dffa3e8-8a89-4c87-aca5-669b724746a6))
(fp_line (start -2.9 -3.58) (end -3.58 -3.58)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp cf4e6b01-2b56-4a7a-973d-d6eea450f4f7))
(fp_line (start -2.9 3.58) (end -3.58 3.58)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp dc95f4f5-326b-447c-ba08-0e6686396691))
(fp_line (start 2.9 -3.58) (end 3.58 -3.58)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 5175b8f8-a7d3-44cc-b5b9-d31249df5dd5))
(fp_line (start 2.9 3.58) (end 3.58 3.58)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp f2f7ac88-885c-4552-b576-5eaf5a3eaaf9))
(fp_line (start 3.58 -3.58) (end 3.58 -2.9)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 1d69069a-dc8a-4f97-9bac-e4dd7936f916))
(fp_line (start 3.58 3.58) (end 3.58 2.9)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp aa01291b-f3df-483a-9167-6fa0ac1d2cdd))
(fp_circle (center -4.04 -2.6) (end -3.97 -2.6)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp 47cef9d7-19f2-4bd0-9507-8d51824ea7f8))
(fp_circle (center -3.8 -2.6) (end -3.73 -2.6)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp b7b87cb8-3f82-4007-8e65-fa51d612a249))
(fp_circle (center -3.5 -3.5) (end -3.47 -3.5)
(stroke (width 0.06) (type solid)) (fill none) (layer "F.Fab") (tstamp 8dbb56db-95d3-4efb-8557-13b214dfae3f))
(pad "" thru_hole circle (at -1 -1) (size 0.61 0.61) (drill 0.3) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp ae8b8c47-d710-4855-b4d1-25e6436a318f))
(pad "" thru_hole circle (at -1 0) (size 0.61 0.61) (drill 0.3) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp ad809063-20a8-4838-906b-f7f2e2cdf395))
(pad "" thru_hole circle (at -1 1) (size 0.61 0.61) (drill 0.3) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp 3d67d249-4312-4e52-b3d5-20ece49c71f2))
(pad "" thru_hole circle (at 0 -1) (size 0.61 0.61) (drill 0.3) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp bcbdf038-aec0-4c23-8fcf-65ab1ba500a7))
(pad "" thru_hole circle (at 0 0) (size 0.61 0.61) (drill 0.3) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp 2d21e0d0-4288-45d9-a125-7a1515911fde))
(pad "" thru_hole circle (at 0 1) (size 0.61 0.61) (drill 0.3) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp 3116766b-cfe9-458d-8d99-7c2ffa962022))
(pad "" thru_hole circle (at 1 -1) (size 0.61 0.61) (drill 0.3) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp 364d42b5-0782-4981-af17-119a6904e2cd))
(pad "" smd circle (at 1 0) (size 0.61 0.61) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7ef1e69a-ae82-434f-a68e-85a4ffb80e9c))
(pad "" smd circle (at 1 1) (size 0.61 0.61) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 9d21433f-6f96-45ea-8654-8b37ce463a43))
(pad "1" smd rect (at -3.41 -2.6) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 75 "ANTENNA") (pinfunction "LNA_IN") (pintype "unspecified") (tstamp fb6d96d0-4edb-46c1-b1a5-de6d863c937b))
(pad "2" smd rect (at -3.41 -2.2) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "unconnected-(U1-VDD3P3-Pad2)") (pinfunction "VDD3P3") (pintype "unspecified") (tstamp 5fea2688-9bd0-438f-95b4-df024bc6c0d1))
(pad "3" smd rect (at -3.41 -1.8) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 36 "unconnected-(U1-VDD3P3-Pad3)") (pinfunction "VDD3P3") (pintype "unspecified") (tstamp 2301eb88-4467-42b3-909b-6652010f42ae))
(pad "4" smd rect (at -3.41 -1.4) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "RESET") (pinfunction "CHIP_PU") (pintype "unspecified") (tstamp 7590cf14-0ae3-4958-b91c-1e3c77d12c7b))
(pad "5" smd rect (at -3.41 -1) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "IO0") (pinfunction "GPIO0") (pintype "unspecified") (tstamp 261ab9ba-b27d-4a11-b7dc-4aa1d69b49c5))
(pad "6" smd rect (at -3.41 -0.6) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "4") (pinfunction "GPIO1") (pintype "unspecified") (tstamp 55df6131-d232-4a8b-9e6a-e4a57c8960c9))
(pad "7" smd rect (at -3.41 -0.2) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "5") (pinfunction "GPIO2") (pintype "unspecified") (tstamp 02cf02b8-6566-4054-85d5-7361148834a0))
(pad "8" smd rect (at -3.41 0.2) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "6") (pinfunction "GPIO3") (pintype "unspecified") (tstamp ace0dabc-979e-4aed-be71-2f992a82fe72))
(pad "9" smd rect (at -3.41 0.6) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "7") (pinfunction "GPIO4") (pintype "unspecified") (tstamp 972b677b-cde4-47ad-b4ba-9d4278d6ec76))
(pad "10" smd rect (at -3.41 1) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "8") (pinfunction "GPIO5") (pintype "unspecified") (tstamp b8e81054-b2b9-48cc-9a54-38767fb2341c))
(pad "11" smd rect (at -3.41 1.4) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "9") (pinfunction "GPIO6") (pintype "unspecified") (tstamp 54730025-d4a7-469f-a745-9bbf073d173b))
(pad "12" smd rect (at -3.41 1.8) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "10") (pinfunction "GPIO7") (pintype "unspecified") (tstamp 09331097-5f77-4415-bb11-cea5013e120f))
(pad "13" smd rect (at -3.41 2.2) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "SDA2") (pinfunction "GPIO8") (pintype "unspecified") (tstamp 402f508a-cbcb-4ced-bd93-da7b51264577))
(pad "14" smd rect (at -3.41 2.6) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "SCL3") (pinfunction "GPIO9") (pintype "unspecified") (tstamp e5cc6648-2135-46c3-a2ab-1e9f8bc90524))
(pad "15" smd rect (at -2.6 3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "18") (pinfunction "GPIO10") (pintype "unspecified") (tstamp 1408b73f-aabd-47d5-9067-813be6393886))
(pad "16" smd rect (at -2.2 3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "19") (pinfunction "GPIO11") (pintype "unspecified") (tstamp 25fcd4cf-6181-42a4-b109-848048da3b60))
(pad "17" smd rect (at -1.8 3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "20") (pinfunction "GPIO12") (pintype "unspecified") (tstamp d4c7f0cc-9ea5-40b4-b692-8f07c790bb56))
(pad "18" smd rect (at -1.4 3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "21") (pinfunction "GPIO13") (pintype "unspecified") (tstamp 696581cc-60cb-4494-9e3d-40c1549d3c3f))
(pad "19" smd rect (at -1 3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "RGBLED") (pinfunction "GPIO14") (pintype "unspecified") (tstamp 37be91e4-66a9-49ad-a8e7-6c239f9f39a3))
(pad "20" smd rect (at -0.6 3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "unconnected-(U1-VDD3P3_RTC-Pad20)") (pinfunction "VDD3P3_RTC") (pintype "unspecified") (tstamp 7015e5ab-bca9-424a-8bea-e3985f9cf246))
(pad "21" smd rect (at -0.2 3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "unconnected-(U1-XTAL_32K_P-Pad21)") (pinfunction "XTAL_32K_P") (pintype "unspecified") (tstamp 556164c7-09e5-47ae-b565-2ae26a5f607d))
(pad "22" smd rect (at 0.2 3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 39 "unconnected-(U1-XTAL_32K_N-Pad22)") (pinfunction "XTAL_32K_N") (pintype "unspecified") (tstamp d3508dcf-094d-478f-93a2-4ec9b0f6c0c3))
(pad "23" smd rect (at 0.6 3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 72 "CHRG") (pinfunction "GPIO17") (pintype "unspecified") (tstamp f379194b-ebf1-4c53-b806-5c5070403d48))
(pad "24" smd rect (at 1 3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 71 "VBAT") (pinfunction "GPIO18") (pintype "unspecified") (tstamp f5e76273-bee6-43a5-bcd9-bd4e62d14281))
(pad "25" smd rect (at 1.4 3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 40 "USBN") (pinfunction "GPIO19") (pintype "unspecified") (tstamp c85ceb19-9aca-49f7-bada-6d5c27a2df9f))
(pad "26" smd rect (at 1.8 3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 41 "USBP") (pinfunction "GPIO20") (pintype "unspecified") (tstamp 693f5bfe-5a84-48c3-a601-84bbccfb98b5))
(pad "27" smd rect (at 2.2 3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 74 "unconnected-(U1-GPIO21-Pad27)") (pinfunction "GPIO21") (pintype "unspecified") (tstamp 8583c1d3-8411-4e1d-816d-34c4287a8146))
(pad "28" smd rect (at 2.6 3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "unconnected-(U1-SPICS1-Pad28)") (pinfunction "SPICS1") (pintype "unspecified") (tstamp 8a6b3ccc-2467-4d46-a1e1-c452010defac))
(pad "29" smd rect (at 3.41 2.6) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "VDDSPI") (pinfunction "VDD_SPI") (pintype "unspecified") (tstamp 2d4f1c5b-0750-4f4a-805a-7793773b1747))
(pad "30" smd rect (at 3.41 2.2) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 44 "SPIHD") (pinfunction "SPIHD") (pintype "unspecified") (tstamp a946655a-b3a0-4207-b85a-8d5b9b17f3c8))
(pad "31" smd rect (at 3.41 1.8) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 45 "SPIWP") (pinfunction "SPIWP") (pintype "unspecified") (tstamp e546184d-4779-4ad3-a678-be0cff27cac9))
(pad "32" smd rect (at 3.41 1.4) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "SPICS") (pinfunction "SPICS0") (pintype "unspecified") (tstamp 6b2b2e83-cbfb-4c95-a2eb-4fb6d7add8b3))
(pad "33" smd rect (at 3.41 1) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 46 "SPICLK") (pinfunction "SPICLK") (pintype "unspecified") (tstamp 6a8081d5-b752-4ee2-9371-62eaf3de2104))
(pad "34" smd rect (at 3.41 0.6) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 47 "SPIQ") (pinfunction "SPIQ") (pintype "unspecified") (tstamp d4ba1705-c430-4cdc-a2c8-355d36411729))
(pad "35" smd rect (at 3.41 0.2) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 48 "SPID") (pinfunction "SPID") (pintype "unspecified") (tstamp c39682a7-2097-42e8-bdd3-653fea0e27ba))
(pad "36" smd rect (at 3.41 -0.2) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 49 "unconnected-(U1-SPICLK_N-Pad36)") (pinfunction "SPICLK_N") (pintype "unspecified") (tstamp 6a87e077-0818-4618-bf25-3abbacc146cc))
(pad "37" smd rect (at 3.41 -0.6) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 50 "unconnected-(U1-SPICLK_P-Pad37)") (pinfunction "SPICLK_P") (pintype "unspecified") (tstamp 609ed175-56dc-402e-ae48-45ba1b524afa))
(pad "38" smd rect (at 3.41 -1) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 51 "unconnected-(U1-GPIO33-Pad38)") (pinfunction "GPIO33") (pintype "unspecified") (tstamp 1afcfadb-ae11-4804-88f1-914a4c9d1630))
(pad "39" smd rect (at 3.41 -1.4) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 52 "unconnected-(U1-GPIO34-Pad39)") (pinfunction "GPIO34") (pintype "unspecified") (tstamp 6cef4d81-3e15-441b-8bbf-511da9007156))
(pad "40" smd rect (at 3.41 -1.8) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "MOSI16") (pinfunction "GPIO35") (pintype "unspecified") (tstamp 1077caf3-6130-4915-9a16-062011637a86))
(pad "41" smd rect (at 3.41 -2.2) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "SCLK15") (pinfunction "GPIO36") (pintype "unspecified") (tstamp 3a74a0b9-0efe-4280-945d-c12c6577dc23))
(pad "42" smd rect (at 3.41 -2.6) (size 0.66 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "MISO14") (pinfunction "GPIO37") (pintype "unspecified") (tstamp a8ad1141-a40a-40cc-8c77-5b1b8b33ca8a))
(pad "43" smd rect (at 2.6 -3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 53 "unconnected-(U1-GPIO38-Pad43)") (pinfunction "GPIO38") (pintype "unspecified") (tstamp 3f311d96-897b-4e5e-a150-af668618e4a7))
(pad "44" smd rect (at 2.2 -3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 54 "unconnected-(U1-MTCK-Pad44)") (pinfunction "MTCK") (pintype "unspecified") (tstamp 9f22f519-70a3-4ff1-8b79-269b2af16320))
(pad "45" smd rect (at 1.8 -3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 55 "unconnected-(U1-MTDO-Pad45)") (pinfunction "MTDO") (pintype "unspecified") (tstamp e5a6e78f-28f2-43ab-b966-e2e2bce25e4e))
(pad "46" smd rect (at 1.4 -3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 56 "unconnected-(U1-VDD3P3_CPU-Pad46)") (pinfunction "VDD3P3_CPU") (pintype "unspecified") (tstamp 0c539736-d6e3-4767-bd8b-36341fa51837))
(pad "47" smd rect (at 1 -3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 57 "unconnected-(U1-MTDI-Pad47)") (pinfunction "MTDI") (pintype "unspecified") (tstamp a73dfca3-9b36-449e-96fa-9ac6a2c4ad37))
(pad "48" smd rect (at 0.6 -3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 58 "unconnected-(U1-MTMS-Pad48)") (pinfunction "MTMS") (pintype "unspecified") (tstamp e7762f41-206d-443c-9ae5-48a64d433b73))
(pad "49" smd rect (at 0.2 -3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "TXD") (pinfunction "U0TXD") (pintype "unspecified") (tstamp 81d6f4ca-2e09-44ef-93b4-aa3c6d53e5e9))
(pad "50" smd rect (at -0.2 -3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "RXD") (pinfunction "U0RXD") (pintype "unspecified") (tstamp fd6ca981-13a6-435b-b1e8-b90dbde59670))
(pad "51" smd rect (at -0.6 -3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 59 "unconnected-(U1-GPIO45-Pad51)") (pinfunction "GPIO45") (pintype "unspecified") (tstamp ca83435d-fdf0-4f48-8440-d6a5853daeb1))
(pad "52" smd rect (at -1 -3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 60 "unconnected-(U1-GPIO46-Pad52)") (pinfunction "GPIO46") (pintype "unspecified") (tstamp 3a2e966c-d161-489d-a82c-4a4970a8df9a))
(pad "53" smd rect (at -1.4 -3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "XTALN") (pinfunction "XTAL_N") (pintype "unspecified") (tstamp 280fde7b-0570-4087-b543-56ecabdab09d))
(pad "54" smd rect (at -1.8 -3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "XTALP") (pinfunction "XTAL_P") (pintype "unspecified") (tstamp 07566479-a113-48aa-bf35-f781f104e9e2))
(pad "55" smd rect (at -2.2 -3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+3V3") (pinfunction "VDDA") (pintype "unspecified") (tstamp d3e9499a-42d6-44b8-b9db-bb12252f78e5))
(pad "56" smd rect (at -2.6 -3.41) (size 0.2 0.66) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+3V3") (pinfunction "VDDA") (pintype "unspecified") (tstamp ee9224a4-9453-41af-bf5c-70b5a935426e))
(pad "57" smd rect (at 0 0) (size 4 4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "EP") (pintype "unspecified") (tstamp b410dca9-71b9-4335-a813-8988bf7e5eb3))
(model "${EASYEDA2KICAD}/easyeda2kicad.3dshapes/QFN-56_L7.0-W7.0-P0.40-TL-EP4.0.wrl"
(offset (xyz 0 -0 -0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 5e367b95-bce9-4463-8166-ecb8d88d9896)
(at 130.078 69.977001 -90)
(descr "Resistor SMD 0603 (1608 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" "esp32promicro.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/a17c0752-ed95-4936-b94c-aeb57f75a50f")
(attr smd)
(fp_text reference "R2" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 63ee85b7-56a7-4243-b0c4-40ebbdddeaaf)
)
(fp_text value "5k1" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d8a0d79a-7ad8-4b91-a2fb-573e37aacb25)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp dd4ace4d-3a5b-44e6-86bc-0e137ea55c85)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a6e867c-f939-4ee1-9e89-f65242ad2d25))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9837c897-77ce-4cda-9c20-2bb8e79bbc27))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7024abeb-ccd4-42e3-a1e2-5ad47154e697))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 533c15e3-9905-44c5-89f6-0711f8400dc0))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 066c1bef-680f-460d-9e8c-9e1e5be84801))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4f7ca16f-3048-4646-b1fc-5af0a52df8da))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c31e5b59-0927-44ae-9596-d70eec896dba))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f12cd889-48f6-4259-846a-5b0998339834))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e6a4710f-880b-4c54-8a71-65cf9f7e8cb2))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 581e2edd-4f4b-41f4-ad30-8d8a65fcd211))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "Net-(U4-CC1)") (pintype "passive") (tstamp af5baafa-0ef0-4a40-af72-ebd5791c9adc))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 2f51ba0f-b7af-4e4f-aced-0cb1c38aaa09))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "lcsc:SW-SMD_4P-L2.8-W1.9-P1.20-LS3.0_1TS028A" (layer "F.Cu")
(tstamp 74725f67-0c5c-451e-a6b4-032fe2174853)
(at 119.363479 60.76527)
(property "LCSC Part" "C481983")
(property "Sheetfile" "esp32promicro.kicad_sch")
(property "Sheetname" "")
(path "/84c80239-ecb9-4573-98e3-877946c3e443")
(attr smd)
(fp_text reference "SW3" (at 0.021786 -5.548185) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f79897ab-a7b9-4ab6-8c77-e3da108f33cf)
)
(fp_text value "1TS028A-1300-0600-CT" (at 0.622 4.58) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 35d5bc25-e619-4f2d-a1dc-5e5c0db94f62)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ee7af218-f1cb-4459-a3f6-64beb20f5117)
)
(fp_line (start -1.4 -0.04) (end -1.4 0.04)
(stroke (width 0.25) (type solid)) (layer "F.SilkS") (tstamp eb08b5f9-4ce8-4a34-918c-3f44963e01c9))
(fp_line (start -0.8 -1) (end 0.8 -1)
(stroke (width 0.25) (type solid)) (layer "F.SilkS") (tstamp 94c99f10-b071-44ac-bacb-ba76e35c364b))
(fp_line (start -0.8 1) (end 0.8 1)
(stroke (width 0.25) (type solid)) (layer "F.SilkS") (tstamp b61f7322-9a3a-4cfa-adf2-a0bc95f5d25a))
(fp_line (start 1.4 -0.04) (end 1.4 0.04)
(stroke (width 0.25) (type solid)) (layer "F.SilkS") (tstamp 116d5785-df69-4f1d-8870-e4d026092fd8))
(fp_circle (center 0 0) (end 0.46 0)
(stroke (width 0.25) (type solid)) (fill none) (layer "F.SilkS") (tstamp 5eb51ec5-aaac-41ef-91e7-6a86bf3ba460))
(fp_circle (center -1.5 -0.95) (end -1.47 -0.95)
(stroke (width 0.06) (type solid)) (fill none) (layer "F.Fab") (tstamp 1f7a3d3b-b37e-4148-91cb-5bfd07569d43))
(pad "1" smd rect (at -1.5 -0.58) (size 0.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "1") (pintype "unspecified") (tstamp 20b874a4-fa26-4e9a-a7a7-f00bedee84ae))
(pad "2" smd rect (at -1.5 0.58) (size 0.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "IO0") (pinfunction "2") (pintype "unspecified") (tstamp e289ddbe-6736-456d-a28a-7071f6da2549))
(pad "3" smd rect (at 1.5 -0.58 180) (size 0.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 69 "unconnected-(SW3-Pad3)") (pinfunction "3") (pintype "unspecified") (tstamp a1614936-a0c7-4161-ab39-e834a2ed1b4c))
(pad "4" smd rect (at 1.5 0.58 180) (size 0.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 70 "unconnected-(SW3-Pad4)") (pinfunction "4") (pintype "unspecified") (tstamp d580a78b-c6e4-4e8a-b221-73cb4e091f69))
(model "${EASYEDA2KICAD}/easyeda2kicad.3dshapes/SW-SMD_4P-L2.8-W2.1-H0.6-P1.20-LS3.0_1TS028A.wrl"
(offset (xyz 0 -0 -0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 78c3a021-5ec2-418a-a8e6-eb958ca4b70d)
(at 115.807479 58.03427)
(descr "Capacitor SMD 0603 (1608 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" "esp32promicro.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/2d21c3de-e28d-4d05-ae0f-70d3e56392ba")
(attr smd)
(fp_text reference "C3" (at 13.986521 5.97373) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 648e4aaa-5ace-4fa1-8dca-750b7d09cd65)
)
(fp_text value "C" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 02da479b-b1b1-42a2-8fde-b3ed952c065a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp f4a61e6e-6493-4acb-9709-72fe03ab7827)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6c316f67-d0a7-4e3a-8dff-1dd430a13a05))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 08049484-4213-469d-a4f2-6b12e0dae929))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp db0fda57-2f50-4922-b040-5fe547242f45))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 79e03567-91a2-45d2-8d1c-67c2808452c3))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1991b908-155a-4ec6-b298-3ef13dd25b64))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bf11ff56-993d-4a77-9437-cf7ba280edd2))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fd7304d6-c921-43c1-af1e-3dbc0d2ddd50))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3605ca5e-a848-44eb-b4df-2b4899a2fff5))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 697264b8-a455-437b-9f77-58b255fa993d))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5adba50c-622f-4e93-a55d-6caba322eda9))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "RESET") (pintype "passive") (tstamp 56afc300-bb3e-4e92-a5dc-a67db770d480))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 69ee1798-05a2-4fec-bf05-da294d8836db))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 7b8dcf21-9281-4702-aa7c-9c568f4be762)
(at 101.8286 67.3862 -90)
(descr "Capacitor SMD 0603 (1608 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" "esp32promicro.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/621558d0-29b3-4b63-ba26-e532c55f6544")
(attr smd)
(fp_text reference "C8" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df31da25-b6a5-4a05-80a6-3bd2a8346ddd)
)
(fp_text value "C" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 69320517-8d8a-45c8-8233-b6cadacee271)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 38236c38-17fa-473f-abc0-158e551d7fa8)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 48b9b7fa-bd6b-4f11-8891-464dd8bdcb5b))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f35d8d5a-df51-4ea5-a5f7-db089f2c8582))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 304f16cf-de94-49a0-8cc2-98f33efc88c6))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 795a1bea-353e-45b5-a410-78741638943b))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f04d2f3e-909b-4fdd-ac6a-20328d38254c))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 93b784fd-6935-42b0-b5a9-6e65f6b32d88))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e6825460-69e8-4709-a3c7-82b78865e923))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6592e6c1-4e34-45cd-ba8c-bb49a9c1b9c2))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dd1097b6-c5b2-4def-90a7-b7359ca8bf98))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 62f6ce50-5ed1-4161-a829-1c2573bbc610))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 75 "ANTENNA") (pintype "passive") (tstamp 07a05d00-b3d0-45b9-80b6-8f7b98d6af15))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 3e6631d8-a7c4-401b-8a09-872f86be09a1))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 7c6031eb-02e0-4423-bbd9-0aa11ffb4345)
(at 120.0912 67.9196 180)
(descr "Capacitor SMD 0603 (1608 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" "esp32promicro.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/13584e58-3499-4061-bceb-fe7c9dc6ac5e")
(attr smd)
(fp_text reference "C1" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 39620ab4-c6ad-4c33-8418-e93458f5b869)
)
(fp_text value "1u" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 648d0c6c-24a6-4ce9-aaf9-311e0ce488ce)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 7f37951d-d853-45e3-98f4-bf4bf2fd70a2)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 31404a2a-4dc7-43db-9a94-455924d1cf96))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0740b5bd-8826-439f-9888-49ec2e420c02))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6688625c-4fe0-49af-b2bb-085882aeb68b))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aebc44fa-1842-4edf-84ea-c2ea5b948d89))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d942a736-4023-4f37-be6c-d635790e10dc))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cfeb5d19-05bf-4bb7-9dab-06ce3995e01f))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 41df6a30-910b-430c-85c1-a25189be327b))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a6664821-1b5c-4604-b460-12fe0c7edf1c))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2f4c1480-4e51-40f1-8b97-a4a937f8a903))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e0d52ad5-cee2-4e2f-9424-b2f6027d66d3))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+5V") (pintype "passive") (tstamp 08f5ad17-47af-4e75-820f-03440b3fa403))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 4cb33de6-a415-4523-91c4-1408db144eea))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 8918dba2-9900-46be-995a-94823447d1ca)
(at 114.1476 67.9196)
(descr "Capacitor SMD 0603 (1608 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" "esp32promicro.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/0d6f941d-7f70-4213-a2dc-1b63f1739d63")
(attr smd)
(fp_text reference "C6" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4cb9c91a-7eb1-45aa-8d48-69e714b47ea6)
)
(fp_text value "C" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ccc2eca8-e4b2-4be3-aa61-2d577f3b74d6)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp ea757042-01a2-4d4c-b2b1-26b4ace75b5d)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 53d826b3-183b-4b62-a382-9298b8a797ad))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ba7a5d7-5302-409f-9e6d-2d2b75d1acee))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)