This repository has been archived by the owner on Nov 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathEsp32-Mic.kicad_pcb
14284 lines (14234 loc) · 580 KB
/
Esp32-Mic.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1)
)
(paper "A5")
(title_block
(title "Esp32-Mic")
(date "2022-07-28")
(rev "1.0")
)
(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") (color "Black") (material "Direct Printing"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "White") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 0.91) (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") (color "White") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "Black") (material "Direct Printing"))
(copper_finish "HAL lead-free")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "C:/Users/mechrev/Desktop/Mic/")
)
)
(net 0 "")
(net 1 "/EN")
(net 2 "GND")
(net 3 "+3V3")
(net 4 "/USBIN")
(net 5 "BAT")
(net 6 "/D2")
(net 7 "/D3")
(net 8 "/SDCMD")
(net 9 "/SDCLK")
(net 10 "/D0")
(net 11 "/D1")
(net 12 "Net-(Card1-Pad9)")
(net 13 "Net-(D1-Pad1)")
(net 14 "Net-(D2-Pad1)")
(net 15 "/GPIO0")
(net 16 "+5V")
(net 17 "/RXD")
(net 18 "/TXD")
(net 19 "unconnected-(J3-PadA5)")
(net 20 "unconnected-(J3-PadA6)")
(net 21 "unconnected-(J3-PadA7)")
(net 22 "unconnected-(J3-PadA8)")
(net 23 "unconnected-(J3-PadB5)")
(net 24 "unconnected-(J3-PadB6)")
(net 25 "unconnected-(J3-PadB7)")
(net 26 "unconnected-(J3-PadB8)")
(net 27 "/WS")
(net 28 "/SCK")
(net 29 "/DIN")
(net 30 "Net-(R8-Pad1)")
(net 31 "Net-(R8-Pad2)")
(net 32 "Net-(R9-Pad1)")
(net 33 "Net-(R9-Pad2)")
(net 34 "/BATIN")
(net 35 "/BATADC")
(net 36 "/STDBY")
(net 37 "/CHRG")
(net 38 "/PROG")
(net 39 "unconnected-(SW1-Pad1)")
(net 40 "unconnected-(U1-Pad14)")
(net 41 "unconnected-(U1-Pad9)")
(net 42 "unconnected-(U1-Pad7)")
(net 43 "unconnected-(U1-Pad5)")
(net 44 "unconnected-(U1-Pad4)")
(net 45 "unconnected-(U1-Pad16)")
(net 46 "unconnected-(U1-Pad17)")
(net 47 "unconnected-(U1-Pad18)")
(net 48 "unconnected-(U1-Pad19)")
(net 49 "unconnected-(U1-Pad20)")
(net 50 "unconnected-(U1-Pad21)")
(net 51 "unconnected-(U1-Pad22)")
(net 52 "unconnected-(U1-Pad27)")
(net 53 "unconnected-(U1-Pad28)")
(net 54 "unconnected-(U1-Pad29)")
(net 55 "unconnected-(U1-Pad30)")
(net 56 "unconnected-(U1-Pad31)")
(net 57 "unconnected-(U1-Pad32)")
(net 58 "unconnected-(U1-Pad33)")
(net 59 "unconnected-(U3-Pad9)")
(net 60 "Net-(TOUCH1-Pad1)")
(net 61 "unconnected-(U1-Pad26)")
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 01231d31-0d7b-48e6-8f4f-3219920cb150)
(at 108.331 64.389 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "MPN" "C1525")
(property "Sheetfile" "Esp32-Mic.kicad_sch")
(property "Sheetname" "")
(path "/69d2378e-9aa7-4d1f-9757-b40ea2d0a3f6")
(attr smd)
(fp_text reference "C5" (at 2.54 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7d77a511-e150-4378-82bf-6fd3a5a3b532)
)
(fp_text value "0.1uf" (at 0 -1.016 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd2b4a77-a568-435f-abf4-361a36b74824)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp e2899122-62e3-44ad-86a3-ce5e0530fbc6)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp 2a082ee2-305a-48f2-832c-cf4ce524b9ac))
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp 8b76997e-baab-4bff-be3a-5a9a133d9fd5))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 33df8b31-e7b3-4827-83d0-b14dec653b09))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp aa56e8cc-a28d-47b5-9bb5-a82522d7c4a3))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp abaa1381-5e9f-4f69-bbd3-27776632f810))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp d3219717-1409-4b12-af62-b3713a3ab5a2))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 2bc787f9-bea0-4cdd-b9e6-f11817fe858b))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 31a9ce21-3157-4ac2-b133-4d41f79cb4d2))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 947e0311-7544-4fec-9421-ac4581950df8))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp bac525cb-6e82-4def-9a3b-cae60a21d03b))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp 3dc93230-b887-4790-9603-02144dbbeb34))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 9b9136f1-f31a-4ce7-8ca0-8d042456d5f4))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "ics43434:ics43434" (layer "F.Cu")
(tedit 0) (tstamp 03b42a8e-fb27-4b71-b45c-1daa425799c6)
(at 110.617 64.28 90)
(property "Sheetfile" "Esp32-Mic.kicad_sch")
(property "Sheetname" "")
(path "/ca77f1d6-3076-40f7-8be3-cf1cf2910028")
(attr smd)
(fp_text reference "RMIC1" (at 3.701 -0.762 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b1d40f53-70e5-4428-9060-8a2d679d128b)
)
(fp_text value "ics43434" (at 0.78 -0.762 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b33dc171-775f-437e-aef3-e9c6477627f5)
)
(fp_text user "${REFERENCE}" (at 0.78 0.738 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 74a17a46-192f-427e-9b27-deac92112841)
)
(fp_line (start -2.56 1.225) (end -2.56 1.425) (layer "F.SilkS") (width 0.12) (tstamp 63428027-167c-4732-b11a-1c7b4e1b6cee))
(fp_line (start 1.14 -1.425) (end 0.94 -1.425) (layer "F.SilkS") (width 0.12) (tstamp 6da0cb14-673f-4739-a767-36fe7386b822))
(fp_line (start 1.14 -1.425) (end 1.14 -1.225) (layer "F.SilkS") (width 0.12) (tstamp 73a11bb9-e0c7-4899-b060-2440f404bf17))
(fp_line (start 0.94 1.425) (end 1.14 1.425) (layer "F.SilkS") (width 0.12) (tstamp 79c5a94b-9297-4e96-a931-335e31c6f6ee))
(fp_line (start -2.36 -1.425) (end -2.56 -1.425) (layer "F.SilkS") (width 0.12) (tstamp 914a56f1-b9e3-41d7-96c3-38b6f47957cf))
(fp_line (start 1.14 1.225) (end 1.14 1.425) (layer "F.SilkS") (width 0.12) (tstamp 9dfa8dfa-53fd-419c-a9a4-f164ec9ba42d))
(fp_line (start -2.56 1.425) (end -2.36 1.425) (layer "F.SilkS") (width 0.12) (tstamp c20c8187-319c-4256-a93b-0de6bf16efe3))
(fp_line (start -2.56 -1.425) (end -2.56 -1.225) (layer "F.SilkS") (width 0.12) (tstamp dc199ac1-8609-439f-9b98-c99c2091caf3))
(pad "" np_thru_hole circle (at 0 0 90) (size 0 0) (drill 0.6) (layers F&B.Cu *.Mask) (tstamp d69cec92-e3d9-4b5d-b50a-d9d570d2c3d2))
(pad "1" smd rect (at -2.074 0.9 90) (size 0.522 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "/WS") (pinfunction "WS") (pintype "input") (tstamp 0a1f3552-388a-47cd-a3b4-0007f8476ce4))
(pad "2" smd rect (at -1.252 0.9 90) (size 0.522 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+3V3") (pinfunction "LR") (pintype "input") (tstamp f2db0e61-ecf6-4fb7-9305-fca1a8d90675))
(pad "3" smd custom (at 0 0 90) (size 0 0) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in")
(options (clearance outline) (anchor circle))
(primitives
(gr_arc (start 0.6625 0) (mid -0.6625 0) (end 0.6625 0) (width 0.3))
) (tstamp c7123b3b-533d-4aaa-acdb-8eb0d06f4922))
(pad "4" smd rect (at -1.252 -0.9 90) (size 0.522 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "/SCK") (pinfunction "SCK") (pintype "input") (tstamp 396bc3d8-89ac-436c-b464-401751db2f2b))
(pad "5" smd rect (at -2.074 -0.9 90) (size 0.522 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp 77e1a03b-ab12-47a7-a9cc-a7df20bf9dcb))
(pad "6" smd rect (at -2.074 0 90) (size 0.522 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "/DIN") (pinfunction "SD") (pintype "output") (tstamp 7e32b657-6b5f-4918-9e4e-e88d10666388))
(model "${KIPRJMOD}/ics43434/ICS-43434.stp"
(offset (xyz -0.7 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 90))
)
)
(footprint "ics43434:ics43434" (layer "F.Cu")
(tedit 0) (tstamp 07942bea-a566-4da6-b114-979953cc4935)
(at 84.212 64.28 90)
(property "Sheetfile" "Esp32-Mic.kicad_sch")
(property "Sheetname" "")
(path "/c103b08a-7496-4464-91f3-abf169b25fa7")
(attr smd)
(fp_text reference "LMIC1" (at 2.05 0.497 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c026fed6-3e28-4af4-907d-ac8ddb61c50b)
)
(fp_text value "ics43434" (at 0 1.005 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a605610-fc36-4cf3-98a3-72c0e072e514)
)
(fp_text user "${REFERENCE}" (at 0.018 -0.519 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 91d0cac6-6eb2-426f-871a-08bd0406db46)
)
(fp_line (start 0.94 1.425) (end 1.14 1.425) (layer "F.SilkS") (width 0.12) (tstamp 047fd319-4f77-4149-8a16-73f5a8fdefb1))
(fp_line (start 1.14 -1.425) (end 0.94 -1.425) (layer "F.SilkS") (width 0.12) (tstamp 2d51eae7-338f-4cab-8e01-05531bbd8f9d))
(fp_line (start -2.56 -1.425) (end -2.56 -1.225) (layer "F.SilkS") (width 0.12) (tstamp 847ffe9c-98e2-4f7b-b4f0-b94000d2034f))
(fp_line (start 1.14 1.225) (end 1.14 1.425) (layer "F.SilkS") (width 0.12) (tstamp 85d5b505-d60d-4d1f-aaf6-8c3b6992adf1))
(fp_line (start -2.36 -1.425) (end -2.56 -1.425) (layer "F.SilkS") (width 0.12) (tstamp a038e903-d8a8-4134-b961-d0d8d99ecb08))
(fp_line (start -2.56 1.425) (end -2.36 1.425) (layer "F.SilkS") (width 0.12) (tstamp a7911c0d-9d75-4a45-9357-457f9a6b4a31))
(fp_line (start 1.14 -1.425) (end 1.14 -1.225) (layer "F.SilkS") (width 0.12) (tstamp c0e2a3f7-a7f2-4983-82bb-6654d7843b16))
(fp_line (start -2.56 1.225) (end -2.56 1.425) (layer "F.SilkS") (width 0.12) (tstamp e61e8f33-3e30-4fb2-9d55-da35ad459af6))
(pad "" np_thru_hole circle (at 0 0 90) (size 0 0) (drill 0.6) (layers F&B.Cu *.Mask) (tstamp 0727e077-0571-4bd8-9fd7-e159a69f6b75))
(pad "1" smd rect (at -2.074 0.9 90) (size 0.522 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "/WS") (pinfunction "WS") (pintype "input") (tstamp 8dc46b08-b7e4-4e98-bb85-40ead2cf1fb5))
(pad "2" smd rect (at -1.252 0.9 90) (size 0.522 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "LR") (pintype "input") (tstamp 0769da5d-005e-479e-9c75-08680f264301))
(pad "3" smd custom (at 0 0 90) (size 0 0) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in")
(options (clearance outline) (anchor circle))
(primitives
(gr_arc (start 0.6625 0) (mid -0.6625 0) (end 0.6625 0) (width 0.3))
) (tstamp 9a4bb925-125c-42f3-8518-03bc228e5018))
(pad "4" smd rect (at -1.252 -0.9 90) (size 0.522 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "/SCK") (pinfunction "SCK") (pintype "input") (tstamp 93cbdf59-df69-4f80-bf75-aa64d5232ade))
(pad "5" smd rect (at -2.074 -0.9 90) (size 0.522 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp d2f9ad6b-4345-4548-bb97-d4026eeed5d0))
(pad "6" smd rect (at -2.074 0 90) (size 0.522 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "/DIN") (pinfunction "SD") (pintype "output") (tstamp 132d1221-4260-42ae-8d96-88bc4b2204a2))
(model "${KIPRJMOD}/ics43434/ICS-43434.stp"
(offset (xyz -0.7 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 90))
)
)
(footprint "Resistor_SMD:R_2512_6332Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 294f49f0-5f9d-4306-93c3-a1e73cf9c43b)
(at 118.872 81.28 180)
(descr "Resistor SMD 2512 (6332 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 "MPN" "C421561")
(property "Sheetfile" "Esp32-Mic.kicad_sch")
(property "Sheetname" "")
(path "/f6351be7-becf-4a28-a182-59296745b28c")
(attr smd)
(fp_text reference "R15" (at 0.381 0.635 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 95da4ad3-99ae-46d4-a5ef-91e7205d1d97)
)
(fp_text value "0.4" (at 0.127 0.635 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6ecfdda2-9f95-41c2-87d4-b304af154fdd)
)
(fp_text user "${REFERENCE}" (at 0 -1.016 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9168b265-fa18-44da-a640-601e7b3a5e92)
)
(fp_line (start -2.177064 -1.71) (end 2.177064 -1.71) (layer "F.SilkS") (width 0.12) (tstamp 5b2363b9-2107-47f3-aea7-a7ef6bbddb9d))
(fp_line (start -2.177064 1.71) (end 2.177064 1.71) (layer "F.SilkS") (width 0.12) (tstamp cdf01ded-a0e2-4b1e-aead-01d19db9dd9f))
(fp_line (start 3.82 1.92) (end -3.82 1.92) (layer "F.CrtYd") (width 0.05) (tstamp 2de4b684-c59b-4ec4-824a-76d7e86f71b7))
(fp_line (start -3.82 1.92) (end -3.82 -1.92) (layer "F.CrtYd") (width 0.05) (tstamp 5e644639-7b21-4c89-ba53-e0150b7b68b9))
(fp_line (start -3.82 -1.92) (end 3.82 -1.92) (layer "F.CrtYd") (width 0.05) (tstamp a99587c5-a315-4c37-9071-b9a50fec64b9))
(fp_line (start 3.82 -1.92) (end 3.82 1.92) (layer "F.CrtYd") (width 0.05) (tstamp d4d2c127-b196-4edd-8d91-47661fdb40d8))
(fp_line (start 3.15 -1.6) (end 3.15 1.6) (layer "F.Fab") (width 0.1) (tstamp 23b7078e-036f-4b71-abb1-4c7acdc6a87b))
(fp_line (start 3.15 1.6) (end -3.15 1.6) (layer "F.Fab") (width 0.1) (tstamp 6101e318-28e7-432d-9c9f-0876cfc15b4f))
(fp_line (start -3.15 -1.6) (end 3.15 -1.6) (layer "F.Fab") (width 0.1) (tstamp 9bd535a5-eab1-43bc-ba7e-a83d2c6bcdb1))
(fp_line (start -3.15 1.6) (end -3.15 -1.6) (layer "F.Fab") (width 0.1) (tstamp a3a0d425-de06-4ac2-9c23-b379c0d71b98))
(pad "1" smd roundrect (at -2.9625 0 180) (size 1.225 3.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2040816327)
(net 16 "+5V") (pintype "passive") (tstamp 4cb9e48a-2742-4039-a39e-1add3650a8e2))
(pad "2" smd roundrect (at 2.9625 0 180) (size 1.225 3.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2040816327)
(net 4 "/USBIN") (pintype "passive") (tstamp 949bc0e8-abee-4d06-80f6-a2f33bb7701a))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_2512_6332Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 2a34d4b0-4d0f-4bc5-9f36-5a14d6aef9dd)
(at 86.233 59.182 -90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "MPN" "C1525")
(property "Sheetfile" "Esp32-Mic.kicad_sch")
(property "Sheetname" "")
(path "/aaa08231-0aed-4745-8582-1c8fe1411640")
(attr smd)
(fp_text reference "C1" (at 0.381 2.794 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d9bcf873-ff23-4f0f-a44e-b1f627d07670)
)
(fp_text value "0.1uf" (at 0.889 2.794 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f4cdae6d-cbe3-42cc-8191-7601ecdfbe08)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 062f69e7-a978-49b8-a0e5-5c6503bb3764)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp 2ad66fb7-623d-4355-8364-a5e4e6b4749f))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp 63b2a5c2-d6c5-4e58-ad1a-307b12cfb0f9))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 18605218-9277-4a0b-ab80-5a3657c339a6))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 80e2d10a-1b9a-4e14-83b6-e57e1a0c3202))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp af1c121d-e940-407b-bbcf-942b24e4d431))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp c92a0915-d2f7-4776-bdc6-644f6614ca98))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 5401fc82-2481-40e8-b750-f6a87863f46e))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 7187a895-723c-4c01-9474-1e4f930d14b4))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp b328862b-e11e-4e01-99f5-e24ae912fd79))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp b42cdf26-2973-4d06-9e94-d7f4b2cc3d87))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "/EN") (pintype "passive") (tstamp 99192765-9b1d-4aa6-8852-0dacafa37607))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp ea999b89-b9bb-417a-aa5d-95940d9f594f))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 3013595a-2b80-4216-9e5a-e73c7c2101f6)
(at 107.696 73.406 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 "MPN" "C25804")
(property "Sheetfile" "Esp32-Mic.kicad_sch")
(property "Sheetname" "")
(path "/fee24bd6-5efc-4733-9a75-9f84e4b384cd")
(attr smd)
(fp_text reference "R6" (at 0 1.524 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1dfe070a-dbeb-4e7f-a649-d3ae2d3f6c33)
)
(fp_text value "10k" (at 0 -1.905 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b943ef35-17bd-42dc-84e1-141a00e5f9af)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 9c480c90-1008-4abf-b6d0-97dcb41c5b4e)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 583da0d3-7e35-424a-bbc4-03269dc762af))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp e9530c7b-a368-4856-997b-bc9e5c1d7fd7))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 80951f9a-98c1-4cc7-919b-88a6313317cf))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a8ef39dd-a1ee-43c6-900b-ddd38390b4ad))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d88b01a6-3a3a-4ff9-8c46-56f0c7a6ac1c))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp fa90e9e3-a743-4020-8622-f8439bf839db))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 61bd3645-bcc2-43af-bbb4-b667e5c0beee))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 7a72f01e-a12c-4698-91e1-5d460987369c))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp bb19d290-d464-4a60-ab39-6bb5c76ba3d0))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp c91bb62f-c142-4105-9cff-62a9a2366683))
(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 3 "+3V3") (pintype "passive") (tstamp 2226cbbe-ca9b-42e2-8c5c-a9f81f37ffae))
(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 15 "/GPIO0") (pintype "passive") (tstamp 86736a0d-9ac5-433e-9b80-d19c2ee9ce73))
(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")
(tedit 5F68FEEE) (tstamp 39e56650-c48f-4fc3-adaf-b489704fffe2)
(at 107.696 78.74 -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 "MPN" "C21190")
(property "Sheetfile" "Esp32-Mic.kicad_sch")
(property "Sheetname" "")
(path "/92b3f036-3f8d-493e-92ef-872c8151b4d2")
(attr smd)
(fp_text reference "R8" (at -6.985 9.906 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e4be2e99-efff-43bc-836e-b185b87502b6)
)
(fp_text value "1k" (at -2.54 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6e173d2f-fa69-4818-9d0c-82ad1c15eb83)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp dbb1733d-2f43-4c19-b6f3-29318e6a85db)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 78f92f6a-ced5-4526-b2c0-e6b4c2d04ea5))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 984a4532-9443-4215-920d-1d3577cdb9c6))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5acd6200-fc68-4edd-bbd6-406a68af5708))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5d1b2c5f-6128-4f1c-93b4-3cdaed23225e))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 84ca6eee-35af-465e-a5a1-080e1240fade))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 90962a01-14c4-42d2-85e2-e8c0892f636e))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 971bf17a-209e-4125-ac8a-643762104d76))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp a809654e-cf78-4331-8ced-1e9adacfb4d6))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp e2c00901-bed3-41b5-87db-790abcc523b8))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp fda9c09b-dce1-460f-a854-7627d22f1f57))
(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 30 "Net-(R8-Pad1)") (pintype "passive") (tstamp 1bc56735-06b8-4913-8654-689d94844ee3))
(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 31 "Net-(R8-Pad2)") (pintype "passive") (tstamp b4b415a3-c93e-4ab1-8cb0-9b49c3993252))
(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 "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 458caf3c-edff-49ad-b22c-9d0142a7344a)
(at 110.998 81.788 -90)
(descr "LED SMD 0603 (1608 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 "MPN" "C72041")
(property "Sheetfile" "Esp32-Mic.kicad_sch")
(property "Sheetname" "")
(path "/344116a5-3896-414f-8a18-6753ca12f230")
(attr smd)
(fp_text reference "D2" (at -5.461 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e76ee6c6-117f-4a78-a1c3-63beb1cbd408)
)
(fp_text value "CHRG" (at 4.191 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b528f9ed-5273-406c-8bdb-fd40317b4ed8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 2431cf28-b366-46c0-a92c-e9084e67ef9e)
)
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 02466aa5-5025-449b-9694-8b1bd4f1d810))
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp a6a2e5cc-1bf2-446b-96a3-05bd4a12ac15))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp e8057311-9ee7-4dfc-9c6b-c0d686be1e8b))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 08af5bd0-98a7-4c91-91bc-e8de47e68485))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 12a9b8f5-4f90-450b-87b4-a5ec8b445f6b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8a349f7a-10c7-4565-ab83-e00e9240a83c))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f44b5679-0928-405c-a4bb-f74d17163d66))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 16e6190a-f9ee-459f-aca3-6b72b034b50a))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 275f610c-ed20-490a-af5c-c70dee504ef3))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 59b1b009-3aea-41fe-8b6b-65281eb55e73))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 8dbd1e22-0459-4cda-bc30-7db47d8067bc))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 91a8c13b-22f6-470d-bb17-c9efc59861c3))
(pad "1" smd roundrect (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "Net-(D2-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 3250b1ce-c348-485a-8222-8b04ef3a8ad6))
(pad "2" smd roundrect (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/USBIN") (pinfunction "A") (pintype "passive") (tstamp 93ba4263-345c-4264-978c-9d4b10b9d894))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 47e0bedb-f302-4968-a519-1fe4876952a0)
(at 81.672 65.169 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "MPN" "C1525")
(property "Sheetfile" "Esp32-Mic.kicad_sch")
(property "Sheetname" "")
(path "/42eafdd3-693d-44f3-94b0-8ed27a0232d6")
(attr smd)
(fp_text reference "C2" (at 2.177 0.116 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 97727346-ec7c-425e-bc9c-e7606b6d6c39)
)
(fp_text value "0.1uf" (at -3.03 -0.011 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2c9fd597-3aa4-4654-94f9-7cef8fc73998)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp b0f0a781-d2d2-42ac-acd8-438ce216b9fa)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp 8a781b5e-3db5-4d78-a4df-d20412b28504))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp bd69c01d-b54a-41ce-87a3-ebf621c19d7a))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 0420832a-b740-434b-a6c9-e1cc5bfc25b3))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 8a9931b1-7966-4cbe-af68-16d4cde0dc0e))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp c1364c86-3adf-48d4-a6ef-1f023336b605))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp df5925e6-7419-4b3c-9b91-a92f06f449e9))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 054510c0-d276-4e1d-8fe0-e800c5d540e3))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 47289054-c4d0-4633-85e0-b93fbbb778b1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp d76f763f-2dbb-4f99-971f-010b1b4651fa))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp ea4e9dad-de9b-4ed4-bfe0-3177a48a014d))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp 277054a9-4917-4d1e-938e-a866b92e7744))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 07385848-b245-42d5-b496-eec25bb7b1b7))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 4a28cd0c-6c57-4321-a499-859beecb5922)
(at 115.443 71.374 -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 "MPN" "C25804")
(property "Sheetfile" "Esp32-Mic.kicad_sch")
(property "Sheetname" "")
(path "/2790880c-3541-4436-bd86-14ad157b90a3")
(attr smd)
(fp_text reference "R7" (at -1.016 -6.096 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 499958b1-5e46-47e5-bdb8-9f3cd20b893e)
)
(fp_text value "10k" (at 2.921 1.524 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1d1c6f04-fbd4-41fc-8608-2c7131efa2b5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 64896375-8f90-45a7-add8-44289cb991b2)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 8d6450fb-370d-4310-b4f6-a574b5d23aa5))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp cdec0a53-42e1-4358-b9d7-1393e1a14621))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0a01e527-1c66-4f97-9a22-be202b6d6d7f))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 66617acc-289c-4510-b84d-a9433e333ced))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 75b978bc-9b7e-44db-8fab-b2e72f7df20c))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp dbd234d7-a0d4-4c60-83bf-abcf9ab520b5))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 33464f78-5aea-4856-a57d-dd624d14235b))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 5f62801a-9ab1-4b13-b88e-2bafb7cbabd3))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp d682cd4e-0889-4c88-a846-7fef2d140820))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp f119792a-063e-4636-8a32-bee2a3461210))
(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 12 "Net-(Card1-Pad9)") (pintype "passive") (tstamp e6805eaf-7d3e-4ba0-bd1f-7a7f8087625a))
(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 196c4368-18f2-4366-ab80-159f48451d61))
(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")
(tedit 5F68FEEE) (tstamp 4e804d7f-52e4-4403-a47d-e16b82999f1d)
(at 109.347 78.74 -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 "MPN" "C21190")
(property "Sheetfile" "Esp32-Mic.kicad_sch")
(property "Sheetname" "")
(path "/4196a9c3-5f5b-46af-9a45-bed7245b9105")
(attr smd)
(fp_text reference "R16" (at -7.493 10.16 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 63fb31d1-7cfa-4d0e-9a9f-7b4e3615f2f9)
)
(fp_text value "1k" (at -2.54 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ae309533-8fb1-4c8e-879d-1ab5afe9154f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp af780ad3-1243-4352-9f58-c4bd86e6aea6)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 703db818-06e3-4d1e-847b-f0ddcba2943b))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 861ade1d-6828-4dc0-ab62-1a2c94bd2934))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0430812b-ce18-421d-9124-8c22508bface))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a462c179-611d-4132-a476-b6b229812c1d))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e53c5b06-ddb3-4e9f-836b-b44f6dc7bc78))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e7d5b8d1-f1c6-4872-8224-f046b6094a7b))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 0967131a-3d4a-4d22-9ea5-4b270ae97948))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 5b5229e3-fe34-4543-a98d-fe2befc28452))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 66738956-8f06-4eb3-8faf-a785fd9c5dfc))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp f89da955-e1b5-4b67-94f7-291d22328253))
(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 36 "/STDBY") (pintype "passive") (tstamp 6e6c0bad-b1e7-4325-aa18-69bf3c31e3c2))
(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 13 "Net-(D1-Pad1)") (pintype "passive") (tstamp a1a7ed36-d2a9-405b-96cf-c9a4fd0eddeb))
(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")
(tedit 5F68FEEE) (tstamp 50af1f57-9e6d-4dfe-af6c-2c25dfe623d4)
(at 84.963 59.563 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 "MPN" "C25804")
(property "Sheetfile" "Esp32-Mic.kicad_sch")
(property "Sheetname" "")
(path "/88047cc4-78a0-4d99-b0d0-9ca4c621a94b")
(attr smd)
(fp_text reference "R1" (at 0 -2.921 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f3234b9d-9409-4467-9e21-dc1483590c49)
)
(fp_text value "10k" (at 0.254 -2.921 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 71342dd1-18d0-4020-b380-4cdc083713ea)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 437f3116-2157-4805-bcff-d115dca0c7e6)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 77e7d52a-e4ae-4f3a-a464-2fa521c536a9))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp d9e75a5f-13ab-4d17-a254-fab826120171))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 62d4d164-ed40-4620-a2ed-570b88a9b090))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 76abb4e0-51e1-4230-ae85-909bf993af79))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 834b2326-71bf-4d0f-910c-ecef197946a8))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp cba799c5-a5ba-46c3-83f5-49732003bbdd))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 3321866b-8686-41a1-bd05-62565d2fbf2c))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 34ad721c-1ff8-4673-ad44-33a1b930cc7b))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp c0b436fb-f7e5-4c9c-94c2-459523c2aaa6))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp d426e4c4-fea8-4c4e-b7d4-50bd61ff9f90))
(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 3 "+3V3") (pintype "passive") (tstamp 912e4241-5343-444c-9458-c208a0b10a5a))
(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 1 "/EN") (pintype "passive") (tstamp 36c5f655-009a-4777-a661-1f30c2e6b57d))
(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")
(tedit 5F68FEEE) (tstamp 5257fc66-9178-48fe-9347-89030e7445d6)
(at 115.443 59.436 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 "MPN" "C25804")
(property "Sheetfile" "Esp32-Mic.kicad_sch")
(property "Sheetname" "")
(path "/b4d11d3c-591e-4994-af3b-799365a77388")
(attr smd)
(fp_text reference "R3" (at 2.413 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ab612210-0f5d-4e51-b0f1-7d7577bab6b8)
)
(fp_text value "10k" (at 2.921 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3ca0e537-e3c6-4c90-ab35-5a3416444faa)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 59ee7699-0d6f-41b7-bcfb-1e9c7be111dc)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp f708a097-6b95-4796-9553-a47d2abd72cc))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp fa14125d-fa3e-491e-bcb0-4c5639749c87))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 24f5743d-5ca4-4d26-96cb-5aa99e224252))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b246408f-730b-47d1-bbc4-6dc1cb92707a))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp bf9e82be-209b-44b8-9bbf-a035cff5b8a0))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp df742c4c-1879-442f-a630-02f31cee24a4))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 03fbeb42-9b6b-4136-93c4-44e9a160fa9a))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 7a872caa-dc7b-4232-a116-9c0b991bdcef))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 86f105d9-01b5-459c-a468-362a712da747))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 9bdaf72b-f0d3-45a7-9cdc-d2baf97205f1))
(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 6 "/D2") (pintype "passive") (tstamp 791c8b17-31e6-4183-bf73-795b1cbfc3ee))
(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 3 "+3V3") (pintype "passive") (tstamp 89f4f727-9b6d-422a-8d44-929646241dd2))
(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")
(tedit 5F68FEEE) (tstamp 6574c0b5-9114-4ba9-908b-9707896f0f47)
(at 84.836 70.231 -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 "MPN" "C25803")
(property "Sheetfile" "Esp32-Mic.kicad_sch")
(property "Sheetname" "")
(path "/e8aaf70e-5392-4c71-a755-1dfcc5cd5372")
(attr smd)
(fp_text reference "R12" (at 0 -1.43 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 83901c56-af40-4dbc-9639-efcb93c33086)
)
(fp_text value "100k" (at 3.429 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 822282a0-9e3c-45f0-ba8e-ef68dd144cfe)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 4447af8b-c411-48f9-b3c1-447d5f213878)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 26708745-1d2e-455f-8d78-33fcecaaeca5))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 408a3ab4-2643-4782-9353-3793047e4980))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 181cd425-1045-446c-86ac-e5e309dc7d3d))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 508b747a-9e47-464f-800d-7db2c3d071be))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 98ccd2a2-9f28-48cc-bfd2-2b3011bb0077))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp eb085f0d-054f-42d4-abb4-d031eb68a056))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 00c52876-d5ef-47d1-a48b-e4e65616255b))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 0a3355fa-89ea-41b2-84ac-b7b7cedb441a))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 99edb37a-add2-4a63-ba77-a58d45199108))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp cb11d546-fe78-4baa-baf5-a94336c82e99))
(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 29 "/DIN") (pintype "passive") (tstamp 863fdce0-b490-4b5a-b1b2-53cbcd5b304a))
(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 4fba9850-f4a6-4b83-a03f-7d7fa2bbbdd5))
(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 "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 6be10ffc-34f8-4e27-96ca-2e7f43c884e1)
(at 107.696 81.788 90)
(descr "LED SMD 0603 (1608 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 "MPN" "C72041")
(property "Sheetfile" "Esp32-Mic.kicad_sch")
(property "Sheetname" "")
(path "/5b69210d-feab-4811-8a47-afbe0d4c073d")
(attr smd)
(fp_text reference "S2" (at 5.461 -0.127 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e4c4e601-7cc8-43ae-8121-e3faefcd3ef8)
)
(fp_text value "S2" (at -3.175 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2c1e0e64-0769-4b25-9b44-6bb5e971930e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 3aeda390-af88-4bc4-bc5d-50aa6878c675)
)
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 22a5abc4-24d8-48bf-bc8c-2057c98f5f49))
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 7e788411-ec02-4231-88a3-d2676a9f64b5))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp a7c4c29d-7f17-430f-8011-96a2a5090630))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1175f98b-47af-41e5-9ca7-505dce79ab81))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 45123e2f-f221-4df0-9839-5a2f67fac2ea))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c58ac171-3185-4b6d-b432-6f8352ea17c2))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f169ef5b-604a-428e-b88e-800b56457a6a))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 24efd067-2e0b-4cd1-aa0c-a7539914291d))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 47e9f28d-723e-4634-9d67-94b7c2f629e0))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 9a5eff05-870a-48a7-aab5-edc79e12569d))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp a37664a8-4fb3-4658-a1bf-b391fdf813b4))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp bff1d4e4-86bf-4cad-8968-a8cda9787ef4))
(pad "1" smd roundrect (at -0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp a45ac4e1-23cf-4817-b0c2-8975e90287bc))
(pad "2" smd roundrect (at 0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "Net-(R8-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 4698a0b7-fa3f-40f3-b4a6-01b81360c20c))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_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")
(tedit 5F68FEEE) (tstamp 70d99131-8dcb-4503-b7f7-4cbb52c51883)
(at 114.676 63.754)
(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 "MPN" "C25804")
(property "Sheetfile" "Esp32-Mic.kicad_sch")
(property "Sheetname" "")
(path "/87597e2a-eddb-4c46-96b5-7a4fe8ae644c")
(attr smd)
(fp_text reference "R10" (at 4.831 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 01371722-9bb2-48cc-9230-7b725642200c)
)
(fp_text value "10k" (at 4.45 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e297d6b4-0ab3-4926-a55e-475dbe9ebd31)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 4d5faf71-98dc-417c-bdfa-c440ab38e022)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 507a01fc-ae8b-4e50-811e-1d9df8c4eff7))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp acca1f68-9219-470c-8b3f-1e1d0fba5e84))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1801513f-97e8-451e-a599-62152c0c38bc))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5cdedd3f-64c6-4cd1-809c-4280056973b2))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8d012213-b396-40ec-8db4-fbacff5290f7))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9c1c2362-b3ee-4ddd-ae5e-a116735c24f6))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 14f6e491-e421-49d8-92b5-fb673343ce9c))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 1ad9a484-ddbd-4b50-b01e-0cc5f9acff46))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 2a2fcd8a-e76f-4620-a738-be7728950c04))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 5c440f22-13d8-4661-afaf-886e4115e93d))
(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 3 "+3V3") (pintype "passive") (tstamp 1d562bf4-55d7-4c7d-92bf-8891553fa118))
(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 8 "/SDCMD") (pintype "passive") (tstamp c2d95016-7d71-4f5e-b7ac-1b871ecae338))
(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 "Espressif:ESP32-WROOM-32E" (layer "F.Cu")
(tedit 60F56BFF) (tstamp 74629e67-3623-42b5-86d9-8c2726b8e460)
(at 96.774 62.992)
(descr "ESP32-WROOM-32E and ESP32-WROOM-32UE: https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32e_esp32-wroom-32ue_datasheet_en.pdf")
(tags "ESP32")
(property "MPN" "C701341")
(property "Sheetfile" "Esp32-Mic.kicad_sch")
(property "Sheetname" "")
(path "/1755239e-37fe-49f2-b1e3-beb4dd60ba43")
(attr smd)
(fp_text reference "U1" (at -4.445 -3.556) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 42f48a1b-e29d-43e2-9f93-7f20505a0e7b)
)
(fp_text value "ESP32-WROOM-E" (at 0 5.969) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 254696d3-e17b-4b36-86cf-1951aaf7f90e)
)
(fp_text user "Antenna Area" (at 0 -11.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6f910b75-7c40-4bb4-94c8-125195a59e1e)
)
(fp_text user "Antenna Area" (at 0 -11.5) (layer "Eco2.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 025668b4-e12f-4b92-8a99-4958e74fd5ab)
)
(fp_line (start -9 10.25) (end -9 11) (layer "F.SilkS") (width 0.12) (tstamp 12441a1a-709e-42b2-99e9-205018354b1b))
(fp_line (start 9 -8.56) (end -9 -8.56) (layer "F.SilkS") (width 0.12) (tstamp 1b4c2668-3644-4ddd-b8ed-91141175f59b))
(fp_line (start -8.25 11) (end -6.5 11) (layer "F.SilkS") (width 0.12) (tstamp 21b5f905-42bc-4b1e-9e87-8019168715eb))
(fp_line (start 9 10.25) (end 9 11) (layer "F.SilkS") (width 0.12) (tstamp 3f823deb-b2b6-4967-a23b-d3f2f2380f3b))
(fp_line (start -9 -14.5) (end 9 -14.5) (layer "F.SilkS") (width 0.12) (tstamp 5e576976-5164-4b6d-b8c7-102423f01da0))
(fp_line (start 8.25 11) (end 6.5 11) (layer "F.SilkS") (width 0.12) (tstamp 7d3283cf-0f55-4284-8213-314925f81a2a))
(fp_line (start 9 -14.5) (end 9 -7.75) (layer "F.SilkS") (width 0.12) (tstamp 8e88c5ff-cd32-4b70-a025-fc232f894fe7))
(fp_line (start -9 11) (end -8.25 11) (layer "F.SilkS") (width 0.12) (tstamp a6bf6cab-54a9-450f-aa73-fdbf1ce6fd73))
(fp_line (start 9 11) (end 8.25 11) (layer "F.SilkS") (width 0.12) (tstamp b3e0c0a3-db3c-4a12-bed7-b1ff50ee9eaf))
(fp_line (start -9 -14.5) (end -9 -7.75) (layer "F.SilkS") (width 0.12) (tstamp c8390c92-ebd3-48e0-96b5-b57c6c46516f))
(fp_line (start -9 11) (end -9 -14.5) (layer "Eco2.User") (width 0.12) (tstamp 5737a202-d0fa-44bc-b404-c2346cf7dd9a))
(fp_line (start 9 -14.5) (end 9 11) (layer "Eco2.User") (width 0.12) (tstamp 5ed1c7af-b558-4b96-b7ee-1d45d901e971))
(fp_line (start 9 11) (end -9 11) (layer "Eco2.User") (width 0.12) (tstamp 6ddd4f7b-b998-437e-ad79-e88c106a0be9))
(fp_line (start -9 -14.5) (end 9 -14.5) (layer "Eco2.User") (width 0.12) (tstamp b6c9f102-cbd3-47b4-8ff4-97199b6b43bc))
(fp_line (start -9 -8.56) (end 9 -8.56) (layer "Eco2.User") (width 0.12) (tstamp d5d222de-d07e-4ffa-bb3a-6e40b12b74bf))
(fp_line (start 9.8 -14.8) (end -9.8 -14.8) (layer "F.CrtYd") (width 0.12) (tstamp 34a7b6fe-23e8-47dc-a86b-837f2053e4bc))
(fp_line (start -9.8 -14.8) (end -9.8 11.8) (layer "F.CrtYd") (width 0.12) (tstamp 8ced0b0c-e62a-4373-b731-fda1ad3d3646))
(fp_line (start -9.8 11.8) (end 9.8 11.8) (layer "F.CrtYd") (width 0.12) (tstamp 95bb4b52-a8e5-41eb-a57a-6eb13395bea8))
(fp_line (start 9.8 -14.8) (end 9.8 11.8) (layer "F.CrtYd") (width 0.12) (tstamp ca9a27c8-46b5-4728-b94b-edcf90aadb7b))
(pad "1" smd rect (at -8.75 -7.01) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp d22dd304-3c0f-4db0-a212-f6849ed06ba4))
(pad "2" smd rect (at -8.75 -5.74) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+3V3") (pinfunction "3V3") (pintype "power_in") (tstamp 8e1646dd-974f-43be-b108-ad3df1e064ef))
(pad "3" smd rect (at -8.75 -4.47) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "/EN") (pinfunction "EN/CHIP_PU") (pintype "input") (tstamp 85d57649-7fc6-4c1f-982f-1d6fc60e1ec2))
(pad "4" smd rect (at -8.75 -3.2) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 44 "unconnected-(U1-Pad4)") (pinfunction "SENSOR_VP/GPIO36/ADC1_CH0") (pintype "input+no_connect") (tstamp ea822297-e1da-4508-b5ca-bdfdec0c5fbe))
(pad "5" smd rect (at -8.75 -1.93) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "unconnected-(U1-Pad5)") (pinfunction "SENSOR_VN/GPIO39/ADC1_CH3") (pintype "input+no_connect") (tstamp 245aa8c3-a171-420f-8363-ab8c5b961920))
(pad "6" smd rect (at -8.75 -0.66) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "/BATADC") (pinfunction "GPIO34/ADC1_CH6") (pintype "input") (tstamp 21d6854f-6bb2-49ad-8e18-f2a9831e8fac))
(pad "7" smd rect (at -8.75 0.61) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 42 "unconnected-(U1-Pad7)") (pinfunction "GPIO35/ADC1_CH7") (pintype "input+no_connect") (tstamp b07b7e1e-5193-4b64-9eba-027090b3c34d))
(pad "8" smd rect (at -8.75 1.88) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 60 "Net-(TOUCH1-Pad1)") (pinfunction "32K_XP/GPIO32/ADC1_CH4") (pintype "bidirectional") (tstamp 9328570b-d5ef-4912-86ea-a460ce8923ca))
(pad "9" smd rect (at -8.75 3.15) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 41 "unconnected-(U1-Pad9)") (pinfunction "32K_XN/GPIO33/ADC1_CH5") (pintype "bidirectional+no_connect") (tstamp 0343c7d5-7fa1-4992-b5f7-2e99fc885ce5))
(pad "10" smd rect (at -8.75 4.42) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "/WS") (pinfunction "DAC_1/ADC2_CH8/GPIO25") (pintype "bidirectional") (tstamp 307d48fd-0ce1-4072-a596-0070560cc5e8))
(pad "11" smd rect (at -8.75 5.69) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "/SCK") (pinfunction "DAC_2/ADC2_CH9/GPIO26") (pintype "bidirectional") (tstamp 9255ec6c-231e-4506-ade1-d65a6bd5aa41))
(pad "12" smd rect (at -8.75 6.96) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "/DIN") (pinfunction "ADC2_CH7/GPIO27") (pintype "bidirectional") (tstamp 1286795d-2f5b-492f-856f-7038d6a03708))
(pad "13" smd rect (at -8.75 8.23) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "/SDCLK") (pinfunction "MTMS/GPIO14/ADC2_CH6") (pintype "bidirectional") (tstamp 26e0c22f-ec18-4b82-8409-f4091b7bb688))
(pad "14" smd rect (at -8.75 9.5) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 40 "unconnected-(U1-Pad14)") (pinfunction "MTDI/GPIO12/ADC2_CH5") (pintype "bidirectional+no_connect") (tstamp f1a02b79-1391-4933-88d0-2ddba9b5c6ed))
(pad "15" smd rect (at -5.72 10.75 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp e4973281-1d28-43a8-bf6d-387e6b483a2b))
(pad "16" smd rect (at -4.45 10.75 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 45 "unconnected-(U1-Pad16)") (pinfunction "MTCK/GPIO13/ADC2_CH4") (pintype "bidirectional+no_connect") (tstamp cc379641-497d-45d4-abd5-597bc6d505bd))
(pad "17" smd rect (at -3.18 10.75 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 46 "unconnected-(U1-Pad17)") (pinfunction "NC") (pintype "no_connect") (tstamp b30be6f5-daea-44e6-a132-af9127b916d7))
(pad "18" smd rect (at -1.91 10.75 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 47 "unconnected-(U1-Pad18)") (pinfunction "NC") (pintype "no_connect") (tstamp b275e883-307a-446b-91b1-4f387910e328))
(pad "19" smd rect (at -0.64 10.75 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 48 "unconnected-(U1-Pad19)") (pinfunction "NC") (pintype "no_connect") (tstamp 47b434d8-3ca1-4a77-8705-3fdfdd50c162))
(pad "20" smd rect (at 0.63 10.75 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 49 "unconnected-(U1-Pad20)") (pinfunction "NC") (pintype "no_connect") (tstamp f00adae4-6288-492d-8b14-b70097662ca1))
(pad "21" smd rect (at 1.9 10.75 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 50 "unconnected-(U1-Pad21)") (pinfunction "NC") (pintype "no_connect") (tstamp 2957ef93-6593-45e7-b785-e14a55aa8310))
(pad "22" smd rect (at 3.17 10.75 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 51 "unconnected-(U1-Pad22)") (pinfunction "NC") (pintype "no_connect") (tstamp 224d57d5-e8d7-410e-b12a-fb2e7ac0d8ba))
(pad "23" smd rect (at 4.44 10.75 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "/SDCMD") (pinfunction "MTDO/GPIO15/ADC2_CH3") (pintype "bidirectional") (tstamp d0464626-4b69-404e-8e7f-8ab7e88d5edf))
(pad "24" smd rect (at 5.71 10.75 90) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "/D0") (pinfunction "ADC2_CH2/GPIO2") (pintype "bidirectional") (tstamp 39b35a46-7c86-4f06-90fe-481ef796b0d4))
(pad "25" smd rect (at 8.75 9.5 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "/GPIO0") (pinfunction "GPIO0/BOOT/ADC2_CH1") (pintype "bidirectional") (tstamp 99261b55-4180-4ea2-b379-035e7945c768))
(pad "26" smd rect (at 8.75 8.23 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 61 "unconnected-(U1-Pad26)") (pinfunction "ADC2_CH0/GPIO4") (pintype "bidirectional+no_connect") (tstamp cd96bb36-1bf9-4db8-94e4-0ba023595b2e))
(pad "27" smd rect (at 8.75 6.96 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 52 "unconnected-(U1-Pad27)") (pinfunction "GPIO16") (pintype "bidirectional+no_connect") (tstamp bcd0b309-609e-4164-877b-3607f33578ee))
(pad "28" smd rect (at 8.75 5.69 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 53 "unconnected-(U1-Pad28)") (pinfunction "GPIO17") (pintype "bidirectional+no_connect") (tstamp 75c2da57-d65e-42be-a0ae-c95d2f4b3a31))
(pad "29" smd rect (at 8.75 4.42 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 54 "unconnected-(U1-Pad29)") (pinfunction "GPIO5") (pintype "bidirectional+no_connect") (tstamp db9986b5-f723-440d-af12-e76dee70a9aa))
(pad "30" smd rect (at 8.75 3.15 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 55 "unconnected-(U1-Pad30)") (pinfunction "GPIO18") (pintype "bidirectional+no_connect") (tstamp 21ab9992-e675-477c-a548-2cd129307cde))
(pad "31" smd rect (at 8.75 1.88 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 56 "unconnected-(U1-Pad31)") (pinfunction "GPIO19") (pintype "bidirectional+no_connect") (tstamp 48f62bf8-6eb7-485b-8b67-a26fd3753327))
(pad "32" smd rect (at 8.75 0.61 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 57 "unconnected-(U1-Pad32)") (pinfunction "NC") (pintype "no_connect") (tstamp 4e81299b-3160-4b49-ab9e-13436bad1000))
(pad "33" smd rect (at 8.75 -0.66 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 58 "unconnected-(U1-Pad33)") (pinfunction "GPIO21") (pintype "bidirectional+no_connect") (tstamp e3a0e475-5fbc-44a0-86f8-d88da8f7d1f5))
(pad "34" smd rect (at 8.75 -1.93 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "/RXD") (pinfunction "U0RXD/GPIO3") (pintype "bidirectional") (tstamp 38ee3acd-f710-4063-87aa-cb522c2fe673))
(pad "35" smd rect (at 8.75 -3.2 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "/TXD") (pinfunction "U0TXD/GPIO1") (pintype "bidirectional") (tstamp 0bebfde6-b338-4dd6-b5d2-383b0d803edd))
(pad "36" smd rect (at 8.75 -4.47 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "Net-(R9-Pad1)") (pinfunction "GPIO22") (pintype "bidirectional") (tstamp e2bb8636-de5e-41bb-a2f4-f14cf122b981))
(pad "37" smd rect (at 8.75 -5.74 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "Net-(R8-Pad1)") (pinfunction "GPIO23") (pintype "bidirectional") (tstamp f3e7e5d2-8007-401f-b06c-84ee1e474c83))
(pad "38" smd rect (at 8.75 -7.01 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 2be8baa8-59a0-46bd-a4a6-557e085b3c44))
(pad "39" smd rect (at -0.68 1.855 180) (size 1.05 1.05) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND_THERMAL") (pintype "power_in") (tstamp 025461f7-7d21-476b-87dc-ee1053f93eb7))
(pad "39" smd rect (at 0.845 -1.195 180) (size 1.05 1.05) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND_THERMAL") (pintype "power_in") (tstamp 07c7fdb5-63a0-4519-b9c8-9b7f58070fa0))
(pad "39" smd rect (at 0.845 1.855 180) (size 1.05 1.05) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND_THERMAL") (pintype "power_in") (tstamp 07c9469d-8d23-4e89-bf89-a518eee66294))
(pad "39" smd rect (at 0.845 0.33 180) (size 1.05 1.05) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND_THERMAL") (pintype "power_in") (tstamp 0cef1e68-043e-4e87-84a9-fb9b754bdd0f))
(pad "39" smd rect (at -2.205 0.33 180) (size 1.05 1.05) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND_THERMAL") (pintype "power_in") (tstamp 6f370551-aad8-4574-a77c-7756cdce2940))
(pad "39" smd rect (at -0.68 0.33 180) (size 1.05 1.05) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND_THERMAL") (pintype "power_in") (tstamp 97b3c5ec-96e9-4782-8329-de40a62b3d73))
(pad "39" smd rect (at -0.68 -1.195 180) (size 1.05 1.05) (layers "F.Cu" "F.Paste" "F.Mask")