-
Notifications
You must be signed in to change notification settings - Fork 1
/
esp_key.kicad_pcb
9329 lines (9299 loc) · 355 KB
/
esp_key.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010f8_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber_4.0/")
)
)
(net 0 "")
(net 1 "Net-(C1-Pad1)")
(net 2 "GND")
(net 3 "+3V3")
(net 4 "Net-(C3-Pad1)")
(net 5 "Net-(D1-Pad2)")
(net 6 "Net-(D2-Pad2)")
(net 7 "/IO19")
(net 8 "/IO18")
(net 9 "Net-(R2-Pad1)")
(net 10 "Net-(R3-Pad1)")
(net 11 "unconnected-(U2-Pad4)")
(net 12 "/IO4")
(net 13 "unconnected-(U2-Pad5)")
(net 14 "unconnected-(U2-Pad6)")
(net 15 "Net-(R4-Pad2)")
(net 16 "unconnected-(U2-Pad12)")
(net 17 "unconnected-(U2-Pad11)")
(net 18 "unconnected-(U2-Pad10)")
(net 19 "Net-(IO9-Pad1)")
(net 20 "/IO1")
(net 21 "/IO0")
(net 22 "unconnected-(U2-Pad15)")
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-000060e1e393)
(at 123.9 97.8 180)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "esp_key.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060e47c7b")
(attr smd)
(fp_text reference "C5" (at -1.5 0) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp cdfc6ec1-553d-45c5-aa80-5c71daf6e689)
)
(fp_text value "0.1uF" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c2713484-173c-4790-94bf-bee2411f17b7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp b64e3184-4c2a-4ad3-9ace-0cab0f9fb880)
)
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 10a28089-5674-42bb-a719-73614959212d))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 5c923c57-69a2-473c-b56d-d3b0fb252920))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp cddf4986-64eb-49d3-8a22-27512ddee817))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp da01614e-af7d-4c85-92a9-9ba5f9b4007e))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 6d8a2c5a-ba27-44e2-8dac-27120ffc884c))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 6ef53e3e-92e6-4524-b772-0ba7a66735e1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp c7276f57-0bd3-41d4-b5ba-39e7a8eccc51))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp d2487fd4-6120-4b06-aa34-44448574d9eb))
(pad "1" smd roundrect locked (at -0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp e13c2813-da3e-487f-ba4d-d0ea170ef4ed))
(pad "2" smd roundrect locked (at 0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 0138e48b-16b9-4ed3-b99a-e3e658977e8b))
(model "${KISYS3DMOD}/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_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-00006137e17d)
(at 95.75 91 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "esp_key.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060e18e78")
(attr smd)
(fp_text reference "C2" (at 2.05 -0.5 180) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 8b5677a1-4433-4e2b-a382-50a65f3fba24)
)
(fp_text value "4.7uF" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6fb91f50-bbbc-489d-ae32-ac6f3f890c3c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp f811a572-6f08-4e6c-b7a8-110bef855e7c)
)
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer "F.SilkS") (width 0.12) (tstamp 25005c1a-790f-4c03-8227-3fafd2a3a05c))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer "F.SilkS") (width 0.12) (tstamp cbe0bc91-b4f6-4ddc-9750-e8a4a8bc0af0))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 1f1f6fcc-48af-4476-abbe-95714bbfd2b7))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 201a0ec2-3cc8-4a49-89b8-4c8181760cc5))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 749c9994-fb94-4ac6-a5df-f6b75cf196dd))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp d10b995a-116f-44e1-a0a8-ac8fdd2167c8))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp bc6fb3a8-5252-4803-9f9a-7a8c6204de41))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp cddd33fd-fe0f-4487-a2ff-2b81b80ac184))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp d33aaa2d-0c6d-4de4-bf04-323403cbb5a2))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp ea7aab5f-d04e-4081-8160-85c264620d2c))
(pad "1" smd roundrect locked (at -1.025 0 90) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173904348)
(net 3 "+3V3") (pintype "passive") (tstamp 7c8ab40b-9db3-474b-bdb7-f5892367317a))
(pad "2" smd roundrect locked (at 1.025 0 90) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173904348)
(net 2 "GND") (pintype "passive") (tstamp d4ca60e6-38df-406b-b92a-2236cf7ae583))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00006138ab49)
(at 120.2 96)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "esp_key.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060e1c057")
(attr smd)
(fp_text reference "C3" (at 1.1 -1.2) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 1156c18b-d66c-4d4d-83e5-93cef316dd36)
)
(fp_text value "1uF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 53b1328c-4f96-4461-b3d0-6118d77dfc70)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp c435c805-2700-4712-a030-e9a0205f3da4)
)
(fp_line (start -0.171267 0.51) (end 0.171267 0.51) (layer "F.SilkS") (width 0.12) (tstamp c3d61b64-602b-4387-9dfe-ea94c1c4182a))
(fp_line (start -0.171267 -0.51) (end 0.171267 -0.51) (layer "F.SilkS") (width 0.12) (tstamp e48aaf31-60da-43a3-8430-739661d42815))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 261c18b9-13f6-4621-a4a0-d2298207ad29))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 47c5e318-822d-4292-81d8-7849efd13767))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8852e667-b604-461f-ae43-5999fcbac79b))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp fb601a8b-35c8-4c58-a539-02bb638fe162))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 1cd9e535-6fd3-42e7-b7f1-e21315086a4a))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 84a30010-a359-4801-b845-592e21efea81))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp b68a88fc-cfba-40cc-a41d-851071f9fa89))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp bffb0971-d907-4a32-b47c-87eb336ee6e2))
(pad "1" smd roundrect locked (at -0.875 0) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(C3-Pad1)") (pintype "passive") (tstamp 073497e0-eb16-42f3-b9f4-c759e3480804))
(pad "2" smd roundrect locked (at 0.875 0) (size 1.05 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 7239cab5-12e5-40c0-9083-2123e0ffd4a2))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-00006138bd11)
(at 123.9 96.7 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "esp_key.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060e1bc9e")
(attr smd)
(fp_text reference "R1" (at -1.5 0 180) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 95e7ea2f-bed0-4305-9fc1-f0ec0cff0f51)
)
(fp_text value "10K" (at 0 1.17 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 39bdd9c8-51e6-46e2-82a0-6a462f118c56)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp abb0a75a-e504-455c-96d1-798f5bb0107e)
)
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 11fbda81-683e-461a-b0e2-2d52d1a8199f))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 607dfb6b-2ff7-41a3-bba5-d011860bb122))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp ca22eba7-2a25-4c70-b8ca-1c0326d441e5))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp e7d56a7f-f9dd-411c-aa07-eb899f56b127))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 429db4ec-f487-4fc3-8986-b77509c0850e))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 54e5c263-dfaf-4794-85eb-d6be7dfd25a8))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 7d0e9bce-e99e-45ac-b8c1-f74f9fe2f09b))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp c73b3649-7e18-422f-b35b-0b766e648c18))
(pad "1" smd roundrect locked (at -0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp c1afb6ce-b318-4e60-ab96-f8cb0d5ebf8c))
(pad "2" smd roundrect locked (at 0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(C3-Pad1)") (pintype "passive") (tstamp 9d4ffc79-c9f7-4dbe-a1e5-68296797753a))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-00006138d789)
(at 92.2 96 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "esp_key.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060e1d33c")
(attr smd)
(fp_text reference "R2" (at 1.6 0) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 135743ee-a21a-42d2-bcad-4c0b5ca68d87)
)
(fp_text value "10K" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 18ac394c-e910-4a62-b458-4f41043d6657)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 3e58dc1f-65dc-46d4-8142-9d3ff68b37b5)
)
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 039548f1-b3f9-469c-8480-cdc26d8f78bf))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp be5b742c-5f6b-40ea-80b7-6e56e02df1eb))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp d2573460-6991-4489-a408-7e0e716ef2b1))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp f4a2f87f-cfe2-451e-8758-43a1e4fc4712))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 105cff3a-6756-4b6c-8250-9510192391f2))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 1e4dc142-ebf5-4248-9c17-7aed279d56d3))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 5b6ec7df-1257-4d8a-a0ec-64d98f8cdbb4))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 63fea8d6-898d-4ebd-8815-03285ae569f3))
(pad "1" smd roundrect locked (at -0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(R2-Pad1)") (pintype "passive") (tstamp adc94975-aacd-469e-87bd-63e3a29a01df))
(pad "2" smd roundrect locked (at 0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp cfffebe9-0a68-482b-b1fb-67eaa3750a5b))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-00006138df0b)
(at 123.9 95.6)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "esp_key.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060e1d689")
(attr smd)
(fp_text reference "R3" (at 1.5 0) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 17d6a012-ab85-421a-8c71-65587b8a60a8)
)
(fp_text value "10K" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 879c4508-390c-4fae-b318-417b27c76c58)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 26876bb1-ded0-4839-a6a5-1610fcd55975)
)
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 077f22eb-6cb1-4414-b80e-df1d645c8218))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 0cc5ef2b-71cd-44e7-9eb8-b2eb6d015b35))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 39773248-0dca-4a17-8905-931447e04af4))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp b8bc6d50-0919-47df-b6da-5370551d99fa))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 18894160-1247-48d3-82ea-73c7b890f6e8))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 93871ded-3743-4ed8-8b31-32dc0fea8a2c))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp b16f48a2-e189-45a0-bd5a-de3133d8790e))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp e96d3d15-789a-41a5-86fd-819cc5f40923))
(pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(R3-Pad1)") (pintype "passive") (tstamp 2f313968-71cf-4e8a-890f-805864ed5bc2))
(pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp c95ec9f7-8964-473a-9f39-9fed69341129))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-000061486d40)
(at 127.1 95.566667)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "esp_key.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060e8fced")
(attr smd)
(fp_text reference "R7" (at 1.566667 0.05) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp d9c0437c-9ca4-41ed-9065-9abbdf37d3f4)
)
(fp_text value "10K" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e6d5d1fe-ede3-4dc2-90b6-78972346717c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 375f5d76-0750-4883-a752-ec3c0135c678)
)
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 6a855827-8dd0-494f-ac23-a96126b7c8de))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 70348e9a-c697-4c76-bb00-6aa86913c788))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 7bd3106d-1605-4f0e-bb56-16aaa1752c1f))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp a90ea3f6-8b43-428d-9fb3-1a2bad47a3f6))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 2a0d93d8-7807-4d42-bca1-45c4d942109d))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 7b31827c-e5ff-4098-adc1-af5474c56d52))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 7be17870-6985-43f1-94cc-192b88eeb089))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 9aa049ff-944c-4380-992e-f59e1666c91c))
(pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp dea64bb6-e027-4595-b073-488a83f5ea21))
(pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/IO4") (pintype "passive") (tstamp 1ae88fbc-4d13-4a67-ae83-0e7559180dfc))
(model "${KISYS3DMOD}/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_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-00006148dcb5)
(at 120.375 97.9)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "esp_key.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060e48315")
(attr smd)
(fp_text reference "C4" (at 2.425 1) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 71578215-baaa-4cd7-ab3c-e2444df597ca)
)
(fp_text value "10uF" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 50d50a6f-9e23-4c5f-87c7-b27a41c0494b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp e137e6be-b24d-477a-bba0-7053829ce02a)
)
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer "F.SilkS") (width 0.12) (tstamp 62ad4bd7-6ab8-4dae-b003-608eb7caf0de))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer "F.SilkS") (width 0.12) (tstamp c0216598-b398-47d6-b2ce-0b1a169d7ad5))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 477e97b3-bdc6-49a9-ab2e-84886f192b55))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 56f8af84-6116-4921-b7d4-59fe699c55be))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp d43892e5-a018-45e6-a760-0032ff58e242))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp fe9966f2-d991-4575-8d71-23ba65d7f72d))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 188ce92d-a7b9-4456-880f-97638f84f611))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 43c0a621-6bb0-4b26-80cf-de73982eb46d))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 6c538bdb-7fb1-4e34-b7c8-05509df45f0e))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp a3be501e-a03b-4839-bf2c-19961bf42b19))
(pad "1" smd roundrect locked (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173904348)
(net 3 "+3V3") (pintype "passive") (tstamp 6a79a24b-bf15-40bb-ba60-01728fd49518))
(pad "2" smd roundrect locked (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173904348)
(net 2 "GND") (pintype "passive") (tstamp cc323d1d-bd34-4583-8cec-6f47d3d10610))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.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 5B301BBE) (tstamp 00000000-0000-0000-0000-0000614955b4)
(at 127.1 94.45 180)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "esp_key.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060ea53da")
(attr smd)
(fp_text reference "C6" (at -1.566667 0.066666) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 1df5b98a-5d5d-40d1-88ad-f1e1466209d6)
)
(fp_text value "0.1uF" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 24182f47-75d3-4a75-9c90-b4c415af35c0)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp bb2919ba-281e-4e7c-bfab-0d3c409df7a5)
)
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 2442b896-7e64-42e7-81cf-708a897d45fc))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 4601237e-0ae9-473b-bc73-2d7ceae44f53))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp a845bed5-0c4e-47a0-9ae8-5a45379cc369))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp b6f2cc64-f770-48b1-bcff-305f62a1e9ba))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 0ce04ad1-e517-465d-bb62-47bc72a1aa7f))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 15434181-b20a-4476-948e-fb3e5f06e1b6))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 3d2327a6-83c1-4b15-9db6-88ea22b50fa6))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 7d24e48c-59c9-4d9e-afab-707c55ada516))
(pad "1" smd roundrect locked (at -0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/IO4") (pintype "passive") (tstamp bf63b112-d14b-4889-8760-d2c37081a89b))
(pad "2" smd roundrect locked (at 0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 4d2f39bf-ec94-4a7a-ae28-30bb62f6f341))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-0000614955de)
(at 127.1 93.366667 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "esp_key.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060ea4e48")
(attr smd)
(fp_text reference "R4" (at -1.566667 0) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp ac607382-f866-4f5a-900a-bcfc9e4450f7)
)
(fp_text value "470R" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6f2fb73c-0f6f-43a5-86ff-ea083b4e3668)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp ba0f494a-2f8c-48de-8ca3-1f40fd6089cf)
)
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 65cb8a31-d473-406c-be6c-56f056178b82))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 8cb67e0c-a16d-4a30-a8c2-c401e79c541b))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp a681b933-18c3-4030-af3d-26ba176fe28c))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp a9d74b65-9854-42ce-8c9c-9308c3c71468))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 054902ab-5b25-46bd-9e74-a06c243f6022))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 309cf463-9f60-49c0-8dfc-53fc6e2f72c5))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 3862f8c5-b460-4000-92be-98f36621b42f))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp ceede7ef-af60-4135-9e10-10e76c8104ac))
(pad "1" smd roundrect locked (at -0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/IO4") (pintype "passive") (tstamp af0c780d-bf68-47dc-83c0-28a10e8f83f6))
(pad "2" smd roundrect locked (at 0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "Net-(R4-Pad2)") (pintype "passive") (tstamp 141a94b7-d92b-4da2-85bb-6507f2cc5c82))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-000061495a0f)
(at 92.2 98.4)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "esp_key.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060e1b7a3")
(attr smd)
(fp_text reference "R6" (at -1.6 0) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp ca7e3f8e-561d-4bb8-a537-203a89f447d4)
)
(fp_text value "1K" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da0ec586-e11c-4318-bf69-19a3b93bc428)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 2bc8310b-ebad-488b-a59d-59776a55d595)
)
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 1c4cdbae-1af2-4a56-9254-940dc0ec7afb))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 4d6a1e21-15a5-45b8-9cea-82d97fe09975))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 65f636c5-2128-447c-9a65-22f468f285c4))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 8c9c5c12-0654-4433-9bd9-a8cbf544e03f))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 1246ca30-c955-44ab-ba21-5f0f2294ee20))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 332939ec-1bce-4f74-8e61-1c188941f522))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 3ccab9b2-bbe2-4481-afd6-4b089d9436cd))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp e687d607-0988-4ae6-a381-d2478c03d85c))
(pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp 9cdd8e5e-ef1a-4a89-a928-3c7102877007))
(pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(D2-Pad2)") (pintype "passive") (tstamp 0107a9f9-bda6-4632-b302-2d25362ed9fa))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5B4B45C9) (tstamp 00000000-0000-0000-0000-000061495a3d)
(at 95.5 97.75 180)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "LED handsolder")
(property "Sheetfile" "esp_key.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060e1a014")
(attr smd)
(fp_text reference "D2" (at 0 -1.55) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 3e17fe7b-c957-4c41-b8da-f0cab22085e2)
)
(fp_text value "LED" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b8af5c19-1d50-4f9b-9244-0d0032052b76)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 179d508a-0ff7-4bf7-bee0-e46b0db32b1c)
)
(fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer "F.SilkS") (width 0.12) (tstamp 2523ed61-d6a8-486a-a496-c4fa0adf2a49))
(fp_line (start -1.86 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp 9edd16ff-6e1f-4840-b860-2e834dfa7565))
(fp_line (start 1 -0.96) (end -1.86 -0.96) (layer "F.SilkS") (width 0.12) (tstamp e003c607-c40f-4fed-bc03-2efd7a891a71))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp d120351c-e120-41cf-a695-c475868cf8e1))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp dae1fe65-4e5d-4182-bc1b-4e5014c0d0ac))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp e29f4949-540b-4974-9b86-c3faaff4d5a5))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp ebf42cb7-1a46-4230-a62a-19646bcf8f16))
(fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp 2bdbeaa2-008e-4e64-b6fc-7cc997ba5cfd))
(fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp 7ab41950-ff04-4998-8cbb-779898fd9de7))
(fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 83d14c78-c758-44a9-9ca0-460793324f0b))
(fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 83d622d2-1754-4e0d-9842-9e09c3b0d73f))
(fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp bf69461b-132c-4ff8-85de-421e6a908287))
(pad "1" smd roundrect locked (at -1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173904348)
(net 21 "/IO0") (pinfunction "K") (pintype "passive") (tstamp ce0e814b-a764-4b27-a9b0-d17b9b75987e))
(pad "2" smd roundrect locked (at 1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173904348)
(net 6 "Net-(D2-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 56938a2e-9ef0-47fc-b42b-c873a1b2d289))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-000061495a6f)
(at 92.2 97.2)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "esp_key.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060e1b452")
(attr smd)
(fp_text reference "R5" (at -1.6 0) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 1af903e8-f472-4d3b-a968-94d2bc14bd7c)
)
(fp_text value "1K" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6255a7ec-486d-470a-bf9c-57210bf779fa)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp ad45763d-59f5-4205-88ca-986162fa1a33)
)
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 436c0dd2-5330-4d9e-b7ea-00d45ad7ac53))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 6a69d7de-4a94-4b58-9b19-71f6cad427d3))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp b1d7dd66-4bf1-4959-bb0f-118c1f42f698))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp ba89a08c-73cf-47d0-af14-10ccad994e4b))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 2bbffdb6-8cde-4515-bafd-aee2e1dd4de3))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 68d7dfb2-7144-4944-a3d4-1c9ad5270d96))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp a45f1eca-5761-411f-8303-123988201288))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp cc59f745-9f9f-476d-9867-ecd309a8fc12))
(pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp 6c8f8935-7dd6-40d6-a468-08a3221b7bc4))
(pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(D1-Pad2)") (pintype "passive") (tstamp 02839e10-99c5-4fe3-85b6-022697c4a4fe))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5B4B45C9) (tstamp 00000000-0000-0000-0000-000061495a9d)
(at 95.5 95.45 180)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "LED handsolder")
(property "Sheetfile" "esp_key.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060e19d8f")
(attr smd)
(fp_text reference "D1" (at 0.1 1.45) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 801f7cd0-028f-4b38-b1fb-5738f3e2d821)
)
(fp_text value "LED" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e27dc6de-b8be-4e90-b8c8-c83dfd348362)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 94e1e338-9a9a-43a2-8684-0da306af0a9b)
)
(fp_line (start -1.86 0.96) (end 1 0.96) (layer "F.SilkS") (width 0.12) (tstamp 155dc36b-e832-478e-a82e-0cd5fc7f3068))
(fp_line (start 1 -0.96) (end -1.86 -0.96) (layer "F.SilkS") (width 0.12) (tstamp 27c6e0d9-e44c-4eaf-812e-e994580e43b8))
(fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer "F.SilkS") (width 0.12) (tstamp 710650c4-c75f-4b70-ae46-56510fe4ecd1))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 2205d0d2-3eeb-43e6-8fe1-17ce0848505e))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 41ccda2b-cf9e-45b2-af66-9ec654626c0e))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4a3a21b0-0d13-4305-a919-82196fceeaee))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp a69688f6-0447-4eab-8994-f93c877ec861))
(fp_line (start -1 0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 1ee41783-de58-4579-8798-36908d85b958))
(fp_line (start 1 -0.6) (end -0.7 -0.6) (layer "F.Fab") (width 0.1) (tstamp 28d2d82d-28db-43b1-aa8b-9886a9661c90))
(fp_line (start -0.7 -0.6) (end -1 -0.3) (layer "F.Fab") (width 0.1) (tstamp 4bfd97a2-0721-4f1a-be42-bd12f653bd56))
(fp_line (start 1 0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 51276351-f761-41e2-bd7c-d6750c380f84))
(fp_line (start -1 -0.3) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp a5c58c9c-0dfa-4545-a438-33a81d88291c))
(pad "1" smd roundrect locked (at -1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173904348)
(net 20 "/IO1") (pinfunction "K") (pintype "passive") (tstamp d6975d60-2433-4948-863f-602f8bac43f7))
(pad "2" smd roundrect locked (at 1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173904348)
(net 5 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 714bc59b-2124-4796-b2fb-99cdaffa80ce))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-000061496677)
(at 91.35 94.2375 180)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "esp_key.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060e19170")
(attr smd)
(fp_text reference "C1" (at 2.45 0.7375) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 7a9cb195-8b2e-413c-b8d5-d1bf7ab4591e)
)
(fp_text value "2.2uF" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 104aaf88-2193-4d38-95df-79250ec9983f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 39c46d0a-1191-4541-abc7-62130957955c)
)
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer "F.SilkS") (width 0.12) (tstamp 7b50a8fe-0a2c-4f54-9471-503fb9544c91))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer "F.SilkS") (width 0.12) (tstamp e89171c2-8e00-4a24-b62b-5e8bc870e535))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 0453542c-53ce-479e-b44f-0da79b288c50))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 0d3b5add-0a78-4a0b-8af9-ea338a610805))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 80c942cb-5832-4009-8a08-b268435b6e64))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp da09c3c1-183f-47d2-bd9f-67cc4bb5e53a))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 321cbe42-4753-4f4b-90d8-8a864348489b))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 973ed12c-fb41-40b7-88be-2e6f0de30cab))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp b5071b67-ec28-4751-86ed-579dc1ffe399))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp e9752535-1ee5-4573-9640-c2af1206153e))
(pad "1" smd roundrect locked (at -1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173904348)
(net 1 "Net-(C1-Pad1)") (pintype "passive") (tstamp ebf2949c-2822-48be-bf9d-a1c53211d661))
(pad "2" smd roundrect locked (at 1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173904348)
(net 2 "GND") (pintype "passive") (tstamp bbe2525c-09dc-4654-8b30-1ed391f60bc5))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Espressif:ESP32-C3-WROOM-02U" (layer "F.Cu")
(tedit 635FCF03) (tstamp 2502545f-d9e5-46f3-a70b-76b215d12ea6)
(at 108.4 92.2 180)
(descr "ESP32-C3-WROOM-02: https://www.espressif.com/sites/default/files/documentation/esp32-c3-wroom-02_datasheet_en.pdf")
(tags "ESP32-C3")
(property "Sheetfile" "esp_key.kicad_sch")
(property "Sheetname" "")
(path "/0ac432f2-7ada-442f-ac13-36866b8213c7")
(attr smd)
(fp_text reference "U2" (at 0 -9.1) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 595408ad-b580-420a-b0b0-02a2420cf2ec)
)
(fp_text value "ESP32-C3-WROOM-02" (at 0 8.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 46fdcc38-f60d-4451-8a38-ffc3d1769b1c)
)
(fp_text user "${REFERENCE}" (at 0 -1.6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b1673649-1161-453f-b3e4-504bc80aac10)
)
(fp_line (start -9 7.15) (end -9 6.9) (layer "F.SilkS") (width 0.12) (tstamp 3b8f926c-b95f-44de-84b1-e97bd3afe05f))
(fp_line (start 9 -7.15) (end 9 -6.65) (layer "F.SilkS") (width 0.12) (tstamp a5c8aeb9-ff43-4a00-b7d1-f21222227a8f))
(fp_line (start 9 6.9) (end 9 7.15) (layer "F.SilkS") (width 0.12) (tstamp adcd0ff9-a1f1-4808-a906-babf31b15ed4))
(fp_line (start -9 -7.15) (end -9 -6.65) (layer "F.SilkS") (width 0.12) (tstamp b8753653-d83e-4bf0-9193-45bf0fc34d85))
(fp_line (start 9 -7.15) (end -9 -7.15) (layer "F.SilkS") (width 0.12) (tstamp cf878082-724b-4596-a0da-2865b321a320))
(fp_line (start 9 7.15) (end -9 7.15) (layer "F.SilkS") (width 0.12) (tstamp ee9a5368-878e-460e-8d5b-61d775ac14ff))
(fp_poly (pts
(xy 9.8 7.45)
(xy -9.8 7.45)
(xy -9.8 -7.45)
(xy 9.8 -7.45)
) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 96dad360-9096-4b2a-9187-76b6c31a0ab7))
(fp_line (start -9 -7.15) (end 9 -7.15) (layer "F.Fab") (width 0.1) (tstamp 175b148f-9b77-4ace-92fa-f9e6a9e90321))
(fp_line (start 9 7.15) (end -9 7.15) (layer "F.Fab") (width 0.1) (tstamp 381a94eb-5bb3-425a-8905-729cf5afd911))
(fp_line (start 9 -7.15) (end 9 7.15) (layer "F.Fab") (width 0.1) (tstamp 45fd8d3b-78b0-42b8-8995-2934ca636b7a))
(fp_line (start -9 7.15) (end -9 -7.15) (layer "F.Fab") (width 0.1) (tstamp 87c224ea-6e2f-4619-b92c-961407408814))
(pad "1" smd rect (at -8.75 -5.75 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+3V3") (pinfunction "3V3") (pintype "power_in") (tstamp 3640bc84-4ebe-40aa-b0f0-d08dc8ac3b05))
(pad "2" smd rect (at -8.75 -4.25 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(C3-Pad1)") (pinfunction "EN/CHIP_PU") (pintype "input") (tstamp 44364eaf-adf2-4bc0-823d-4fd8d4c31dde))
(pad "3" smd rect (at -8.75 -2.75 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "/IO4") (pinfunction "GPIO4/ADC1_CH4") (pintype "bidirectional") (tstamp 20d79622-e258-41ae-a902-cf4431bb0694))
(pad "4" smd rect (at -8.75 -1.25 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "unconnected-(U2-Pad4)") (pinfunction "GPIO5/ADC2_CH0") (pintype "bidirectional+no_connect") (tstamp 81a2b102-40c7-4bc9-868f-893533194e48))
(pad "5" smd rect (at -8.75 0.25 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "unconnected-(U2-Pad5)") (pinfunction "GPIO6") (pintype "bidirectional+no_connect") (tstamp 72862915-6110-4772-81fe-26f122357ba7))
(pad "6" smd rect (at -8.75 1.75 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "unconnected-(U2-Pad6)") (pinfunction "GPIO7") (pintype "bidirectional+no_connect") (tstamp 9f45ddb9-522b-49f1-8633-3103f7278e72))
(pad "7" smd rect (at -8.75 3.25 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "Net-(R3-Pad1)") (pinfunction "GPIO8") (pintype "bidirectional") (tstamp 8aa9b5a5-b4e2-4389-af67-3f696fbd25bd))
(pad "8" smd rect (at -8.75 4.75 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "Net-(IO9-Pad1)") (pinfunction "GPIO9") (pintype "bidirectional") (tstamp 2c625083-34ed-499c-906c-9e84dbf7eb26))
(pad "9" smd rect (at -8.75 6.25 180) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 16b96488-4e3a-40df-afae-67f9e7a33b18))
(pad "10" smd rect (at 8.75 6.25) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "unconnected-(U2-Pad10)") (pinfunction "GPIO10") (pintype "bidirectional+no_connect") (tstamp 8e85f6b2-6515-4d6f-afc0-bc90d469ae51))
(pad "11" smd rect (at 8.75 4.75) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "unconnected-(U2-Pad11)") (pinfunction "GPIO20/U0RXD") (pintype "bidirectional+no_connect") (tstamp b6be78dd-6d32-43b9-95c2-c1b4a88f37b6))
(pad "12" smd rect (at 8.75 3.25) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "unconnected-(U2-Pad12)") (pinfunction "GPIO21/U0TXD") (pintype "bidirectional+no_connect") (tstamp 91e4cd34-7940-4532-ae95-197aff080d69))
(pad "13" smd rect (at 8.75 1.75) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "/IO18") (pinfunction "GPIO18/USB_D-") (pintype "bidirectional") (tstamp 4ab6455c-b7ec-4788-86b1-0bc2cb984150))
(pad "14" smd rect (at 8.75 0.25) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "/IO19") (pinfunction "GPIO19/USB_D+") (pintype "bidirectional") (tstamp 79e6cbcc-1593-4b59-9a3e-705588773c6e))
(pad "15" smd rect (at 8.75 -1.25) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "unconnected-(U2-Pad15)") (pinfunction "GPIO3/ADC1_CH3") (pintype "bidirectional+no_connect") (tstamp 1b26427a-a99b-4ff0-aa26-1cad229d2659))
(pad "16" smd rect (at 8.75 -2.75) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "Net-(R2-Pad1)") (pinfunction "GPIO2/ADC1_CH2") (pintype "bidirectional") (tstamp b6cfa625-554f-4577-94ba-35de3e62abc0))
(pad "17" smd rect (at 8.75 -4.25) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "/IO1") (pinfunction "GPIO1/ADC1_CH1/XTAL_32K_N") (pintype "bidirectional") (tstamp 0b3f7bcd-0989-4027-bd23-097d581449e8))
(pad "18" smd rect (at 8.75 -5.75) (size 1.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "/IO0") (pinfunction "GPIO0/ADC1_CH0/XTAL_32K_P") (pintype "bidirectional") (tstamp 1549f9d7-b817-4406-b786-f4323ca04713))
(pad "19" smd rect (at 0.91 1.55) (size 0.7 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 052804eb-6df0-41bc-bc18-26bbb1b43852))
(pad "19" smd rect (at 2.06 1.55) (size 0.7 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 10b4630f-5aa6-44bb-a79b-31aeb211e130))
(pad "19" smd rect (at -0.14 1.55) (size 0.7 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 1c9b4e4a-abd2-4c7c-8c50-f2a76a3d4100))
(pad "19" smd rect (at -0.14 -0.65) (size 0.7 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 279bc95a-9f01-4f21-9dcd-5b16be346a84))
(pad "19" smd rect (at -0.14 0.45) (size 0.7 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 52025f9b-6ac0-46a8-9e1b-a475923c51b0))
(pad "19" smd rect (at 0.91 -0.65) (size 0.7 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 5c803341-60fa-472c-9183-839e6b6a835d))
(pad "19" smd rect (at 0.91 0.45) (size 0.7 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 6845aa15-c06f-4552-bda7-d55b086f240b))
(pad "19" smd rect (at 2.06 -0.65) (size 0.7 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp e010a610-7bbc-45f5-b84c-c131b0dcd442))
(pad "19" smd rect (at 2.06 0.45) (size 0.7 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp f3b18e23-d353-477a-82b1-954e64d2da73))
(model "${ESPRESSIF_3DMODELS}/ESP32-C3-WROOM-02U.STEP"
(offset (xyz -9 -7.15 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-923" (layer "F.Cu")
(tedit 5E05C456) (tstamp 437e0198-07c9-4389-9508-87ad1f505ddf)
(at 97.6 90.5 90)
(descr "https://www.onsemi.com/pub/Collateral/ESD9B-D.PDF#page=4")
(tags "Diode SOD923")
(property "Sheetfile" "esp_key.kicad_sch")
(property "Sheetname" "")
(path "/bb2d6967-8561-41d9-9a2a-ca305e0ccfb1")
(attr smd)
(fp_text reference "D4" (at 1.2 0 180) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 2ee133e6-0f5a-4d0b-810e-05838ed66e16)
)
(fp_text value "ESD9B5.0ST5G" (at 0 1.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f547f52d-2656-4167-be64-879e02e4f51d)
)
(fp_text user "${REFERENCE}" (at 0 -1.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba2f4a52-b164-46c3-89fe-15e871e19f17)
)
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "F.SilkS") (width 0.12) (tstamp 3cccd6b0-658b-439b-bb21-4096ea1c2efd))
(fp_line (start 0.5 -0.4) (end -0.8 -0.4) (layer "F.SilkS") (width 0.12) (tstamp a709651b-0d3a-4d3b-adfe-47c16819a803))
(fp_line (start 0.5 0.4) (end -0.8 0.4) (layer "F.SilkS") (width 0.12) (tstamp ec634da5-be5c-4fb5-a68f-68921c0b4d93))
(fp_line (start -0.55 -0.28) (end -0.55 -0.45) (layer "F.CrtYd") (width 0.05) (tstamp 00a1a0fc-7cc9-4da1-b6de-aa3571c9943a))
(fp_line (start 0.55 0.45) (end -0.55 0.45) (layer "F.CrtYd") (width 0.05) (tstamp 0f2da3b7-4ca0-499d-8614-e23b42f8aa60))
(fp_line (start 0.75 -0.28) (end 0.75 0.28) (layer "F.CrtYd") (width 0.05) (tstamp 25952cea-8db0-4839-812f-fbc89814cead))
(fp_line (start 0.55 -0.28) (end 0.75 -0.28) (layer "F.CrtYd") (width 0.05) (tstamp 3374806a-ebb8-4997-8ba3-a63b5127aa08))
(fp_line (start -0.55 0.45) (end -0.55 0.28) (layer "F.CrtYd") (width 0.05) (tstamp 34953a63-f4a1-4fe2-90ac-e47cbc36be28))
(fp_line (start -0.55 -0.45) (end 0.55 -0.45) (layer "F.CrtYd") (width 0.05) (tstamp 413efbf1-4ffe-4d4e-b205-154e6a37ceeb))
(fp_line (start 0.75 0.28) (end 0.55 0.28) (layer "F.CrtYd") (width 0.05) (tstamp 6009180b-a275-44c8-99d4-faf8cd1d452b))
(fp_line (start -0.75 -0.28) (end -0.75 0.28) (layer "F.CrtYd") (width 0.05) (tstamp 6b0091e6-5074-46ad-a1c0-627b795e8eee))
(fp_line (start -0.55 -0.28) (end -0.75 -0.28) (layer "F.CrtYd") (width 0.05) (tstamp 7ee450b2-6d88-45e4-bf54-dc1c1199adb3))
(fp_line (start 0.55 -0.45) (end 0.55 -0.28) (layer "F.CrtYd") (width 0.05) (tstamp 8fb9f1fb-958e-450c-b217-cafb69db6c87))
(fp_line (start -0.75 0.28) (end -0.55 0.28) (layer "F.CrtYd") (width 0.05) (tstamp d1039129-f7c2-4181-9f22-f2f2c7b6e24f))
(fp_line (start 0.55 0.28) (end 0.55 0.45) (layer "F.CrtYd") (width 0.05) (tstamp d22b493b-730f-43c5-aaea-e4683d299cb5))
(fp_line (start 0.4 0.3) (end -0.4 0.3) (layer "F.Fab") (width 0.1) (tstamp 06d23b1b-680b-412d-b6b4-7492534db3e7))
(fp_line (start -0.15 0) (end -0.25 0) (layer "F.Fab") (width 0.1) (tstamp 22651fb0-c942-48f2-bb6d-58a39cc96018))
(fp_line (start 0.15 -0.2) (end -0.15 0) (layer "F.Fab") (width 0.1) (tstamp 4215d1cc-f18d-40ff-a858-dfee33700f61))
(fp_line (start 0.15 0.2) (end 0.15 -0.2) (layer "F.Fab") (width 0.1) (tstamp 42698b55-ad05-474f-8bee-9b303566e1ac))
(fp_line (start -0.4 -0.3) (end 0.4 -0.3) (layer "F.Fab") (width 0.1) (tstamp 4d1c0491-b8c2-4c31-b4e4-12ee5aef8308))
(fp_line (start -0.15 0.2) (end -0.15 -0.2) (layer "F.Fab") (width 0.1) (tstamp 4f2366fe-7708-4e5b-a9dd-df3a8987f089))
(fp_line (start -0.15 0) (end 0.15 0.2) (layer "F.Fab") (width 0.1) (tstamp 5e525df3-d150-4a5c-bf06-4fcad6e824d4))
(fp_line (start 0.15 0) (end 0.25 0) (layer "F.Fab") (width 0.1) (tstamp 800294e5-2034-437e-9335-b20965a2d1bf))
(fp_line (start 0.4 -0.3) (end 0.4 0.3) (layer "F.Fab") (width 0.1) (tstamp d8ab3094-2bcb-4e12-ad49-3fe9176279b5))
(fp_line (start -0.4 0.3) (end -0.4 -0.3) (layer "F.Fab") (width 0.1) (tstamp dc54e460-df3c-49e5-a91d-01fe15df6b31))
(pad "1" smd rect (at -0.42 0 270) (size 0.36 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "/IO18") (pinfunction "A1") (pintype "passive") (tstamp 2d56b29d-3727-4739-87f2-40decf9056b6))
(pad "2" smd rect (at 0.42 0 270) (size 0.36 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "A2") (pintype "passive") (tstamp 1fd52fbd-8573-435e-9eda-ba12465a7a37))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-923.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-923" (layer "F.Cu")
(tedit 5E05C456) (tstamp 4ecd46a4-098f-4a74-ae32-077f7edd8625)
(at 97.6 92.4 -90)
(descr "https://www.onsemi.com/pub/Collateral/ESD9B-D.PDF#page=4")
(tags "Diode SOD923")
(property "Sheetfile" "esp_key.kicad_sch")
(property "Sheetname" "")
(path "/c2e3bc8e-d658-46b3-9bb7-ede1ed8d5240")
(attr smd)
(fp_text reference "D5" (at 1.2 0 180) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 6495fea7-b5f4-4477-98ae-f5439d605187)
)
(fp_text value "ESD9B5.0ST5G" (at 0 1.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 185be630-35c6-4051-a4d4-a9588d6129bf)
)
(fp_text user "${REFERENCE}" (at 0 -1.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 80419ba3-1122-42c6-8e79-0e82f1016b6e)
)
(fp_line (start 0.5 0.4) (end -0.8 0.4) (layer "F.SilkS") (width 0.12) (tstamp 027959f9-ca20-4d48-84f3-f34a6f8841c4))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "F.SilkS") (width 0.12) (tstamp 3ac04d26-43e2-4035-a505-0202a8d2e855))
(fp_line (start 0.5 -0.4) (end -0.8 -0.4) (layer "F.SilkS") (width 0.12) (tstamp 602ff8e3-8035-48c8-9c9d-c476ed03a1ec))
(fp_line (start -0.75 -0.28) (end -0.75 0.28) (layer "F.CrtYd") (width 0.05) (tstamp 0f7d27ed-f163-4169-94ae-5571937f5c6d))
(fp_line (start 0.55 0.28) (end 0.55 0.45) (layer "F.CrtYd") (width 0.05) (tstamp 3353b0a4-241e-4fdd-bf54-b84fe33782fb))
(fp_line (start -0.55 -0.28) (end -0.55 -0.45) (layer "F.CrtYd") (width 0.05) (tstamp 3e8481d1-a44a-4a67-ae6c-18e3f5d3f168))
(fp_line (start 0.55 -0.28) (end 0.75 -0.28) (layer "F.CrtYd") (width 0.05) (tstamp 55c00529-02b2-4df2-8b9b-1bedd9e9e3b0))
(fp_line (start 0.55 -0.45) (end 0.55 -0.28) (layer "F.CrtYd") (width 0.05) (tstamp 56d6e16f-85f8-43e9-b97b-c48b4ee1441e))
(fp_line (start -0.75 0.28) (end -0.55 0.28) (layer "F.CrtYd") (width 0.05) (tstamp 577aac0c-a471-415d-bccd-28c5fb9a96ef))
(fp_line (start -0.55 -0.45) (end 0.55 -0.45) (layer "F.CrtYd") (width 0.05) (tstamp 5ff50ec2-e771-4e2d-95e8-dda321d26126))
(fp_line (start 0.75 0.28) (end 0.55 0.28) (layer "F.CrtYd") (width 0.05) (tstamp 7deb3b03-d4eb-45fd-979b-e0c8f3caa1ad))
(fp_line (start 0.55 0.45) (end -0.55 0.45) (layer "F.CrtYd") (width 0.05) (tstamp 9a097812-a046-410e-bb24-d53d1f7dcf31))
(fp_line (start 0.75 -0.28) (end 0.75 0.28) (layer "F.CrtYd") (width 0.05) (tstamp c80e1507-9591-4b20-82c3-95a70b853744))
(fp_line (start -0.55 -0.28) (end -0.75 -0.28) (layer "F.CrtYd") (width 0.05) (tstamp d55809a3-8c68-437c-b686-80ef558881f9))
(fp_line (start -0.55 0.45) (end -0.55 0.28) (layer "F.CrtYd") (width 0.05) (tstamp dbd73918-328c-4b37-9eca-83b965938f35))
(fp_line (start -0.4 -0.3) (end 0.4 -0.3) (layer "F.Fab") (width 0.1) (tstamp 17608e51-1b22-4bce-95d2-8e93b8574084))
(fp_line (start 0.15 0.2) (end 0.15 -0.2) (layer "F.Fab") (width 0.1) (tstamp 2406ffb1-7c61-4b02-8c21-339434f7cc37))
(fp_line (start 0.4 -0.3) (end 0.4 0.3) (layer "F.Fab") (width 0.1) (tstamp 35d3f344-57f5-431f-9b91-8f88d1e385ac))
(fp_line (start -0.4 0.3) (end -0.4 -0.3) (layer "F.Fab") (width 0.1) (tstamp 36321b52-485d-4469-864b-5be2a1ba08d3))
(fp_line (start 0.15 -0.2) (end -0.15 0) (layer "F.Fab") (width 0.1) (tstamp 6496b99f-059b-4766-87c7-1d2a4210ca21))
(fp_line (start 0.15 0) (end 0.25 0) (layer "F.Fab") (width 0.1) (tstamp 8310869d-f52a-4a9b-9c07-613c06e87a9f))
(fp_line (start -0.15 0) (end -0.25 0) (layer "F.Fab") (width 0.1) (tstamp 9eb79e0e-6946-46f5-9598-f49f58eefedd))
(fp_line (start -0.15 0.2) (end -0.15 -0.2) (layer "F.Fab") (width 0.1) (tstamp d905eac3-674d-4b4c-ac8f-7be13c5d021c))
(fp_line (start 0.4 0.3) (end -0.4 0.3) (layer "F.Fab") (width 0.1) (tstamp de735d25-a18e-4ae2-854f-e0fa1facd849))
(fp_line (start -0.15 0) (end 0.15 0.2) (layer "F.Fab") (width 0.1) (tstamp ec431f2f-b447-47ac-9177-3ea3fe30af53))
(pad "1" smd rect (at -0.42 0 90) (size 0.36 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "/IO19") (pinfunction "A1") (pintype "passive") (tstamp c99c5d6a-04f8-4fcb-9b5d-23340523082a))
(pad "2" smd rect (at 0.42 0 90) (size 0.36 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "A2") (pintype "passive") (tstamp 7bf012ce-45fd-48a7-bf1b-6661eaccc823))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-923.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-89-3" (layer "F.Cu")
(tedit 5C33D6E8) (tstamp 7b23b7b0-bcc9-4190-86ea-ea4c78658d16)
(at 92 90.4 90)
(descr "SOT-89-3, http://ww1.microchip.com/downloads/en/DeviceDoc/3L_SOT-89_MB_C04-029C.pdf")
(tags "SOT-89-3")
(property "Sheetfile" "esp_key.kicad_sch")
(property "Sheetname" "")
(path "/23ca4575-71d2-4a4b-ae23-f9861d1f4ef6")
(attr smd)
(fp_text reference "U1" (at 2 -3.5 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 213afa3f-bc8f-44e5-af04-880d4275a52c)
)
(fp_text value "HT75xx-1-SOT89" (at 0.3 3.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6c54223d-b2e3-4c78-88ff-6b1407777cad)
)
(fp_text user "${REFERENCE}" (at 0.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d9856d01-c868-41e6-aa90-5eb2f1bfa551)
)
(fp_line (start -1.06 -2.36) (end -1.06 -2.13) (layer "F.SilkS") (width 0.12) (tstamp 089a3a75-1fdc-442e-bb1e-23df61621c11))
(fp_line (start -2.2 -2.13) (end -1.06 -2.13) (layer "F.SilkS") (width 0.12) (tstamp 2b79a0b6-70cf-4fa3-a495-904f3647e9f3))
(fp_line (start -1.06 -2.36) (end 1.66 -2.36) (layer "F.SilkS") (width 0.12) (tstamp 981a0a2f-1349-4f62-b99a-1fbf87d59e51))
(fp_line (start 1.66 2.36) (end -1.06 2.36) (layer "F.SilkS") (width 0.12) (tstamp ab62eb10-60ce-4307-ac9d-8d0cac3c24e8))
(fp_line (start 1.66 1.05) (end 1.66 2.36) (layer "F.SilkS") (width 0.12) (tstamp b674dac5-7443-4369-b616-fc54b2437348))
(fp_line (start 1.66 -2.36) (end 1.66 -1.05) (layer "F.SilkS") (width 0.12) (tstamp bdf95b53-69e0-4453-8df5-d7c6566d3946))
(fp_line (start -1.06 2.36) (end -1.06 2.13) (layer "F.SilkS") (width 0.12) (tstamp d123ceb6-665d-4af3-bff5-bd4313984658))
(fp_line (start -2.55 2.5) (end 2.55 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 32a6e7ad-220f-433a-a9b3-9d1c9922ee31))
(fp_line (start 2.55 -2.5) (end -2.55 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 43924e53-ed70-401d-83e6-ce38f771e222))
(fp_line (start -2.55 2.5) (end -2.55 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 44922422-2984-48cc-b24a-106d3d0150fe))
(fp_line (start 2.55 -2.5) (end 2.55 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 490895de-5767-4952-8f04-de8dcad2a08f))
(fp_line (start 1.55 -2.25) (end 1.55 2.25) (layer "F.Fab") (width 0.1) (tstamp 5cf0c238-fa2c-40d7-a3f5-b796b4d95e3d))
(fp_line (start 0.05 -2.25) (end 1.55 -2.25) (layer "F.Fab") (width 0.1) (tstamp 6321d25e-d590-494f-b227-c6257b186c4d))
(fp_line (start 1.55 2.25) (end -0.95 2.25) (layer "F.Fab") (width 0.1) (tstamp 6fdbac54-5356-4da3-a3f7-8ea6f9197585))
(fp_line (start -0.95 -1.25) (end 0.05 -2.25) (layer "F.Fab") (width 0.1) (tstamp a59800cd-485d-4e55-bd3d-a3e53ea521e0))
(fp_line (start -0.95 2.25) (end -0.95 -1.25) (layer "F.Fab") (width 0.1) (tstamp b6809116-fffe-4f68-8372-167b49bc4247))
(pad "1" smd rect (at -1.65 -1.5 90) (size 1.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 717cfc37-0ecb-44b2-a665-fa553d1126c3))
(pad "2" smd custom (at -1.5625 0 90) (size 1.475 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "Net-(C1-Pad1)") (pinfunction "VIN") (pintype "power_in") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly (pts
(xy 3.8625 0.8665)
(xy 0.7375 0.8665)
(xy 0.7375 -0.8665)
(xy 3.8625 -0.8665)
) (width 0) (fill yes))
) (tstamp c9a9a58f-698d-4d10-951b-d2efad45bda3))
(pad "3" smd rect (at -1.65 1.5 90) (size 1.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+3V3") (pinfunction "VOUT") (pintype "power_out") (tstamp 0cc35ade-e4a4-4aef-b584-16d458f7141d))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-89-3.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-923" (layer "F.Cu")
(tedit 5E05C456) (tstamp e4e15662-3291-456d-bed2-7f472922763a)
(at 95.4 87.4)
(descr "https://www.onsemi.com/pub/Collateral/ESD9B-D.PDF#page=4")
(tags "Diode SOD923")
(property "Sheetfile" "esp_key.kicad_sch")
(property "Sheetname" "")
(path "/db877157-d074-4ad0-b97d-e1e4b4b4c08c")
(attr smd)