-
Notifications
You must be signed in to change notification settings - Fork 0
/
esp32-prog.kicad_pcb
21978 lines (21883 loc) · 862 KB
/
esp32-prog.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 "A5")
(title_block
(title "ESP32 External Programmer")
(date "20230725")
(rev "rev2")
)
(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 "White"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Black") (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") (color "Black") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "White"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(aux_axis_origin 75 57.5)
(grid_origin 75 57.5)
(pcbplotparams
(layerselection 0x00310fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin true)
(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 "fab/generic/gerbs")
)
)
(net 0 "")
(net 1 "VBUS")
(net 2 "GND")
(net 3 "+3.3VA")
(net 4 "+5V")
(net 5 "+3.3V")
(net 6 "Net-(U2-VDD)")
(net 7 "Net-(D4-A)")
(net 8 "Net-(D5-A)")
(net 9 "/ESP_EN")
(net 10 "/ESP_BOOT")
(net 11 "/RXD")
(net 12 "/TXD")
(net 13 "Net-(Q1-D)")
(net 14 "Net-(U2-~{RST})")
(net 15 "unconnected-(J2-Pin_9-Pad9)")
(net 16 "unconnected-(J2-Pin_10-Pad10)")
(net 17 "Net-(R11-Pad2)")
(net 18 "Net-(Q1-G)")
(net 19 "Net-(U1-GND)")
(net 20 "Net-(U2-~{DTR})")
(net 21 "unconnected-(U1-PG-Pad5)")
(net 22 "Net-(U2-TXD)")
(net 23 "Net-(U2-RXD)")
(net 24 "Net-(R17-Pad1)")
(net 25 "Net-(R18-Pad1)")
(net 26 "unconnected-(U2-~{DCD}-Pad1)")
(net 27 "unconnected-(U2-~{RI}{slash}CLK-Pad2)")
(net 28 "Net-(U2-~{RTS})")
(net 29 "unconnected-(U2-NC-Pad10)")
(net 30 "unconnected-(U2-~{SUSPEND}-Pad11)")
(net 31 "unconnected-(U2-SUSPEND-Pad12)")
(net 32 "unconnected-(U2-NC-Pad13)")
(net 33 "unconnected-(U2-NC-Pad14)")
(net 34 "unconnected-(U2-NC-Pad15)")
(net 35 "unconnected-(U2-NC-Pad16)")
(net 36 "unconnected-(U2-NC-Pad17)")
(net 37 "unconnected-(U2-NC-Pad18)")
(net 38 "unconnected-(U2-NC-Pad19)")
(net 39 "unconnected-(U2-NC-Pad20)")
(net 40 "unconnected-(U2-NC-Pad21)")
(net 41 "unconnected-(U2-NC-Pad22)")
(net 42 "unconnected-(U2-~{CTS}-Pad23)")
(net 43 "unconnected-(U2-~{DSR}-Pad27)")
(net 44 "Net-(D8-A)")
(net 45 "Net-(D9-A)")
(net 46 "Net-(Q2-G)")
(net 47 "Net-(R12-Pad2)")
(net 48 "Net-(R19-Pad1)")
(net 49 "Net-(Q2-D)")
(net 50 "Net-(D10-A)")
(net 51 "Net-(J1-VBUS-PadA4)")
(net 52 "Net-(J1-CC1)")
(net 53 "unconnected-(J1-SBU1-PadA8)")
(net 54 "Net-(J1-CC2)")
(net 55 "unconnected-(J1-SBU2-PadB8)")
(net 56 "Net-(Q3-G)")
(net 57 "Net-(Q3-S)")
(net 58 "Net-(R13-Pad2)")
(net 59 "Net-(R15-Pad2)")
(net 60 "Net-(R20-Pad1)")
(net 61 "Net-(R21-Pad1)")
(net 62 "Net-(R22-Pad1)")
(net 63 "Net-(R23-Pad1)")
(net 64 "/UD-")
(net 65 "/UD+")
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 0f84cd94-7637-4485-926c-e6c85cbadd51)
(at 86.2 66.7 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 "LNK1" "https://jlcpcb.com/partdetail/23913-0603WAF5101T5E/C23186")
(property "MFR" "UNI-ROYAL")
(property "MPN" "0603WAF5101T5E")
(property "SNB1" "Basic Part")
(property "SPL1" "JLCPCB")
(property "SPN1" "C23186")
(property "Sheetfile" "esp32-prog.kicad_sch")
(property "Sheetname" "")
(property "Tolerance" "1%")
(property "UserValue" "5.1k")
(property "ki_description" "100mW Thick Film Resistors 75V ±100ppm/℃ ±1% -55℃~+155℃ 5.1kΩ 0603 Chip Resistor")
(property "ki_keywords" "R res resistor 5.1k")
(path "/0835d57e-00cb-4951-b420-73a6915badab")
(attr smd)
(fp_text reference "R2" (at -2.6 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4f19a367-e5c3-46d1-bee4-f5cb98910e3b)
)
(fp_text value "5.1k_0603_0603WAF5101T5E" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13af06b5-81e5-4ff6-9ba2-1c1a938b55e1)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp f47029c7-05c9-4319-bce4-e64ba29171f3)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8f3037af-6918-44be-80e3-1554d782c344))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a3b11908-176a-47a7-a787-9b9ef4538bd8))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7bc642cb-a501-4372-8842-7ea5cd80da41))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 317648e5-e70d-4492-949b-ac05dcb1c894))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 588a88aa-2759-42e8-b4ce-ebb262bc03cf))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f857391f-0ef5-4ef1-81d0-574cc240bf15))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 00e3e996-eccb-4fad-ab83-972198e3629f))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 65ef8aa8-f80c-474e-bbd3-dc1f2f5b89ff))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ab9991e7-cb8b-468b-8506-b8635c528c7c))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e10463b4-e44c-4d83-9b37-ca81690389cd))
(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 52 "Net-(J1-CC1)") (pintype "passive") (tstamp c3b2ca8b-5ff8-4a67-9198-bac383ff7ce3))
(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 2 "GND") (pintype "passive") (tstamp 88c20546-8860-4297-9969-1d68855a26b8))
(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_0402_1005Metric" (layer "F.Cu")
(tstamp 11cb592d-237b-4635-a716-ff271687771c)
(at 109 63)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LNK1" "https://jlcpcb.com/partdetail/12256-0402WGF1001TCE/C11702")
(property "MFR" "UNI-ROYAL")
(property "MPN" "0402WGF1001TCE")
(property "Pmax" "62.5mW")
(property "SNB1" "Basic part")
(property "SPL1" "JLCPCB")
(property "SPN1" "C11702")
(property "Sheetfile" "esp32-prog.kicad_sch")
(property "Sheetname" "")
(property "Tolerance" "1%")
(property "UserValue" "1k")
(property "ki_description" "62.5mW Thick Film Resistors 50V ±100ppm/℃ ±1% -55℃~+155℃ 1kΩ 0402")
(property "ki_keywords" "R res resistor 1k 0402 1% 62.5mW")
(path "/8b0cab0c-68af-4205-870b-944b69db6106")
(attr smd)
(fp_text reference "R26" (at -0.25 -1.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ae24bb84-f06f-49c6-8793-ca27d13d051f)
)
(fp_text value "1k_0402_0402WGF1001TCE" (at 0 1.17) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e8fe392c-3472-4cb1-80c4-1cf6ef97ca8f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 56e2bad9-f4fa-44e0-b661-3c7ecc9121a6)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bc7074a2-00ec-4b98-8c69-dbaa6cb8bcc7))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 33633c5c-afe5-4aad-a111-5ea2b8d7b080))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 284dc5b3-7540-4f86-bba3-b5ca6f6b7fc0))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2560cc29-6194-430e-a2de-e6ddc4eea62c))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b99e8d62-0867-4653-b0db-9bac850b4d28))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a1b9b2e-312e-433f-a3a6-d0b6e652cf59))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8853a7c0-aee2-4f19-9c9c-8c6a29660385))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb7f146a-1868-4889-a2ae-427e25a5bf38))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e90016ab-9e4e-433d-91ef-31fdf7527adf))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3e401d62-6024-4764-a7a7-5dd666f17eb2))
(pad "1" smd roundrect (at -0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3.3V") (pintype "passive") (tstamp 2fcee0c8-a584-4913-8c41-a13b85b57f79))
(pad "2" smd roundrect (at 0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 45 "Net-(D9-A)") (pintype "passive") (tstamp 8a0a0f8b-4bd8-415d-add9-8864585a1795))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SON:Texas_USON-6_1x1.45mm_P0.5mm_SMD" (layer "F.Cu")
(tstamp 2101ebbf-08ae-4451-b077-0d900b2ec0f4)
(at 101.4 60.1)
(descr "USON, 6 Pin (https://www.ti.com/lit/ds/symlink/sn74auc1g04.pdf#page=24), Solder Mask Defined")
(tags "USON NoLead DRY0006A")
(property "LNK1" "https://jlcpcb.com/partdetail/TexasInstruments-SN74LVC1G125DRYR/C527546")
(property "MFR" "Texas Instruments")
(property "MPN" "SN74LVC1G125DRYR")
(property "SNB1" "Extended part")
(property "SPL1" "JLCPCB")
(property "SPN1" "C527546")
(property "Sheetfile" "esp32-prog.kicad_sch")
(property "Sheetname" "")
(property "UserValue" "SN74LVC1G125")
(property "ki_description" "32mA 1.65V~5.5V 32mA DFN-6(1x1.5) Buffer/Driver/Transceiver")
(property "ki_keywords" "Single Gate Buff Tri-State LVC CMOS SN74LVC1G125DRYR")
(path "/e35bdb93-01fc-42e9-9e44-708c80d64bb4")
(solder_mask_margin -0.05)
(solder_paste_margin -0.05)
(attr smd)
(fp_text reference "U4" (at 0 -1.7) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c9c1ad5d-4e2d-4736-9fa3-74fbafe0042d)
)
(fp_text value "TI_SN74LVC1G125DRYR" (at 0 1.68) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 292122de-81ed-4e46-b277-3651277e4d01)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.36 0.36) (thickness 0.05)))
(tstamp f2a4b7ad-03d5-4d17-ad99-161fdd5dc4ad)
)
(fp_line (start -0.5 0.835) (end 0.5 0.835)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 68688f07-7516-4941-aed1-8fbdb4194163))
(fp_line (start 0 -0.835) (end 0.5 -0.835)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3449c767-f5b6-4129-8281-6e8f961adeb5))
(fp_line (start -0.75 -0.98) (end -0.75 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 825dc7e4-43e8-4435-b469-f2279ad4ba82))
(fp_line (start -0.75 0.98) (end 0.75 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f9aa3ffb-22c6-4ba3-9fad-6f43e7b6ef00))
(fp_line (start 0.75 -0.98) (end -0.75 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1273a68d-c5af-4edc-9e51-0c1f27b9db89))
(fp_line (start 0.75 0.98) (end 0.75 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 91a95653-09f3-4a99-8808-5f7d39038c67))
(fp_line (start -0.5 -0.475) (end -0.25 -0.725)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 005d797c-b629-45de-a67e-a7c5c2ca51f6))
(fp_line (start -0.5 0.725) (end -0.5 -0.475)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 79a623f7-4737-495a-8c66-b610c04e3c79))
(fp_line (start -0.25 -0.725) (end 0.5 -0.725)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f9cae712-6cad-4e91-bdf2-c4af9f0752f9))
(fp_line (start 0.5 -0.725) (end 0.5 0.725)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 910cb485-c5ca-4dd0-a428-3f1835462a1f))
(fp_line (start 0.5 0.725) (end -0.5 0.725)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 68ccfe5b-9b04-4347-ba7f-18e8efacab5d))
(pad "1" smd roundrect (at -0.275 -0.5) (size 0.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.3333333333)
(net 25 "Net-(R18-Pad1)") (pintype "input") (tstamp c3d3be09-c16b-4bc2-b1e8-ec58d66fc99d))
(pad "2" smd roundrect (at -0.3 0) (size 0.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.3333333333)
(net 58 "Net-(R13-Pad2)") (pintype "input") (tstamp 51bdfe4e-3d84-44ba-8f1f-cefb441b16c2))
(pad "3" smd roundrect (at -0.3 0.5) (size 0.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.3333333333)
(net 2 "GND") (pinfunction "G") (pintype "power_in") (tstamp 284c743d-74c6-4439-a790-c6213921dfb1))
(pad "4" smd roundrect (at 0.3 0.5) (size 0.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.3333333333)
(net 62 "Net-(R22-Pad1)") (pintype "tri_state") (tstamp 5d11357f-be6b-49dc-950a-9a0ce6f2790f))
(pad "5" smd roundrect (at 0.3 0) (size 0.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.3333333333) (tstamp ac5a176f-f335-4514-9439-4a7ed8e9e4dd))
(pad "6" smd roundrect (at 0.3 -0.5) (size 0.4 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.3333333333)
(net 5 "+3.3V") (pinfunction "V") (pintype "power_in") (tstamp af106156-d1ae-4dcb-9d6f-e8b5afdb0883))
(model "${KICAD6_3DMODEL_DIR}/Package_SON.3dshapes/USON-6_1x1.45mm_P0.5mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DFN_QFN:DFN-8-1EP_4x4mm_P0.8mm_EP2.3x3.24mm" (layer "F.Cu")
(tstamp 281ccfc6-2489-4f86-9dde-d86f39252e46)
(at 94.4 84.3 180)
(descr "DFN, 8 Pin (https://www.st.com/resource/en/datasheet/ld1086.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py")
(tags "DFN NoLead")
(property "LNK1" "https://jlcpcb.com/partdetail/Stmicroelectronics-LD39200DPUR/C880590")
(property "MFR" "ST")
(property "MPN" "LD39200DPUR")
(property "SNB1" "Extended Part")
(property "SPL1" "JLCPCB")
(property "SPN1" "C880590")
(property "Sheetfile" "esp32-prog.kicad_sch")
(property "Sheetname" "")
(property "UserValue" "LD39200DPUR")
(property "ki_description" "2 A high PSRR ultra low drop linear regulator with reverse current protection")
(property "ki_keywords" "regulator ldo adjustable")
(path "/18190eba-c64c-4557-b095-c68133cc892f")
(attr smd)
(fp_text reference "U1" (at -2.2 -2.4 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3c3db84e-e8d0-4923-826f-b2732d21e497)
)
(fp_text value "LD39200DPUR" (at 0 2.95) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f4093b7a-1eb2-4b58-92ae-094845ddcfae)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe39180e-fa5b-47c2-b278-36e4b93826ca)
)
(fp_line (start -2 2.11) (end 2 2.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d8bf11a5-7cff-4c6b-bdcc-e138c0519663))
(fp_line (start 0 -2.11) (end 2 -2.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 703d2642-d061-4888-a118-fafe99abce4a))
(fp_line (start -2.62 -2.25) (end -2.62 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eda7f13a-b295-44a7-939d-096adb9d574d))
(fp_line (start -2.62 2.25) (end 2.62 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 53e4fb2a-a440-4f98-a175-2ca0c3f451f5))
(fp_line (start 2.62 -2.25) (end -2.62 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8e743d74-1d91-486e-a9b2-2a5a81091f8d))
(fp_line (start 2.62 2.25) (end 2.62 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fcb2fe16-1ca3-4e0e-8317-12adebb5c1ac))
(fp_line (start -2 -1) (end -1 -2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 01ff8ca0-d961-434d-8c52-22f2287aeb85))
(fp_line (start -2 2) (end -2 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d6a59c55-4219-44dd-b0c4-85c4c8e7b5f2))
(fp_line (start -1 -2) (end 2 -2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fff2c727-6ee3-4055-9ea9-0b1909e57d56))
(fp_line (start 2 -2) (end 2 2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4b19acc1-63e9-4ff0-bb2d-737f8d8d7914))
(fp_line (start 2 2) (end -2 2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e5a5bcf8-c189-4d18-b3f5-521cfdccb253))
(pad "" smd roundrect (at -0.575 -0.81 180) (size 0.93 1.31) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 120ef431-57e9-456b-8775-8afb21ac5ba3))
(pad "" smd roundrect (at -0.575 0.81 180) (size 0.93 1.31) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 3d2eac77-06c7-4d16-aff7-dc697a12bfbb))
(pad "" smd roundrect (at 0.575 -0.81 180) (size 0.93 1.31) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 266b51bc-326b-4eb1-bebb-7d56a1bcc904))
(pad "" smd roundrect (at 0.575 0.81 180) (size 0.93 1.31) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 6f75e49e-311f-4fee-9a8b-efa7097fdcea))
(pad "1" smd roundrect (at -1.9 -1.2 180) (size 0.95 0.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3.3VA") (pinfunction "OUT") (pintype "power_out") (tstamp 7050748f-399a-448c-9e24-7b78a0c0a4ca))
(pad "2" smd roundrect (at -1.9 -0.4 180) (size 0.95 0.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3.3VA") (pinfunction "OUT") (pintype "passive") (tstamp e06b7908-3a54-4d26-b160-8a88670dfb1f))
(pad "3" smd roundrect (at -1.9 0.4 180) (size 0.95 0.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "Net-(U1-GND)") (pinfunction "ADJ") (pintype "input") (tstamp f96ba918-32a8-4eb4-b129-9822ecefb2ff))
(pad "4" smd roundrect (at -1.9 1.2 180) (size 0.95 0.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 6cf943d1-4d2d-4cce-9e10-742772885452))
(pad "5" smd roundrect (at 1.9 1.2 180) (size 0.95 0.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "unconnected-(U1-PG-Pad5)") (pinfunction "PG") (pintype "output+no_connect") (tstamp 6f02caf6-9636-4b64-8ae6-0cdd4fe83cea))
(pad "6" smd roundrect (at 1.9 0.4 180) (size 0.95 0.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "VBUS") (pinfunction "EN") (pintype "input") (tstamp 004b6a8e-21ac-4152-961a-f0271529c6dd))
(pad "7" smd roundrect (at 1.9 -0.4 180) (size 0.95 0.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "VBUS") (pinfunction "IN") (pintype "power_in") (tstamp f13ca233-6e72-4217-8c2d-d45ebf394578))
(pad "8" smd roundrect (at 1.9 -1.2 180) (size 0.95 0.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "VBUS") (pinfunction "IN") (pintype "passive") (tstamp bbc79b11-4089-472a-8777-14daee695374))
(pad "9" smd rect (at 0 0 180) (size 2.3 3.24) (layers "F.Cu" "F.Mask")
(net 2 "GND") (pinfunction "PAD") (pintype "passive") (tstamp 9f6b2358-826b-4327-bbd5-36e3c1e603ef))
(model "${KICAD6_3DMODEL_DIR}/Package_DFN_QFN.3dshapes/DFN-8-1EP_4x4mm_P0.8mm_EP2.3x3.24mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "00-kiml-diode:DO-214AC" (layer "F.Cu")
(tstamp 294c367b-1fa8-4d3d-aaa5-3df5b1429e97)
(at 113 81.9 180)
(property "LNK1" "https://jlcpcb.com/partdetail/Born-SS34/C266553")
(property "MFR" "Jiangsu Changjing Electronics Technology")
(property "MPN" "SS34")
(property "Rating" "3A")
(property "SNB1" "Extended Part")
(property "SPL1" "JLCPCB")
(property "SPN1" "C266553")
(property "Sheetfile" "esp32-prog.kicad_sch")
(property "Sheetname" "")
(property "UserValue" "D")
(property "ki_description" "40V 500mV@3A 3A SMA(DO-214AC) Schottky Barrier Diodes (SBD) ROHS")
(property "ki_keywords" "diode Schottky")
(path "/38563f4e-bbf6-4bfa-8aca-97688abd9bf9")
(attr smd)
(fp_text reference "D7" (at -4.6 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bf70e0a5-3a8c-4c50-974e-19ab77eef75c)
)
(fp_text value "SS34" (at 0 2.45) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d03636f-7c04-4489-b600-ce8bfc4a77f3)
)
(fp_text user "${REFERENCE}" (at 0.40894 0) (layer "F.Fab")
(effects (font (size 0.75 0.75) (thickness 0.075)))
(tstamp eebcdb79-a304-42bb-860c-18764b950682)
)
(fp_line (start -2.25 -1.4) (end -2.25 -1)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 0fd8b8ec-41e2-47e6-8332-eb677257514c))
(fp_line (start -2.25 -1.4) (end -1.85 -1.4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp d3f7c2a5-c289-439d-b90b-86bb3a0d75c6))
(fp_line (start -2.25 1.4) (end -2.25 1)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 8fd26076-5c94-4891-a165-229045060852))
(fp_line (start -2.25 1.4) (end -1.85 1.4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 0b2d5d5a-9707-4942-b6b3-a9d54906be2d))
(fp_line (start -1.44018 -1.39954) (end -1.44018 -0.93472)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp bd4db30a-98c6-4a37-b0b2-7afe7ae1aa55))
(fp_line (start -1.44018 -0.93472) (end -1.36398 -0.93472)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp b66230aa-12b7-4eb8-b2ef-5e1141be92bc))
(fp_line (start -1.44018 0.94234) (end -1.36398 0.94234)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 937ef00d-b67e-41e6-b766-f8cd935d3cc2))
(fp_line (start -1.44018 1.40208) (end -1.44018 0.94234)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 89dc2088-2f32-4af5-aa9d-12fb758407fe))
(fp_line (start -1.36398 -1.39954) (end -1.44018 -1.39954)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 3476bb78-4e94-4447-aea8-5ec65d0af6e1))
(fp_line (start -1.36398 -0.93472) (end -1.36398 -1.39954)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp f8ba5b05-414f-4f56-a8f0-20e7a016787f))
(fp_line (start -1.36398 0.94234) (end -1.36398 1.40208)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 09b14630-c7e0-432a-8c38-6a95233fb781))
(fp_line (start -1.36398 1.40208) (end -1.44018 1.40208)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp a8929011-9a6b-49a7-bdc0-483d31c19c9b))
(fp_line (start 2.25 -1.4) (end 1.85 -1.4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 0034c57d-fe43-4a83-a0c2-49e08cc8dfd3))
(fp_line (start 2.25 -1.4) (end 2.25 -1)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp f74d763c-33e2-4c48-904b-fd8eb3909839))
(fp_line (start 2.25 1.4) (end 1.85 1.4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp a59cf347-ba82-43c1-8f39-27c5a06aa80b))
(fp_line (start 2.25 1.4) (end 2.25 1)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 372a8b06-4608-4950-af91-5ada0ad04600))
(fp_line (start -3.5 -1.55) (end -3.5 1.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1c30257e-6329-45c1-9457-12afb4736bc0))
(fp_line (start -3.5 -1.55) (end 3.5 -1.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8545fcbf-710c-4e91-bd03-8c2c75023bac))
(fp_line (start -3.5 1.55) (end 3.5 1.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 53312092-6abc-413e-b24d-a54e29fbff3b))
(fp_line (start 3.5 -1.55) (end 3.5 1.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6dece4ea-1bd1-4a42-9be8-2098010cd34e))
(fp_line (start -2.15 -1.3) (end -2.15 1.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4100dfaa-8dc0-4d38-a1c9-bd56cabbd57d))
(fp_line (start -2.15 -1.3) (end 2.15 -1.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fa3b372c-ba9b-4e6b-8108-d09bc1cb4630))
(fp_line (start -2.15 1.3) (end 2.15 1.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aeb0d5f4-9d7e-4bb4-b273-30249f3a5c9e))
(fp_line (start -1.44018 -1.30048) (end -1.44018 1.30048)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 966bda0a-02b7-47a3-9846-5e1f253d224e))
(fp_line (start -1.44018 1.30048) (end -1.36398 1.30048)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 82eb93f3-c95d-4279-acbb-17f6cac9a9f3))
(fp_line (start -1.36398 1.30048) (end -1.36144 -1.30048)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4971f978-0559-4c8d-b771-d92dbee8644c))
(fp_line (start -1.36144 -1.30048) (end -1.44018 -1.30048)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5cd5423d-a339-453a-92a7-0bfaa1609b45))
(fp_line (start 2.15 -1.3) (end 2.15 1.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f9f79cbf-622f-4baa-98fd-57f8bcc2a61d))
(pad "A" smd rect (at 2 0 180) (size 2.5 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 49 "Net-(Q2-D)") (pinfunction "A") (pintype "passive") (tstamp c570d3cf-8471-49c6-994e-9003b270f65f))
(pad "K" smd rect (at -2 0 180) (size 2.5 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "+3.3V") (pinfunction "K") (pintype "passive") (tstamp 16e5d5f5-8a35-4693-938d-d2aa6c0e3738))
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 2aefcca8-8fa4-45f8-848f-22fde9dff487)
(at 99.2 85.5 180)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LNK1" "https://jlcpcb.com/partdetail/TaiyoYuden-LDK105CBJ106MVLF/C386033")
(property "MFR" "Taiyo")
(property "MPN" "LDK105CBJ106MVLF")
(property "Rating" "10V")
(property "SNB1" "Extended Part")
(property "SPL1" "JLCPCB")
(property "SPN1" "C386033")
(property "Sheetfile" "esp32-prog.kicad_sch")
(property "Sheetname" "")
(property "UserValue" "10u")
(property "ki_description" "10V 10uF X5R ±20% 0402 Multilayer Ceramic Capacitors")
(property "ki_keywords" "cap capacitor 10uF 0402")
(path "/189b603a-0105-44f7-82de-0ca564061f88")
(attr smd)
(fp_text reference "C2" (at 0 -1.16 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 56a520f8-bf92-4997-b27f-e7e27baadcfa)
)
(fp_text value "10u_0402_LDK105CBJ106MVLF" (at 0 1.16) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6bd3ae63-3c97-4c6f-8e7a-3859e91a48dd)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp a7b19212-bb26-4d52-aa36-5414925b00fa)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e3829571-4ec8-4001-b7ae-350eb0d619d9))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5db448b0-fe31-4771-a124-060f7c002376))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 35ed0bae-1faf-4f5e-9ec3-85fbf3691b79))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1e99e414-b809-4430-967d-4009b9c4fba3))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f87e2b9-4e80-4c1c-b2f7-833953fc171c))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e47dfedd-b74c-486d-a5c7-8814ea4a4b9b))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 48254dab-2500-4fa8-bce4-c78467bec59f))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b84858a1-0637-4ba4-91a7-100a4a29125c))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 02f4252a-0c2b-4bc3-89b3-cece7fa935be))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4422a4cb-841f-4790-9b3c-4bf870bb4930))
(pad "1" smd roundrect (at -0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp b6422f03-8213-440f-9882-061f5baa1762))
(pad "2" smd roundrect (at 0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3.3VA") (pintype "passive") (tstamp 8d594db4-89e3-4d00-bea3-cb85b97f3fee))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 2eea2234-4c9a-4bd5-909c-38797237ba1e)
(at 103.2 64.2)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LNK1" "https://jlcpcb.com/partdetail/Yageo-AC0402FR0732R4L/C226994")
(property "MFR" "YAGEO")
(property "MPN" "AC0402FR-0732R4L")
(property "SPL1" "JLCPCB")
(property "SPN1" "C226994")
(property "Sheetfile" "esp32-prog.kicad_sch")
(property "Sheetname" "")
(property "Tolerance" "1%")
(property "UserValue" "32.4R")
(property "ki_description" "62.5mW Thick Film Resistors ±100ppm/℃ ±1% 32.4Ω 0402")
(property "ki_keywords" "R Resistor 0402 33R")
(path "/547d095b-aecb-460b-a58c-6d0814f9e4bc")
(attr smd)
(fp_text reference "R21" (at 2.4 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 54d7be20-2086-4678-8d47-6d1d9ba37828)
)
(fp_text value "32.4R_0402_AC0402FR-0732R4L" (at 0 1.17) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a4ff72c-59b3-4f2e-baea-09446a515246)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 06d28078-fd71-40f0-9ec8-fa8e0e643234)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dbbac9fa-a477-4390-a7c6-7b18cf5f5a88))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4060d252-08f0-4a4a-be56-1f84f566846a))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6bd893c6-16c4-4543-8373-33c7ed48a069))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1ef9434a-2a8f-4e87-813f-6d85255c332b))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e117cfab-0176-431c-95a9-7771ed9369a6))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp edf9d868-c543-4174-abd0-8137bb5dd3bc))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 422b13a3-70ae-4517-b53b-4e37d7c1b80f))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 936311b1-2750-48ff-a729-e93f79a195fa))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5ae3d859-3c20-4150-8133-ba5e5475d930))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b5f5032f-164d-41c4-a2e7-9f4596af14b7))
(pad "1" smd roundrect (at -0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 61 "Net-(R21-Pad1)") (pintype "passive") (tstamp 25482575-5f90-49ca-9b9d-7131a72455aa))
(pad "2" smd roundrect (at 0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/TXD") (pintype "passive") (tstamp 6678ba13-4f9c-493c-b449-33790f636e12))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "00-kiml-switch-button-smd:SW_DIP_1.27mm_0.50mil_TP-02" (layer "F.Cu")
(tstamp 33e192db-61f7-46d5-81bd-df11ecfa8da9)
(at 100.2 80.5 -90)
(property "LNK1" "https://jlcpcb.com/partdetail/Yuandi-TP02/C559165")
(property "MFR" "Yuandi")
(property "MPN" "TP-02")
(property "SNB1" "Extended part")
(property "SPL1" "JLCPCB")
(property "SPN1" "C559165")
(property "Sheetfile" "esp32-prog.kicad_sch")
(property "Sheetname" "")
(property "UserValue" "PWR_SW")
(property "ki_description" "2x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol")
(property "ki_keywords" "dip switch TP-02 1.27mm 50mil")
(path "/a09177d5-325b-4f78-90b7-048b1a848b86")
(attr smd)
(fp_text reference "SW1" (at -4 -0.8 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 175bdea2-f5ff-455d-af8f-b90dc5beb763)
)
(fp_text value "SW_DIP_x02_50mil_1.27mm_TP-02" (at 0.254 -5.485 -90 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 38feddf3-0f0a-4119-bccc-7a7c29c89403)
)
(fp_text user "${UserValue}" (at -5.5 -2.3 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 14ecb92e-cc3e-49d1-a3ea-0b4b37036bb1)
)
(fp_text user "ON" (at -3.5 5.2 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7ce85118-494a-43aa-861d-799382df418d)
)
(fp_text user "2" (at 0.6 2.4 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b14b63e1-bfd4-4d08-b41d-ab56e3c2d61c)
)
(fp_text user "1" (at -0.6 2.4 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da9ed958-f18e-4bf7-bb46-c4fa39f986ab)
)
(fp_text user "ON" (at -1 -2 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e9e7a400-53cf-4d10-a801-844e5f420baa)
)
(fp_text user "${REFERENCE}" (at 1.4 -0.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f02bf000-26bd-447e-993b-6bfefb2a45c2)
)
(fp_rect (start -1.1 0.5) (end -0.9 1.1)
(stroke (width 0.12) (type default)) (fill none) (layer "F.SilkS") (tstamp a3d2f758-1c40-440d-8086-c6824cf2b5fe))
(fp_rect (start -0.75 -1.25) (end -1.25 1.25)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 31e1a071-b5f7-429b-ad12-7a7cb930ef2e))
(fp_rect (start 0.75 -1.25) (end 1.25 1.25)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp efc62e25-3635-4722-85ba-35dd4fc61288))
(fp_rect (start 0.9 0.5) (end 1.1 1.1)
(stroke (width 0.12) (type default)) (fill none) (layer "F.SilkS") (tstamp eb1e7b77-2898-44fc-8e4b-316e3e6ecbe5))
(fp_line (start -2.2 2.8) (end -2.2 -2.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d2f0f131-3b5e-44a8-a40c-5fee9e3eac47))
(fp_line (start -1.2 -4.6) (end -1.2 -2.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1b7a29dc-400b-48d5-a266-38fc50ff0d6b))
(fp_line (start -1.2 -4.6) (end 1.2 -4.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a1831e5-79c6-4270-a6f7-78d41590833e))
(fp_line (start -1.2 -2.8) (end -2.2 -2.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e254d2f4-2ae8-44a9-b8a1-61ef024dc007))
(fp_line (start -1.2 2.8) (end -2.2 2.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4bb7edb9-239d-4a87-a40b-737ae8b08289))
(fp_line (start -1.2 2.8) (end -1.2 4.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dbee03d0-e7e9-4bf2-94df-d8282b0e156c))
(fp_line (start -1.2 4.6) (end 1.2 4.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp da331033-bda6-4798-8be1-ba65b590199d))
(fp_line (start 1.2 -4.6) (end 1.2 -2.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6ca34e87-3057-4169-b484-94a3dab44642))
(fp_line (start 1.2 -2.8) (end 2.2 -2.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c4083cf5-2639-406f-bf4c-b7be61983812))
(fp_line (start 1.2 2.8) (end 2.2 2.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a9723667-db43-4e19-b3ca-d27bac3a1e2f))
(fp_line (start 1.2 4.6) (end 1.2 2.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ba7c3e74-7fc2-418d-942c-34351b0844d8))
(fp_line (start 2.2 2.8) (end 2.2 -2.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 98e6ed66-fed9-43fe-b6c5-fdf0c0b03a98))
(pad "1" smd rect (at -0.635 3.81 270) (size 0.76 1.27) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pintype "passive") (tstamp 9b1f3fac-3875-4e19-8ece-3729acf2d1c6))
(pad "2" smd rect (at 0.635 3.81 270) (size 0.76 1.27) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pintype "passive") (tstamp 1d203393-865d-4b1e-9f6e-75c4dda0a947))
(pad "3" smd rect (at 0.635 -3.81 270) (size 0.76 1.27) (layers "F.Cu" "F.Paste" "F.Mask")
(net 46 "Net-(Q2-G)") (pintype "passive") (tstamp 5272cbce-e219-4419-b5e2-271c91e7db2b))
(pad "4" smd rect (at -0.635 -3.81 270) (size 0.76 1.27) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "Net-(Q1-G)") (pintype "passive") (tstamp a985630e-ad76-47ac-a549-2750af09d111))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_DIP_SPSTx02_Slide_6.7x6.64mm_W8.61mm_P2.54mm_LowProfile.wrl"
(offset (xyz 0 0 0))
(scale (xyz 0.5 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "00-kiml-connector-usb:USB_C_Receptacle_HRO_TYPE-C-31-M-12" (layer "F.Cu")
(tstamp 34014fc6-a9ed-4252-99bc-9494b0b863e3)
(at 78 72.5 -90)
(descr "USB Type-C receptacle for USB 2.0 and PD, http://www.krhro.com/uploads/soft/180320/1-1P320120243.pdf")
(tags "usb usb-c 2.0 pd")
(property "LNK1" "https://jlcpcb.com/partdetail/Korean_HropartsElec-TYPE_C_31_M12/C165948")
(property "MFR" "Korean Hroparts")
(property "MPN" "TYPE-C-31-M-12")
(property "SNB1" "Extended Part")
(property "SPL1" "JLCPCB")
(property "SPN1" "C165948")
(property "Sheetfile" "esp32-prog.kicad_sch")
(property "Sheetname" "")
(property "UserValue" "USB-C")
(property "ki_description" "USB 2.0-only Type-C Receptacle connector")
(property "ki_keywords" "usb universal serial bus type-C USB2.0 usb c")
(path "/5287a418-2837-4893-b462-86b2c5aa86c8")
(attr through_hole)
(fp_text reference "J1" (at 0 -5.645 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a9171e06-b6a3-4df8-9ecf-594ea0f9183d)
)
(fp_text value "TYPE-C-31-M-12" (at 0 5.1 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3baa8fe9-ee1d-4506-926d-146383f5dca7)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ae135bd6-912b-40b4-bab3-59a3cab15910)
)
(fp_line (start -4.7 -1.9) (end -4.7 0.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e66ecaa2-3d65-4cac-95aa-887cd5d6207a))
(fp_line (start -4.7 2) (end -4.7 3.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 84f7e531-9856-46dc-8c8b-5a46b4dcff9b))
(fp_line (start -4.7 3.9) (end 4.7 3.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fa725e72-ddff-49bf-af4c-494bba9594e3))
(fp_line (start 4.7 -1.9) (end 4.7 0.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 55d10516-80e8-4c7d-af1c-5cbb56c19a9c))
(fp_line (start 4.7 2) (end 4.7 3.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a231cac3-64da-4d28-8ed8-0bf7fa661908))
(fp_line (start -5.32 -5.27) (end -5.32 4.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1ca8e6c4-2863-4131-a808-ee1bd52a5007))
(fp_line (start -5.32 -5.27) (end 5.32 -5.27)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 54984214-cc43-4489-8c57-7ab9edae13b0))
(fp_line (start -5.32 4.15) (end 5.32 4.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aa725d6b-b893-4141-b7fe-5c6999a026fd))
(fp_line (start 5.32 -5.27) (end 5.32 4.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0bbec6df-ae6f-4ae2-90ce-1a414fdb538b))
(fp_line (start -4.47 -3.65) (end -4.47 3.65)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e6d0cc4b-5848-4ab8-a501-fcddd0748c4d))
(fp_line (start -4.47 -3.65) (end 4.47 -3.65)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 347c5976-161b-422d-b908-1d29cd8508f7))
(fp_line (start -4.47 3.65) (end 4.47 3.65)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1296019e-0b87-4914-8de9-a9189f80e307))
(fp_line (start 4.47 -3.65) (end 4.47 3.65)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 92626c1d-6113-4e4c-8c48-a4f432e98210))
(pad "" np_thru_hole circle (at -2.89 -2.6 270) (size 0.65 0.65) (drill 0.65) (layers "*.Cu" "*.Mask") (tstamp 9ea7958f-bca9-4935-87a4-9973b51a9a48))
(pad "" np_thru_hole circle (at 2.89 -2.6 270) (size 0.65 0.65) (drill 0.65) (layers "*.Cu" "*.Mask") (tstamp afd33478-b9d1-41c5-b4c5-bbd495b022ce))
(pad "A1" smd rect (at -3.25 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 8ac760f7-a2da-4ecc-a677-8823eb9785db))
(pad "A4" smd rect (at -2.45 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 51 "Net-(J1-VBUS-PadA4)") (pinfunction "VBUS") (pintype "passive") (tstamp 86ad1650-f4b5-47da-8a99-53d2cced32e4))
(pad "A5" smd rect (at -1.25 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 52 "Net-(J1-CC1)") (pinfunction "CC1") (pintype "bidirectional") (tstamp 906c0c38-431c-4f14-a24d-9f1546482c08))
(pad "A6" smd rect (at -0.25 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 65 "/UD+") (pinfunction "D+") (pintype "bidirectional") (tstamp 034184fa-5e8c-4915-b82c-d8532a3fc5e9))
(pad "A7" smd rect (at 0.25 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 64 "/UD-") (pinfunction "D-") (pintype "bidirectional") (tstamp 99264126-1a70-4a4c-adbb-224f01efb1a1))
(pad "A8" smd rect (at 1.25 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 53 "unconnected-(J1-SBU1-PadA8)") (pinfunction "SBU1") (pintype "bidirectional+no_connect") (tstamp dca92606-963e-4f8e-afee-f1f7d61c4de5))
(pad "A9" smd rect (at 2.45 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 51 "Net-(J1-VBUS-PadA4)") (pinfunction "VBUS") (pintype "passive") (tstamp 7f51217b-b8e0-4e2c-abf8-c4f248bcb688))
(pad "A12" smd rect (at 3.25 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp e9f51f69-c860-488a-9079-0424bd85dadb))
(pad "B1" smd rect (at 3.25 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp b64c56a8-ba32-455e-adaa-2917936d3ec7))
(pad "B4" smd rect (at 2.45 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 51 "Net-(J1-VBUS-PadA4)") (pinfunction "VBUS") (pintype "passive") (tstamp 961245d2-c8bc-4c37-b72c-91927e8d716f))
(pad "B5" smd rect (at 1.75 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 54 "Net-(J1-CC2)") (pinfunction "CC2") (pintype "bidirectional") (tstamp 8d4c464b-fc47-43b0-9401-3b4c8ce8a44b))
(pad "B6" smd rect (at 0.75 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 65 "/UD+") (pinfunction "D+") (pintype "bidirectional") (tstamp cdf37d2f-235a-414f-944f-0163088f6160))
(pad "B7" smd rect (at -0.75 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 64 "/UD-") (pinfunction "D-") (pintype "bidirectional") (tstamp 35c647a2-01ab-489a-bc99-8544c52ea0ac))
(pad "B8" smd rect (at -1.75 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 55 "unconnected-(J1-SBU2-PadB8)") (pinfunction "SBU2") (pintype "bidirectional+no_connect") (tstamp ba49efdf-7874-4ac3-9b95-8fd89f0aced6))
(pad "B9" smd rect (at -2.45 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 51 "Net-(J1-VBUS-PadA4)") (pinfunction "VBUS") (pintype "passive") (tstamp b6eac70d-fc66-4c78-b3ea-479ac77d582c))
(pad "B12" smd rect (at -3.25 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp b1f63042-c0eb-41a2-8274-d3ad81447fb7))
(pad "S1" thru_hole oval (at -4.32 -3.13 270) (size 1 2.1) (drill oval 0.6 1.7) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 0769e66b-49eb-4fd6-a29f-cdf7f67097a0))
(pad "S1" thru_hole oval (at -4.32 1.05 270) (size 1 1.6) (drill oval 0.6 1.2) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 07a1bacf-d5d4-4958-b246-289a2fd2232c))
(pad "S1" thru_hole oval (at 4.32 -3.13 270) (size 1 2.1) (drill oval 0.6 1.7) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 0f2f4cce-acc1-486c-9065-0dbc3b531fd5))
(pad "S1" thru_hole oval (at 4.32 1.05 270) (size 1 1.6) (drill oval 0.6 1.2) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp ea5f77df-6e7f-460e-a299-3759699bef04))
(model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_C_Receptacle_HRO_TYPE-C-31-M-12.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model ":KIMLP_ROOT:3d/00-kiml-connector-usb.3dshapes/HRO_TYPE-C-31-M-12.step"
(offset (xyz -4.45 -3.75 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 39421189-3c19-4e19-905a-80f2fbb5f15e)
(at 115.6 76.5 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LNK1" "https://jlcpcb.com/partdetail/12256-0402WGF1001TCE/C11702")
(property "MFR" "UNI-ROYAL")
(property "MPN" "0402WGF1001TCE")
(property "Pmax" "62.5mW")
(property "SNB1" "Basic part")
(property "SPL1" "JLCPCB")
(property "SPN1" "C11702")
(property "Sheetfile" "esp32-prog.kicad_sch")
(property "Sheetname" "")
(property "Tolerance" "1%")
(property "UserValue" "1k")
(property "ki_description" "62.5mW Thick Film Resistors 50V ±100ppm/℃ ±1% -55℃~+155℃ 1kΩ 0402")
(property "ki_keywords" "R res resistor 1k 0402 1% 62.5mW")
(path "/2a284bf4-ce2e-4267-9c31-67d14200657d")
(attr smd)
(fp_text reference "R9" (at 0 1.2 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 83b8f892-b374-457e-8bfd-880571751790)
)
(fp_text value "1k_0402_0402WGF1001TCE" (at 0 1.17) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 05440399-98a5-400f-9095-0f3497fdb972)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 658ba9cf-ad3c-4cd7-8119-fddae5cdfdb2)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ec2f4a19-c37f-44e3-9efe-4825533dfb9f))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f1ad0eab-8aab-4e3f-9f29-c8a17ccf28a6))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b2f7c67e-57e8-4d98-8493-a817ccce3f24))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 27bdff62-91fe-4456-a29b-8890db5315f1))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dafc9b5e-0c51-4141-ac9d-cb090aaa6b88))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ae0f247a-bae6-49ff-a987-21578735ad62))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f43cd07b-62f6-44e0-bd1b-383328982e6a))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8625d178-0e1f-4371-be50-3f8ce17183c9))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a38831e9-c53e-4de9-b940-aad0a00b5b5f))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b73234ac-256c-40f8-b062-930520765dff))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "+5V") (pintype "passive") (tstamp e2924ebf-318d-4fca-865b-8e1274b7bbc0))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(D4-A)") (pintype "passive") (tstamp 91a18434-35eb-4520-bf7a-8420a1daa8d4))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 397b4ca8-cb48-4907-adfa-83788cfbc262)
(at 90.8 84.7)
(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 "LNK1" "https://jlcpcb.com/partdetail/TaiyoYuden-LDK105CBJ106MVLF/C386033")
(property "MFR" "Taiyo")
(property "MPN" "LDK105CBJ106MVLF")
(property "Rating" "10V")
(property "SNB1" "Extended Part")
(property "SPL1" "JLCPCB")
(property "SPN1" "C386033")
(property "Sheetfile" "esp32-prog.kicad_sch")
(property "Sheetname" "")
(property "UserValue" "10u")
(property "ki_description" "10V 10uF X5R ±20% 0402 Multilayer Ceramic Capacitors")
(property "ki_keywords" "cap capacitor 10uF 0402")
(path "/e706dbb6-33a9-4566-8145-26efeafd79ab")
(attr smd)
(fp_text reference "C1" (at 0 1.4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6b545524-4ccf-4ad5-9921-5d545ae738b9)
)
(fp_text value "10u_0402_LDK105CBJ106MVLF" (at 0 1.16) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7e566889-aaaf-4b93-8859-910d9f326120)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 0159063e-3925-475c-97b0-1c85b5c327dc)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a3ed798a-7582-4767-b6ee-63b8a9790a04))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5d1bbf3-3582-4b0a-aac1-da4e07b17086))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f6b964ae-6eab-45ca-8b66-213de7c8aac2))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 337761f6-6f65-43f8-9036-9b5882fa0c1e))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4989d731-b896-4bfa-82ed-72bdc6e1a9f9))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8a804b1d-d5a4-4f0d-a1db-73c8dc65d7f8))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 488d70f1-1937-4299-86ef-65fa898d44df))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bad798cf-6024-4fa4-8c8e-cd2b3be4d6c9))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f04a7992-fca4-458a-aadb-d9af22febe5d))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 77443591-3db0-4e17-8cd3-468ae22d3451))
(pad "1" smd roundrect (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp fd4f395d-6927-4121-a531-95079e8dbf62))
(pad "2" smd roundrect (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "VBUS") (pintype "passive") (tstamp 0f8028e9-97cf-489c-832b-21f2f7b16652))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 39bb1a11-ea1c-41ca-a146-92ee6b45d703)
(at 99.6 67.4 180)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LNK1" "https://jlcpcb.com/partdetail/TaiyoYuden-LDK105CBJ106MVLF/C386033")
(property "MFR" "Taiyo")
(property "MPN" "LDK105CBJ106MVLF")
(property "Rating" "10V")
(property "SNB1" "Extended Part")
(property "SPL1" "JLCPCB")
(property "SPN1" "C386033")
(property "Sheetfile" "esp32-prog.kicad_sch")