-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcertification-board.kicad_pcb
1842 lines (1806 loc) · 130 KB
/
certification-board.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)
(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
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "+5V")
(net 2 "GND")
(net 3 "+3V3")
(net 4 "/ESP8266/EN")
(net 5 "/ESP8266/RST")
(net 6 "/ESP8266/A0")
(net 7 "/ESP8266/GPIO16")
(net 8 "/ESP8266/GPIO14")
(net 9 "/ESP8266/GPIO12")
(net 10 "/ESP8266/GPIO13")
(net 11 "/ESP8266/GPIO15")
(net 12 "/ESP8266/GPIO4{slash}SDA")
(net 13 "/ESP8266/GPIO5{slash}SCL")
(net 14 "/ESP8266/GPIO2")
(net 15 "/ESP8266/GPIO0")
(net 16 "/ESP8266/RX")
(net 17 "/ESP8266/TX")
(net 18 "Net-(J5-PadA5)")
(net 19 "/ESP8266/Dp")
(net 20 "/ESP8266/Dn")
(net 21 "unconnected-(J5-PadA8)")
(net 22 "Net-(J5-PadB5)")
(net 23 "unconnected-(J5-PadB8)")
(net 24 "Net-(JP1-Pad2)")
(net 25 "Net-(JP2-Pad2)")
(net 26 "/ESP8266/RTS")
(net 27 "/ESP8266/DTR")
(net 28 "/ESP8266/ADC")
(net 29 "unconnected-(U2-Pad7)")
(net 30 "unconnected-(U2-Pad8)")
(net 31 "unconnected-(U2-Pad9)")
(net 32 "unconnected-(U2-Pad10)")
(net 33 "unconnected-(U2-Pad11)")
(net 34 "unconnected-(U2-Pad12)")
(net 35 "unconnected-(U2-Pad15)")
(net 36 "unconnected-(U3-Pad9)")
(net 37 "unconnected-(U3-Pad10)")
(net 38 "unconnected-(U3-Pad11)")
(net 39 "unconnected-(U3-Pad12)")
(net 40 "unconnected-(U3-Pad13)")
(net 41 "unconnected-(U3-Pad14)")
(net 42 "unconnected-(J2-PadMP)")
(net 43 "unconnected-(J3-PadMP)")
(net 44 "/certification/GPIO4{slash}SDA")
(net 45 "/certification/GPIO5{slash}SCL")
(net 46 "unconnected-(U4-Pad6)")
(footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 029a45ce-7cb8-4d78-bbd5-f36d253fa1d1)
(at 63 94 90)
(descr "SOT-363, SC-70-6")
(tags "SOT-363 SC-70-6")
(property "LCSC" "C62892")
(property "Sheetfile" "esp8266-arduino-section.kicad_sch")
(property "Sheetname" "ESP8266")
(path "/ff3625c2-684b-47d8-96d9-4a80a872bce2/ff2c003f-9691-4482-94be-8b7af25ca737")
(attr smd)
(fp_text reference "Q1" (at 0 -2 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 619e3306-c53b-4162-9871-3f6b5bfbea63)
)
(fp_text value "UMH3N" (at 0 2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dbc851dd-f0af-4bf4-8ea8-cb2ac7cd18a8)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 79741504-1f2b-4094-974c-689492a6bd1a)
)
(fp_line (start -0.7 1.16) (end 0.7 1.16) (layer "F.SilkS") (width 0.12) (tstamp 105c86fa-9884-4fad-a69f-0139caa63b60))
(fp_line (start 0.7 -1.16) (end -1.2 -1.16) (layer "F.SilkS") (width 0.12) (tstamp 84f23625-82d5-4d51-bf0c-863492d55317))
(fp_line (start -1.6 -1.4) (end -1.6 1.4) (layer "F.CrtYd") (width 0.05) (tstamp 8c718c35-c183-4a0e-890d-6e260578dfc8))
(fp_line (start -1.6 -1.4) (end 1.6 -1.4) (layer "F.CrtYd") (width 0.05) (tstamp b0972c7d-25f8-401a-92be-1bc54179268c))
(fp_line (start -1.6 1.4) (end 1.6 1.4) (layer "F.CrtYd") (width 0.05) (tstamp d30c8658-02e0-48c0-8071-415bb23970ec))
(fp_line (start 1.6 1.4) (end 1.6 -1.4) (layer "F.CrtYd") (width 0.05) (tstamp eed4ac7d-c6c0-4bdf-b9c0-2d4e710b94a2))
(fp_line (start -0.675 -0.6) (end -0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp 0fb5633e-a342-4136-bcf9-1f98010ca419))
(fp_line (start 0.675 -1.1) (end 0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp 41b731e4-48b5-4997-a5b8-e9a38306caf1))
(fp_line (start 0.675 -1.1) (end -0.175 -1.1) (layer "F.Fab") (width 0.1) (tstamp 5208ce5a-f101-48c2-a90d-b68c1aad66a3))
(fp_line (start -0.175 -1.1) (end -0.675 -0.6) (layer "F.Fab") (width 0.1) (tstamp 5d3c2692-0b24-4a5b-96b8-210814fcf873))
(fp_line (start 0.675 1.1) (end -0.675 1.1) (layer "F.Fab") (width 0.1) (tstamp 897e0da8-e62c-4c1a-aa8b-bae3ea560e81))
(pad "1" smd rect (at -0.95 -0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "/ESP8266/RTS") (pinfunction "E1") (pintype "passive") (tstamp 5e9f145d-bc34-443a-9ae5-814a3d4e033c))
(pad "2" smd rect (at -0.95 0 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "/ESP8266/DTR") (pinfunction "B1") (pintype "input") (tstamp 3204cf5e-0e29-4254-97e1-f481d4f811a9))
(pad "3" smd rect (at -0.95 0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "/ESP8266/GPIO0") (pinfunction "C2") (pintype "passive") (tstamp 4cf74bac-c9a0-4a57-a8d2-e6dbbd575742))
(pad "4" smd rect (at 0.95 0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "/ESP8266/DTR") (pinfunction "E2") (pintype "passive") (tstamp 47973534-5173-445b-b81b-65e685bb2ee4))
(pad "5" smd rect (at 0.95 0 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "/ESP8266/RTS") (pinfunction "B2") (pintype "input") (tstamp a9c7a0e3-6be1-437f-a60c-f4356786a41e))
(pad "6" smd rect (at 0.95 -0.65 90) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "/ESP8266/EN") (pinfunction "C1") (pintype "passive") (tstamp a3c41f23-bae7-453b-91a4-434f3581c94d))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-363_SC-70-6.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 126b4f95-2421-4df8-aaff-e4dba218e29d)
(at 112 83)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C14663")
(property "PN" "FG28X5R1E475KRT06")
(property "Sheetfile" "certification-section.kicad_sch")
(property "Sheetname" "certification")
(path "/e97f5c9f-b2e7-43c2-9365-8a41f52decb4/8b6e07f9-dbbe-4bde-aa8a-b771e503cca0")
(attr smd)
(fp_text reference "C6" (at 0 -1.43) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a435e9a5-7616-4099-96f2-ede933ae7ed2)
)
(fp_text value "100nF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c9adffe-9e55-4493-b1ce-cb80289b512f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 4bff4d15-1446-4517-839c-9433d6f48458)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 52e04e7e-019c-45a8-baa9-d57035b3da04))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp c0d893a6-b15a-4859-8bf9-5183758ad454))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 712ae58a-0475-4ac2-bc4c-ca3ca9c202e9))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b27a152f-3059-4910-8237-102e21bf2080))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c63e7052-a9e7-451b-bbe7-9943224b3bb9))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f5dca88e-d859-42e6-9675-ffbc079af405))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 3913d9bc-8f35-40d3-8b9b-900b0273f554))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 474ba332-a092-4c2e-a0ac-693153760645))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp d64fe18d-5b81-44ab-90b2-4eaf304e3c23))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp fff2299d-bf78-49ff-9a59-e0811c230692))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+5V") (pintype "passive") (tstamp cbb31472-ca20-4295-a6a7-95e54644f4ee))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp e63f4856-db36-46c6-9c02-2a6c34cdff98))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 142ed7c3-6ed5-45b4-850a-7e7db36479a1)
(at 41 102)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C14663")
(property "PN" "FG28X5R1E475KRT06")
(property "Sheetfile" "esp8266-arduino-section.kicad_sch")
(property "Sheetname" "ESP8266")
(path "/ff3625c2-684b-47d8-96d9-4a80a872bce2/f28cd972-c015-4925-a553-94f4814b77e6")
(attr smd)
(fp_text reference "C7" (at 0 -1.43) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 522a355e-0aba-40f8-acc6-ba219c1641e7)
)
(fp_text value "100nF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d1196a3-f1de-433b-81d5-2be540bc627b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 9015a948-b2d7-479d-8696-35d2d12d3646)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 5c684f51-67ab-4b82-92c9-fc45aaffbfb3))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp e085deab-00d2-4049-9b19-c77570d6f8e6))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3813520e-4661-427f-9ac6-29fd5bcdfe73))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 951df1e7-730c-4296-ab41-7fc27958be15))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b9168f77-b5a5-4161-8a9b-951a2e8475d3))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d9db4625-ab1d-4e73-85e5-8fcf5e52a84c))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 4346e9c4-5b84-45cb-85f3-bcac369120da))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 4a04a193-13b9-47d8-ba40-6aebbbb44acc))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 9e9cc1b2-6200-49f6-864a-1a27c45b47b2))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp e65d48bd-55b4-4c9e-807b-d094278c11de))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 02bed9e6-16fe-48a8-9fa1-1d74bd6f3b55))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/ESP8266/RST") (pintype "passive") (tstamp 6c06ac28-a09d-4361-8848-fe286b2fffb4))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 19845f92-f248-4769-b128-3633a5136068)
(at 52 90 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C14663")
(property "PN" "FG28X5R1E475KRT06")
(property "Sheetfile" "esp8266-arduino-section.kicad_sch")
(property "Sheetname" "ESP8266")
(path "/ff3625c2-684b-47d8-96d9-4a80a872bce2/96cc2706-c25c-493b-9e5d-274ac847023d")
(attr smd)
(fp_text reference "C4" (at 0 -1.43 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0284da35-ee51-4e9c-b356-df5cdafc1cfe)
)
(fp_text value "100nF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 80345cc3-8dfc-446d-b098-bb709ee9e436)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d68d6dc7-55de-4be2-86b8-7fe7ffa1ab70)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp af211894-46f3-4b83-b036-39f5adeb3559))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp d91ac24b-581f-4f4c-9fc8-0f0a94468dc0))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 54e91bd8-c4ed-49eb-a472-7d819b86c6b4))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 57a7826e-5980-498c-922b-3b8198c51f3c))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6c487e45-e325-44dc-856c-c515a5c41d28))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6d492018-2f74-4737-9d0a-647b0d72305b))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 1f1b475a-2f2e-4cb0-b565-67c2c93fdf39))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 856b58ea-02ad-496e-8fe5-0466ea628f86))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp bcc64dae-df1a-494b-a822-5d592cc584ed))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp ea1d2dfb-c61c-4c57-a103-d94b0d2a4def))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp 125965f3-c19e-407c-95a6-cffdf1747b91))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp cae99855-08c3-4def-ad66-766b114c1ec5))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_SMD:SW_SPST_SKQG_WithStem" (layer "F.Cu")
(tedit 61D4AAD5) (tstamp 19cb165c-26b0-4fec-a555-301ba9e51fcf)
(at 43 107 180)
(descr "ALPS 5.2mm Square Low-profile Type (Surface Mount) SKQG Series, With stem, http://www.alps.com/prod/info/E/HTML/Tact/SurfaceMount/SKQG/SKQGAFE010.html")
(tags "SPST Button Switch")
(property "LCSC" "C318884")
(property "Sheetfile" "esp8266-arduino-section.kicad_sch")
(property "Sheetname" "ESP8266")
(path "/ff3625c2-684b-47d8-96d9-4a80a872bce2/d068c1cf-5dac-465b-bf82-5f9719acf90c")
(attr smd)
(fp_text reference "SW1" (at 0 -3.6) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8700ab2f-00e5-46c9-b171-b9ee6fa174d6)
)
(fp_text value "SW_Push" (at 0 3.6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b1f80856-9581-4053-8dfc-152ca33be760)
)
(fp_text user "No F.Cu tracks" (at 2.5 0.2) (layer "Cmts.User")
(effects (font (size 0.2 0.2) (thickness 0.03)))
(tstamp 49a7ab2b-49b4-4f36-bf06-05294ecce5e6)
)
(fp_text user "KEEP-OUT ZONE" (at -2.5 -0.2) (layer "Cmts.User")
(effects (font (size 0.2 0.2) (thickness 0.03)))
(tstamp 53f7f022-564f-4190-95aa-0fd1ae02902f)
)
(fp_text user "KEEP-OUT ZONE" (at 2.5 -0.2) (layer "Cmts.User")
(effects (font (size 0.2 0.2) (thickness 0.03)))
(tstamp 92b379be-c191-4668-aa96-11e6aa202a62)
)
(fp_text user "No F.Cu tracks" (at -2.5 0.2) (layer "Cmts.User")
(effects (font (size 0.2 0.2) (thickness 0.03)))
(tstamp 9e805701-e93f-4308-a785-29d7de95ebbf)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp ac37cbab-f03f-4235-9a1f-6a3c0dcf6a78)
)
(fp_line (start 1.45 2.72) (end 1.94 2.23) (layer "F.SilkS") (width 0.12) (tstamp 16fc3172-868d-4dd1-b1f2-7b6e17f47dfa))
(fp_line (start -1.45 2.72) (end -1.94 2.23) (layer "F.SilkS") (width 0.12) (tstamp 325e2350-9e90-4a43-b982-7f2ccc491ecc))
(fp_line (start -1.45 -2.72) (end 1.45 -2.72) (layer "F.SilkS") (width 0.12) (tstamp 39acf4c6-66ca-4ad2-a0cc-250788523c07))
(fp_line (start -1.45 2.72) (end 1.45 2.72) (layer "F.SilkS") (width 0.12) (tstamp 3dce5c9e-e327-4427-bf18-58ac04cb3540))
(fp_line (start -1.45 -2.72) (end -1.94 -2.23) (layer "F.SilkS") (width 0.12) (tstamp aeb1eef4-678d-4c26-bfd7-561469a33328))
(fp_line (start 1.45 -2.72) (end 1.94 -2.23) (layer "F.SilkS") (width 0.12) (tstamp c26279cc-cf58-43ec-a2b9-455e90b8ea0a))
(fp_line (start -2.72 1.04) (end -2.72 -1.04) (layer "F.SilkS") (width 0.12) (tstamp eb1f167d-1559-4471-b730-0540904bc57a))
(fp_line (start 2.72 1.04) (end 2.72 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f903568f-8e23-4167-ba6d-0efbc82e5602))
(fp_line (start -4.25 2.85) (end 4.25 2.85) (layer "F.CrtYd") (width 0.05) (tstamp 0818c72a-63fc-4da0-9885-59ab7c0e8664))
(fp_line (start 4.25 2.85) (end 4.25 -2.85) (layer "F.CrtYd") (width 0.05) (tstamp 49096971-f2b7-410b-867a-2b9c392a63fd))
(fp_line (start -4.25 -2.85) (end -4.25 2.85) (layer "F.CrtYd") (width 0.05) (tstamp 949c0540-ae6d-43f9-89a3-3640cf09bb0e))
(fp_line (start 4.25 -2.85) (end -4.25 -2.85) (layer "F.CrtYd") (width 0.05) (tstamp c2e88627-1b57-4dc0-8ee0-f5cfa735d83c))
(fp_line (start -2.6 -1.4) (end -1.4 -2.6) (layer "F.Fab") (width 0.1) (tstamp 1370e52f-85e8-45fd-97e9-c4c34a9e13ec))
(fp_line (start -0.95 -1.865) (end -1.865 -0.95) (layer "F.Fab") (width 0.1) (tstamp 4ba3c501-2d18-4539-8153-fa35037abdfb))
(fp_line (start -1.4 -2.6) (end 1.4 -2.6) (layer "F.Fab") (width 0.1) (tstamp 4c0c7b54-fcd4-41cb-9371-903e216f7e04))
(fp_line (start -1.4 2.6) (end -2.6 1.4) (layer "F.Fab") (width 0.1) (tstamp 5f5dc156-a8a4-4775-90ba-b5be00b15f26))
(fp_line (start 1.865 -0.95) (end 1.865 0.95) (layer "F.Fab") (width 0.1) (tstamp 6194da66-6534-470a-8eb2-2838334a3776))
(fp_line (start 0.95 1.865) (end -0.95 1.865) (layer "F.Fab") (width 0.1) (tstamp 85030987-47f5-4397-a445-405f68441290))
(fp_line (start 0.95 -1.865) (end 1.865 -0.95) (layer "F.Fab") (width 0.1) (tstamp 8c970b56-5ece-47b5-9ae5-e83a08ba44c9))
(fp_line (start 1.4 2.6) (end -1.4 2.6) (layer "F.Fab") (width 0.1) (tstamp 8f47bff4-46fb-49f7-a73e-5939f2cfe4bf))
(fp_line (start 2.6 1.4) (end 1.4 2.6) (layer "F.Fab") (width 0.1) (tstamp 93c6ca1d-89fb-4e20-97f1-cb069006035b))
(fp_line (start 1.4 -2.6) (end 2.6 -1.4) (layer "F.Fab") (width 0.1) (tstamp a00620b0-24bd-47cb-8cf7-e7ff3d5e3a9c))
(fp_line (start 0.95 1.865) (end 1.865 0.95) (layer "F.Fab") (width 0.1) (tstamp b3fa7517-182a-46f9-b074-935e695b547a))
(fp_line (start -2.6 1.4) (end -2.6 -1.4) (layer "F.Fab") (width 0.1) (tstamp b9652576-de21-43f1-81a9-c2e443eba7c6))
(fp_line (start -0.95 1.865) (end -1.865 0.95) (layer "F.Fab") (width 0.1) (tstamp bc83d7bf-06a9-41de-b6f2-2bf2746da615))
(fp_line (start -0.95 -1.865) (end 0.95 -1.865) (layer "F.Fab") (width 0.1) (tstamp becf77cf-8c5f-4726-90a1-d7af7add62ba))
(fp_line (start 2.6 -1.4) (end 2.6 1.4) (layer "F.Fab") (width 0.1) (tstamp bedd29c5-f2be-46af-960f-6897de22c6be))
(fp_line (start -1.865 0.95) (end -1.865 -0.95) (layer "F.Fab") (width 0.1) (tstamp f0b0c5bb-8cc6-4a0c-9497-75b43ee64bfc))
(fp_circle (center 0 0) (end 1 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 2d61294a-7545-4a19-a979-caf9fac18ee0))
(pad "1" smd rect (at 3.1 -1.85 180) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "1") (pintype "passive") (tstamp 0f3ade8b-8c7c-4ab6-abf2-88bd682c75b1))
(pad "1" smd rect (at -3.1 -1.85 180) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "1") (pintype "passive") (tstamp 8b144c65-7c06-4911-8d57-90f1a8053cdb))
(pad "2" smd rect (at 3.1 1.85 180) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "/ESP8266/RST") (pinfunction "2") (pintype "passive") (tstamp 533b1fcb-22d8-401d-b7de-5d17e911474c))
(pad "2" smd rect (at -3.1 1.85 180) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "/ESP8266/RST") (pinfunction "2") (pintype "passive") (tstamp 98471c0f-e805-4262-a21c-274de55a0fef))
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp 1e109b75-58b1-4d3f-a854-eb7f3198aff6) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.254)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed ) (copperpour not_allowed) (footprints not_allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 42 108.3)
(xy 39 108.3)
(xy 39 105.7)
(xy 42 105.7)
)
)
)
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp 7b563b97-450d-4cc4-915c-ddcba16d1327) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.254)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed ) (copperpour not_allowed) (footprints not_allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 47 108.3)
(xy 44 108.3)
(xy 44 105.7)
(xy 47 105.7)
)
)
)
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_SPST_SKQG_WithStem.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 1a1021d8-58be-4d26-b67f-840f49106075)
(at 69 92 180)
(descr "Resistor SMD 0805 (2012 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 "LCSC" "C17673")
(property "Sheetfile" "esp8266-arduino-section.kicad_sch")
(property "Sheetname" "ESP8266")
(path "/ff3625c2-684b-47d8-96d9-4a80a872bce2/2cdb1cae-decb-4913-bdf6-9663863c3551")
(attr smd)
(fp_text reference "R2" (at 0 -1.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e4f105bc-211e-404e-b603-9e46f15797b0)
)
(fp_text value "4.7k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2b14a580-ef51-4ae3-a739-b9aca1f9feb5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp f6f8b8d2-3eb2-4209-b632-122eace3ad5d)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 285b2798-1867-4632-9286-cbbade664d71))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 8b8f3d11-0ec0-4dbc-8d83-fa3cd79d7c83))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 0afecb5d-3aaa-4c12-b41c-ceb8a5820b52))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 287a03fa-6599-4bb6-9436-308dc4bfe04d))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp d14b5fd7-2715-427d-a618-edf54af659b8))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp d3ab6fae-f122-49ed-bd66-219df2395dbb))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 62cdf480-cb19-4dce-8aa4-3c28e7889b60))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 8b03350a-9a27-4e8b-a7f2-d1c74102e621))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp a9c65548-7b10-464f-8c6e-dd54bce38cf7))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp d6f6ba6d-6c23-4963-b7cd-f1df2516038c))
(pad "1" smd roundrect (at -0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 3 "+3V3") (pintype "passive") (tstamp 25c640ed-1129-40a7-aca2-cafbd94e8c05))
(pad "2" smd roundrect (at 0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 25 "Net-(JP2-Pad2)") (pintype "passive") (tstamp 002867db-8cbd-40c0-951a-7f9f2e18dc80))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SMA" (layer "F.Cu")
(tedit 586432E5) (tstamp 23011652-5d37-4ed1-be1b-a79cbd2035cb)
(at 43 87 180)
(descr "Diode SMA (DO-214AC)")
(tags "Diode SMA (DO-214AC)")
(property "LCSC" "C727081")
(property "Sheetfile" "esp8266-arduino-section.kicad_sch")
(property "Sheetname" "ESP8266")
(path "/ff3625c2-684b-47d8-96d9-4a80a872bce2/749e6583-1831-49e0-8ae2-6c5bd1aa6d39")
(attr smd)
(fp_text reference "D1" (at 0 -2.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d0df3cc-6527-43de-a74c-1b5e3e528a16)
)
(fp_text value "1N4007" (at 0 2.6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef3cf04e-682b-44e8-9b07-fc8e4d284ba5)
)
(fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba73061a-5fd4-4c08-8c9a-26423d900dd2)
)
(fp_line (start -3.4 -1.65) (end -3.4 1.65) (layer "F.SilkS") (width 0.12) (tstamp 2e3273e0-b263-49fb-9faa-91b5ccfdbe11))
(fp_line (start -3.4 -1.65) (end 2 -1.65) (layer "F.SilkS") (width 0.12) (tstamp c2768b4c-c64f-4ae2-88bb-dc99227d7b5e))
(fp_line (start -3.4 1.65) (end 2 1.65) (layer "F.SilkS") (width 0.12) (tstamp fc2c3525-557c-4107-8cdc-df77abbb34e1))
(fp_line (start 3.5 -1.75) (end 3.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 327a449b-6aad-4918-8253-1d258d8898ac))
(fp_line (start 3.5 1.75) (end -3.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 41e59a59-9cfc-4edc-aae6-6311702908ce))
(fp_line (start -3.5 1.75) (end -3.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 98c51d28-f04f-4116-8549-5fcb58c62f43))
(fp_line (start -3.5 -1.75) (end 3.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp c86aa4f0-2ab5-4d61-a038-3a10a6ca89f4))
(fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer "F.Fab") (width 0.1) (tstamp 11bbb3ab-ed25-4fea-bf0f-b160bd149bb3))
(fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 1e73fa90-5783-4915-8ee0-38ef7084293f))
(fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer "F.Fab") (width 0.1) (tstamp 42414514-2c0b-4635-b92a-8efb03c3cd14))
(fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 5b8cebad-be67-4f60-aae2-a4f8bd4f4185))
(fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 781a4720-cea6-4d10-ad00-ba99207ea702))
(fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer "F.Fab") (width 0.1) (tstamp c8a01bd0-068e-4cb1-9e4e-eac2f7ed2853))
(fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp d0038cf6-59e4-46e9-a4a9-dd0d8747a6f6))
(fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer "F.Fab") (width 0.1) (tstamp e2642c45-16b2-4cc1-abb7-5ff4bd580999))
(fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp e8ce70b3-5837-45b3-ace9-98a598191f66))
(fp_line (start 2.3 1.5) (end -2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp eea635bb-20fe-475c-8c4f-a2beed2ccb61))
(pad "1" smd rect (at -2 0 180) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+5V") (pinfunction "K") (pintype "passive") (tstamp 3c8d11cd-a0dc-49b8-a4ca-fd1eace7d58c))
(pad "2" smd rect (at 2 0 180) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+3V3") (pinfunction "A") (pintype "passive") (tstamp e13098af-5169-4cf4-8ef9-11dfabcf02c8))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 2709ce2a-03e4-434c-9c75-d1901617d39a)
(at 61 107 -90)
(descr "Resistor SMD 0805 (2012 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 "LCSC" "C27834")
(property "Sheetfile" "esp8266-arduino-section.kicad_sch")
(property "Sheetname" "ESP8266")
(path "/ff3625c2-684b-47d8-96d9-4a80a872bce2/34259e17-c810-4ab8-8667-98439db3e6a4")
(attr smd)
(fp_text reference "R3" (at 0 -1.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c76dc00e-1a8b-4a9b-817a-28360bcde3ff)
)
(fp_text value "5.1k" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 84455542-7e2f-4335-a9ba-0df5de00922d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 24dc591c-6157-45d9-99a5-13ff4471671a)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 15aaec0c-d08a-459d-a4d6-fdeee1744d72))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp bfe8be2c-fc6b-433e-b123-999cdbc3dbc8))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 646cc823-4b23-4276-82fd-3a691833b479))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp c2db052a-9ebe-4555-8329-30d0fd1ecd19))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp c5a570ee-256b-40ce-86c7-297d2a087fa4))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp db01299f-7c12-4782-97d0-1cc2460d3ad3))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 0cca53b1-3aa4-48c6-96d4-d7be2e627354))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 37e48d00-b3eb-4229-93d0-2517d94329f9))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp a7ca59c0-d4f6-4d3c-8a4f-dcb50d73fb27))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp d5b00e2b-1f78-44ec-bd78-0596bc5d8875))
(pad "1" smd roundrect (at -0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 18 "Net-(J5-PadA5)") (pintype "passive") (tstamp f8395c4b-6979-4f46-88e7-891bcc99e918))
(pad "2" smd roundrect (at 0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 2 "GND") (pintype "passive") (tstamp 15c2c293-19f3-431e-a4f8-998d284137b1))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 27d20039-db05-43e0-8ec4-cb1501c26a3e)
(at 61 89 90)
(descr "Resistor SMD 0805 (2012 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 "LCSC" "C17444")
(property "Sheetfile" "esp8266-arduino-section.kicad_sch")
(property "Sheetname" "ESP8266")
(path "/ff3625c2-684b-47d8-96d9-4a80a872bce2/4312ae33-ab1e-4050-ad6b-10967ac5ac2f")
(attr smd)
(fp_text reference "R7" (at 0 -1.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa005a1d-8244-4025-996a-39492e801f53)
)
(fp_text value "12k" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 71d792d8-b8b3-47b7-a204-09c5a4bc483c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp a1fafe96-bf43-4a76-a5cc-404722bc5d1b)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 6de8d81c-96ad-4501-9d37-071513ebf167))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp e020020a-70d6-4391-a24e-8f69fabea557))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 1435db07-7c04-4f6d-9a40-1d1cc6be750f))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 927976be-c402-4b5c-a830-d25e362b11a6))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 96c15667-03fe-4f24-9ccf-19b7cb51e7c0))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp acbc95ef-9aa5-4486-8db0-5db0bcc3054b))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 319b8470-31b3-4006-9fe0-5a51e3916da2))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 3b79d3ac-a8e9-41fb-a223-dbbf64bbb270))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 591fd355-4e27-4731-aa0f-02f77cce2f9e))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 59ba7051-3b07-4922-89a2-c727ad19c365))
(pad "1" smd roundrect (at -0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 3 "+3V3") (pintype "passive") (tstamp 5ec7bfd7-d993-426f-89b3-0341499ce730))
(pad "2" smd roundrect (at 0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 15 "/ESP8266/GPIO0") (pintype "passive") (tstamp 980fee06-98e5-41f3-a305-cab8f421e9e5))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 35bd06d1-6d5e-41e2-9954-4a8999f790cc)
(at 64 89 90)
(descr "Resistor SMD 0805 (2012 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 "LCSC" "C17444")
(property "Sheetfile" "esp8266-arduino-section.kicad_sch")
(property "Sheetname" "ESP8266")
(path "/ff3625c2-684b-47d8-96d9-4a80a872bce2/9e1a8d88-aff7-4e9e-afa4-4e1418a8b6d4")
(attr smd)
(fp_text reference "R8" (at 0 -1.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ad3aa0c3-9ac7-4d81-ad80-b35e14121082)
)
(fp_text value "12k" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5b3f1965-83a8-4614-b9f9-bdd37f9d3073)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp cb454bba-21bb-411e-acd7-874a5ffb2a20)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 2e855e7d-ae5d-4843-b6f8-a64676b33426))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 57bccd3b-dc6b-4280-9806-bec6fabe0994))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 28f05dc0-a7df-4d9a-810c-26ae56c54494))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 3b2352f3-f4a6-43d4-bf13-253d8dc29b84))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 68bb9a10-9c7a-4a66-8a91-6c0516e93fa7))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp e359e3f3-8d00-4c35-848d-35da7412b622))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 073719a6-4c9f-4603-8e5c-c50161fbd4fe))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 0a91f21b-a4d3-4238-8dbb-061e2aed0e86))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 9f1e7a2a-e139-44f9-9772-6984e55da5f8))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp b625ee33-fbea-4948-bc17-13d273730f1e))
(pad "1" smd roundrect (at -0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 3 "+3V3") (pintype "passive") (tstamp 1ca1632a-6610-415b-b0dc-5f44d3fe84c0))
(pad "2" smd roundrect (at 0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 14 "/ESP8266/GPIO2") (pintype "passive") (tstamp dc5ddb00-d6c5-44eb-9645-33924a92aace))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 36bff586-eca3-4afd-b986-3ed95f84ca00)
(at 69 94 180)
(descr "Resistor SMD 0805 (2012 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 "LCSC" "C17673")
(property "Sheetfile" "esp8266-arduino-section.kicad_sch")
(property "Sheetname" "ESP8266")
(path "/ff3625c2-684b-47d8-96d9-4a80a872bce2/c41b50fb-54dc-4520-b6bb-a3f20cdfc149")
(attr smd)
(fp_text reference "R1" (at 0 -1.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6cd00d4f-61c2-4050-a734-fbbc9b332ac5)
)
(fp_text value "4.7k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp be1d4860-6104-4846-8f85-cb9eeb1d3852)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 0b164fde-4117-4f4b-b33c-90ef4e14a2d7)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 686f01ff-61f4-4d40-93ac-68b31f1bd25e))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 75d7814f-683f-4288-8fed-8be8b7aa78e8))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 32d0dec4-849a-4ad3-98bf-c3d09bde19e3))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 7c6862df-9466-45f1-9381-f3657ea4b3e8))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp c7d85444-438c-43fc-a16f-2284ce271266))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp fea15bc1-4971-4a84-92e6-c32586448a6d))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 20a2e9dd-2402-40b7-add8-b842e5ad627d))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 4ce705f2-f33f-4b58-bb0a-18a8a104b9e7))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 60ce91f0-c544-43e7-8e38-bf10e4667798))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp acd04a5b-ee1f-40ee-9e2c-b0fdbec90405))
(pad "1" smd roundrect (at -0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 3 "+3V3") (pintype "passive") (tstamp 2676c483-f7c7-421a-8aa6-6bd4ae81c034))
(pad "2" smd roundrect (at 0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 24 "Net-(JP1-Pad2)") (pintype "passive") (tstamp 935ff92d-1e61-4cb8-a74b-58c0fa519d51))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 4928bef9-7e3f-4bd4-8e9a-319f23ca5dc8)
(at 48 101 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C19666")
(property "PN" "FG28X5R1E475KRT06")
(property "Sheetfile" "esp8266-arduino-section.kicad_sch")
(property "Sheetname" "ESP8266")
(path "/ff3625c2-684b-47d8-96d9-4a80a872bce2/b934c745-ca95-4ca9-b389-7c58af99eeca")
(attr smd)
(fp_text reference "C1" (at 0 -1.43 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3c8ed3f4-df00-4045-95ee-06a038f27407)
)
(fp_text value "4.7uF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6196b48f-3e4d-48d5-abba-0bc507041a88)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp ac2d7347-d054-4357-a487-948836c4b634)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 7321fc1d-4bf4-4722-b771-3dea58908c97))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp ec8d835a-bf1e-4035-be04-91802453a8e4))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a5e66907-97f6-494a-ba96-62895ca062a8))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp af6362bd-a115-4797-b73c-2e4a7ef5010f))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp e6c797e2-4525-42fb-9390-6d59d43cce2e))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ee48b3ea-2ea0-4031-bbe2-e3ad11d1f998))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 37bf1faf-f401-4482-8db7-b8ef61ebd827))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 4aaedbc0-abfa-42c6-b471-b58d849b7ce8))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 9c050cb2-33aa-4c20-9e55-adbf0da0e58a))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp e5f41159-2bff-44c2-af46-7ef1588347c3))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+5V") (pintype "passive") (tstamp 00317f5a-ceb8-4ac6-9be9-c38f0c5a6b2e))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 2908f2a3-40a2-4e7f-8b7c-6064079be2eb))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x08_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5A19A420) (tstamp 4a0afd40-4b48-4d8b-a847-629c884aeb1a)
(at 67.975 82.875 180)
(descr "Through hole straight socket strip, 1x08, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x08 2.54mm single row")
(property "Sheetfile" "esp8266-arduino-section.kicad_sch")
(property "Sheetname" "ESP8266")
(path "/ff3625c2-684b-47d8-96d9-4a80a872bce2/e81459a6-10a6-4e39-aafa-e642a5b16f33")
(attr through_hole)
(fp_text reference "J4" (at 0 -2.77) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c0638b9-94d7-43e2-b2b4-f9be63a580b6)
)
(fp_text value "D1_conn" (at 0 20.55) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 564880a2-38ad-4e1d-a994-3dfba276d2e5)
)
(fp_text user "${REFERENCE}" (at 0 8.89 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 919693ed-886b-47f8-8d40-e7a84dcce4af)
)
(fp_line (start 1.33 1.27) (end 1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp 366377f0-a55b-44a1-a28b-40d54f0e0078))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 5bb4f220-fec6-4075-97ae-d01e9e5ee125))
(fp_line (start -1.33 1.27) (end -1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp 7afd0d29-e94d-4bc3-aa13-9ad59224592d))
(fp_line (start -1.33 19.11) (end 1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp a3f615cd-70fc-411f-b70d-5482ccf6b0e3))
(fp_line (start 1.33 -1.33) (end 1.33 0) (layer "F.SilkS") (width 0.12) (tstamp a61c87a2-6a3a-41c2-b538-ef2dd614e6b1))
(fp_line (start 0 -1.33) (end 1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp f728c545-f556-4d42-aa70-03954a1ca0b4))
(fp_line (start 1.75 -1.8) (end 1.75 19.55) (layer "F.CrtYd") (width 0.05) (tstamp 1116546a-6706-4b20-977f-e726b5fe8b41))
(fp_line (start -1.8 19.55) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 1b68617a-479b-443e-9aee-ea0249a3795d))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 3c4e6d3f-3096-42e4-83f1-852d01236ac6))
(fp_line (start 1.75 19.55) (end -1.8 19.55) (layer "F.CrtYd") (width 0.05) (tstamp 77f592ae-ccd8-45fe-8667-b61335e40d7d))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 92cad9ff-1f93-4495-99b6-07357702e01d))
(fp_line (start 1.27 19.05) (end -1.27 19.05) (layer "F.Fab") (width 0.1) (tstamp ba13b444-1236-40db-bf7a-4f028d480b98))
(fp_line (start -1.27 19.05) (end -1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp db7e0428-a216-4c04-970d-751d88c2ecde))
(fp_line (start 1.27 -0.635) (end 1.27 19.05) (layer "F.Fab") (width 0.1) (tstamp f3fe3c43-b011-42ae-a545-32e35f0f1682))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp f937ab2c-ee1e-4c93-bd64-3e62fef7a250))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 020691ec-cdec-4ed6-8249-0c2d1f9fd508))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 72935fa1-a95c-4be8-a976-805110a33dfb))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "/ESP8266/GPIO2") (pinfunction "Pin_3") (pintype "passive") (tstamp 6859ff61-b027-4c10-a34f-20c0c9f44cd3))
(pad "4" thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "/ESP8266/GPIO0") (pinfunction "Pin_4") (pintype "passive") (tstamp 6ef9d017-aefa-47b2-b350-b20c3d4e6d8e))
(pad "5" thru_hole oval (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 "/ESP8266/GPIO4{slash}SDA") (pinfunction "Pin_5") (pintype "passive") (tstamp fc758181-8cc6-480e-b28f-37356ff3b4ae))
(pad "6" thru_hole oval (at 0 12.7 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "/ESP8266/GPIO5{slash}SCL") (pinfunction "Pin_6") (pintype "passive") (tstamp c063ef3b-fa13-4511-adff-a2272ee634b5))
(pad "7" thru_hole oval (at 0 15.24 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 "/ESP8266/RX") (pinfunction "Pin_7") (pintype "passive") (tstamp fb88df68-71ee-492b-b016-30ea95b8d199))
(pad "8" thru_hole oval (at 0 17.78 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 17 "/ESP8266/TX") (pinfunction "Pin_8") (pintype "passive") (tstamp 49ae11da-8d4a-4ea7-86f6-559f086c5c99))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x08_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_JST:JST_SH_BM04B-SRSS-TB_1x04-1MP_P1.00mm_Vertical" (layer "F.Cu")
(tedit 5B78AD87) (tstamp 4e745645-fc46-4d0b-a52f-9dc65436adb9)
(at 71 100 -90)
(descr "JST SH series connector, BM04B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator")
(tags "connector JST SH side entry")
(property "LCSC" "C145956")
(property "Sheetfile" "esp8266-arduino-section.kicad_sch")
(property "Sheetname" "ESP8266")
(path "/ff3625c2-684b-47d8-96d9-4a80a872bce2/943968b4-773f-4ac8-9c92-4911c32acd10")
(attr smd)
(fp_text reference "J2" (at 0 -3.3 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 133aab5b-80c5-4a8f-be2a-847f8349f632)
)
(fp_text value "JST SH-1x4" (at 0 3.3 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7b80ce58-9dd3-418e-afd9-85e741967bd9)
)
(fp_text user "${REFERENCE}" (at 0 -0.25 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c698e33-c953-4af4-9879-cc5bbaf2e6b9)
)
(fp_line (start 3.11 -0.04) (end 3.11 1.11) (layer "F.SilkS") (width 0.12) (tstamp 2a1e0baf-e38e-461e-824a-434046f09960))
(fp_line (start -1.94 -2.01) (end 1.94 -2.01) (layer "F.SilkS") (width 0.12) (tstamp 64d90409-1a21-4d40-aabc-077b886e6274))
(fp_line (start -2.06 1.11) (end -2.06 2.1) (layer "F.SilkS") (width 0.12) (tstamp 7a1c9b1c-880f-4c35-b974-a969c02fa8d3))
(fp_line (start 3.11 1.11) (end 2.06 1.11) (layer "F.SilkS") (width 0.12) (tstamp 95e2fbe3-d65a-41df-8fb2-1d4c6d4bae47))
(fp_line (start -3.11 1.11) (end -2.06 1.11) (layer "F.SilkS") (width 0.12) (tstamp c0ff6fea-62e7-468e-8b98-6a530df89a15))
(fp_line (start -3.11 -0.04) (end -3.11 1.11) (layer "F.SilkS") (width 0.12) (tstamp fc91807e-4912-4b87-b6ce-0e923a017b67))
(fp_line (start -3.9 2.6) (end 3.9 2.6) (layer "F.CrtYd") (width 0.05) (tstamp 5bdf2175-bc78-4d8d-97b8-94609e89b1c3))
(fp_line (start 3.9 -2.6) (end -3.9 -2.6) (layer "F.CrtYd") (width 0.05) (tstamp 8c6836d5-6a26-492b-8b45-7c3c093e3b71))
(fp_line (start 3.9 2.6) (end 3.9 -2.6) (layer "F.CrtYd") (width 0.05) (tstamp a6892391-e794-42ae-bd0e-0602e6fc0bc5))
(fp_line (start -3.9 -2.6) (end -3.9 2.6) (layer "F.CrtYd") (width 0.05) (tstamp b5061ce6-9f44-4f3e-a8f7-138678c5bec3))
(fp_line (start -3 1) (end -3 -1.9) (layer "F.Fab") (width 0.1) (tstamp 28e4d25e-dd78-4f7c-ae62-6105622cf49a))
(fp_line (start -3 1) (end 3 1) (layer "F.Fab") (width 0.1) (tstamp 312ac267-318d-41b4-84d8-d98b54e134d4))
(fp_line (start 0.65 -1.55) (end 0.35 -1.55) (layer "F.Fab") (width 0.1) (tstamp 3637202c-aebb-48f1-b690-f6ea6958e81c))
(fp_line (start -3 -1.9) (end 3 -1.9) (layer "F.Fab") (width 0.1) (tstamp 37cd233f-1e28-4300-929b-fc81a012d8ec))
(fp_line (start -1.35 -1.55) (end -1.65 -1.55) (layer "F.Fab") (width 0.1) (tstamp 415b0eb1-accc-44a8-8b99-b3db5101b931))
(fp_line (start -0.35 -0.95) (end -0.35 -1.55) (layer "F.Fab") (width 0.1) (tstamp 4b799b12-bac7-4d3b-bb9f-795f68ad23af))
(fp_line (start -1.35 -0.95) (end -1.35 -1.55) (layer "F.Fab") (width 0.1) (tstamp 5f98f70e-ffd0-4082-8429-706e870aabe9))
(fp_line (start 0.35 -1.55) (end 0.35 -0.95) (layer "F.Fab") (width 0.1) (tstamp 7ba511d9-abfe-4218-959b-c89379f9682c))
(fp_line (start -2 1) (end -1.5 0.292893) (layer "F.Fab") (width 0.1) (tstamp 7c646663-d855-46dd-a9cf-0ef27a64e8cf))
(fp_line (start 0.35 -0.95) (end 0.65 -0.95) (layer "F.Fab") (width 0.1) (tstamp 84a31686-5bf1-442f-a1e0-ccef8696e152))
(fp_line (start -1.65 -1.55) (end -1.65 -0.95) (layer "F.Fab") (width 0.1) (tstamp 98438490-7b9d-4527-ab0c-80b40fa9c86b))
(fp_line (start -1.65 -0.95) (end -1.35 -0.95) (layer "F.Fab") (width 0.1) (tstamp bdb5561c-fe20-423d-b7d5-a0d0badc0382))
(fp_line (start -0.35 -1.55) (end -0.65 -1.55) (layer "F.Fab") (width 0.1) (tstamp c5c639d5-d33a-45a5-a5c3-e10905cdf215))
(fp_line (start 0.65 -0.95) (end 0.65 -1.55) (layer "F.Fab") (width 0.1) (tstamp c74eb86d-1368-4af3-90c6-1ecb8d453f52))
(fp_line (start 1.65 -1.55) (end 1.35 -1.55) (layer "F.Fab") (width 0.1) (tstamp ca735b40-55b0-4c5e-a0ff-d5bf94d15333))
(fp_line (start 3 1) (end 3 -1.9) (layer "F.Fab") (width 0.1) (tstamp ce6f37be-489f-4f87-9857-25d57e2813c1))
(fp_line (start 1.65 -0.95) (end 1.65 -1.55) (layer "F.Fab") (width 0.1) (tstamp d14ad162-bed1-490d-9ce7-9b945eaf9521))
(fp_line (start -0.65 -0.95) (end -0.35 -0.95) (layer "F.Fab") (width 0.1) (tstamp dc9652fb-5627-446a-a305-fdbb26de4b04))
(fp_line (start -1.5 0.292893) (end -1 1) (layer "F.Fab") (width 0.1) (tstamp ebf5b1d8-f6be-4ebd-8d37-017f06517d7d))
(fp_line (start 1.35 -1.55) (end 1.35 -0.95) (layer "F.Fab") (width 0.1) (tstamp f41b1103-52d8-4460-a4c3-d36f3fc18114))
(fp_line (start -0.65 -1.55) (end -0.65 -0.95) (layer "F.Fab") (width 0.1) (tstamp f9bf58d7-ca77-4370-b30c-e3b343019cf6))
(fp_line (start 1.35 -0.95) (end 1.65 -0.95) (layer "F.Fab") (width 0.1) (tstamp f9f634a7-307d-4e1d-97d3-1e66df287590))
(pad "1" smd roundrect (at -1.5 1.325 270) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 480b4d2e-294e-4f68-a564-904457f39942))
(pad "2" smd roundrect (at -0.5 1.325 270) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pinfunction "Pin_2") (pintype "passive") (tstamp 481df0f8-b85c-4da0-9137-7e513474662e))
(pad "3" smd roundrect (at 0.5 1.325 270) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/ESP8266/GPIO4{slash}SDA") (pinfunction "Pin_3") (pintype "passive") (tstamp 11b9a63b-4784-42b8-9281-6c920537138d))
(pad "4" smd roundrect (at 1.5 1.325 270) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "/ESP8266/GPIO5{slash}SCL") (pinfunction "Pin_4") (pintype "passive") (tstamp 683724b8-6de4-49bc-af65-243c77ce2048))
(pad "MP" smd roundrect (at -2.8 -1.2 270) (size 1.2 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 42 "unconnected-(J2-PadMP)") (pinfunction "MP") (pintype "passive+no_connect") (tstamp 85b09595-bf05-482e-88e6-ec7fe7df3b2a))
(pad "MP" smd roundrect (at 2.8 -1.2 270) (size 1.2 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 42 "unconnected-(J2-PadMP)") (pinfunction "MP") (pintype "passive+no_connect") (tstamp f9891247-8f29-4df8-8903-5aaa03c568e6))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_SH_BM04B-SRSS-TB_1x04-1MP_P1.00mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 5b9664ad-e079-4e5f-8005-7de806b74d05)
(at 64 107 -90)
(descr "Resistor SMD 0805 (2012 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 "LCSC" "C27834")
(property "Sheetfile" "esp8266-arduino-section.kicad_sch")
(property "Sheetname" "ESP8266")
(path "/ff3625c2-684b-47d8-96d9-4a80a872bce2/20649100-517d-41b8-a874-f917b34509a5")
(attr smd)
(fp_text reference "R4" (at 0 -1.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c5c49cd4-5511-4b73-bad2-02dbb711334d)
)
(fp_text value "5.1k" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1cbc75ad-0602-45e5-a982-f39546075ae3)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 32d5b6b7-626b-4bdf-b510-041adfaef36c)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 0e0dfb03-011a-4ba3-b5f9-6005762a38fb))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp cfed4b9e-4a79-4025-9835-cd2ed11be40a))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4fced27b-1c33-4c75-991b-deb9bc23309e))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 66a0fd07-8324-457c-8fc1-c19543f3cec6))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp bf603b2e-cc9a-4f77-a4af-34cf5de969ea))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp cee7f3de-0e55-482d-9896-da883f66148a))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 40eaff6c-653d-42ee-b221-75349f562e91))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 4f9db6dd-ee57-47f5-afdc-850d55d11f83))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 6f42057a-f031-40e2-9142-9dd5644d54b0))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 761d6704-e49f-4dca-9445-4d5d1f5dff6d))
(pad "1" smd roundrect (at -0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 22 "Net-(J5-PadB5)") (pintype "passive") (tstamp 3409ff77-6ba7-4502-9966-0e6290fba3d7))
(pad "2" smd roundrect (at 0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 2 "GND") (pintype "passive") (tstamp e64c4636-bd2e-4d2c-9fcc-30dec396d243))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 6adad112-6cef-4fde-8e63-1c35b108aec2)
(at 48 96 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C19666")
(property "PN" "FG28X5R1E475KRT06")
(property "Sheetfile" "esp8266-arduino-section.kicad_sch")
(property "Sheetname" "ESP8266")
(path "/ff3625c2-684b-47d8-96d9-4a80a872bce2/def12ece-9e31-4dcc-b1bb-c01720b27f12")
(attr smd)
(fp_text reference "C2" (at 0 -1.43 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03f0a393-5440-4ece-89b1-e649e6530bc5)
)
(fp_text value "4.7uF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ff76a133-5607-4482-896b-2ade5eb58cd2)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp f531715c-9c58-4f77-889a-4ab6e7d42d60)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 56fe6238-539c-48ee-8a08-18deb5da3da0))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 686d66a0-93d7-4bdd-911b-a95cc78b7dd6))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6c6e943f-41a2-47de-aea3-764ba0fe968c))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 748b9a7b-22c7-4ffa-8989-ccd781f4f7cb))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7cfb7f9b-da6b-447d-b9f4-ca0aa98d5d87))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ebe11df8-b53d-43d5-9dfd-b8d315f81f1a))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 328f330e-def5-4c85-95b1-2f751c2a8abe))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 659070dc-473b-4d3e-931a-c0d0db18d414))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 8c3ac095-37f8-40f5-b520-0576fc4a7d44))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp d911dc70-e237-40ac-856c-e3523134108c))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp 05ffb707-9caf-413a-95e1-86a24f67a6c2))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 3f0517fb-167d-4128-90a9-07fbe50b5135))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 6e10cd54-1430-4755-aebc-76f819a07ea7)
(at 44 74 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C14663")
(property "PN" "FG28X5R1E475KRT06")
(property "Sheetfile" "esp8266-arduino-section.kicad_sch")
(property "Sheetname" "ESP8266")
(path "/ff3625c2-684b-47d8-96d9-4a80a872bce2/67b41736-1b6a-40c6-8d64-6cf6a0796bc3")
(attr smd)
(fp_text reference "C5" (at 0 -1.43 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ae573a56-9c0f-489f-8484-8c7516fd9671)
)
(fp_text value "100nF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cddddbdf-53bf-4e1e-9c06-96a6794e32ac)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp bee9dc31-309f-4766-a922-9a6fa15816a6)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 4c01ecbb-7e12-46df-a690-757b3eed621d))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp b0472632-212a-4bba-9cee-b749d01a0f31))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 825974d8-e113-40ca-9bbc-7b9d496944a5))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b55f36ad-7243-4207-a2fd-cc83471436d2))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b8579289-ee0a-42e1-8063-c568be1c4da6))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp fb45c572-ed2b-4fc0-8830-279b73958394))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 168aa515-a9d8-4adf-a3c3-d7cd0e57f620))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 47f2e04a-09f3-401a-b0fc-04f65698f0c9))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 834367d1-00e4-4f1c-a6ce-113ea5671f51))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 8d5168b9-9ae3-43c1-88ee-e8b00133a926))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 5d1da45b-1ed5-485e-ab9a-1e3e5c1f8ade))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/ESP8266/EN") (pintype "passive") (tstamp 5d3abf87-0a1f-4096-bcb8-39a0ab3709d1))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (layer "F.Cu")
(tedit 5D9F72B1) (tstamp 77a083d5-904b-4dec-a1ce-d19ca39dd387)
(at 55 97 90)
(descr "SOIC, 16 Pin (JEDEC MS-012AC, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOIC SO")
(property "LCSC" "C84681")
(property "Sheetfile" "esp8266-arduino-section.kicad_sch")
(property "Sheetname" "ESP8266")
(path "/ff3625c2-684b-47d8-96d9-4a80a872bce2/52c85c52-b153-4941-a9fe-aacff9d2a3b0")
(attr smd)