-
Notifications
You must be signed in to change notification settings - Fork 269
/
Copy pathESP8266.kicad_pcb
10407 lines (10360 loc) · 466 KB
/
ESP8266.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")
(title_block
(title "ESP8266 Wireless DAP")
(date "2022-02-19")
(rev "Version 1.2.2")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(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") (color "White"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Black") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Black") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "White"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(aux_axis_origin 127.5572 115.9568)
(grid_origin 127.5 116)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "Net-(ANT1-Pad2)")
(net 3 "+3V3")
(net 4 "Net-(C7-Pad1)")
(net 5 "Net-(C8-Pad1)")
(net 6 "Net-(C10-Pad1)")
(net 7 "Net-(C11-Pad1)")
(net 8 "+5V")
(net 9 "Net-(C16-Pad1)")
(net 10 "/RST")
(net 11 "Net-(D1-Pad2)")
(net 12 "/UART_TX")
(net 13 "/SWDIO")
(net 14 "/U0_RXD")
(net 15 "/SWDCLK")
(net 16 "Net-(K1-Pad2)")
(net 17 "unconnected-(P1-PadA5)")
(net 18 "/USB_DP")
(net 19 "/USB_DM")
(net 20 "unconnected-(P1-PadA8)")
(net 21 "unconnected-(P1-PadB5)")
(net 22 "unconnected-(P1-PadB8)")
(net 23 "/LED")
(net 24 "Net-(R3-Pad2)")
(net 25 "Net-(R6-Pad1)")
(net 26 "Net-(R7-Pad1)")
(net 27 "/SD_CLK")
(net 28 "/U0_TXD")
(net 29 "/SD_CMD")
(net 30 "/SD_DATA0")
(net 31 "/SD_DATA2")
(net 32 "/SD_DATA1")
(net 33 "/SD_DATA3")
(net 34 "unconnected-(U2-Pad5)")
(net 35 "unconnected-(U2-Pad6)")
(net 36 "unconnected-(U2-Pad8)")
(net 37 "unconnected-(U2-Pad10)")
(net 38 "unconnected-(U2-Pad16)")
(net 39 "unconnected-(U2-Pad24)")
(net 40 "unconnected-(U3-Pad4)")
(net 41 "unconnected-(U4-Pad4)")
(net 42 "unconnected-(ANT1-Pad1)")
(footprint "Button_Switch_SMD:SW_Push_SPST_NO_Alps_SKRK" (layer "F.Cu")
(tedit 5C2A8900) (tstamp 015f5586-ba76-4a98-9114-f5cd2c67134d)
(at 130.6 110.3)
(descr "http://www.alps.com/prod/info/E/HTML/Tact/SurfaceMount/SKRK/SKRKAHE020.html")
(tags "SMD SMT button")
(property "Sheetfile" "ESP8266.kicad_sch")
(property "Sheetname" "")
(path "/ff38afa2-64ac-4bdb-b08d-1f66bbb39b07")
(attr smd)
(fp_text reference "K1" (at 0 -2.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f4a1ab68-998b-43e3-aa33-40b58210bc99)
)
(fp_text value "SW_DIP_x01" (at 0 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e76ec524-408a-4daa-89f6-0edfdbcfb621)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2f424da3-8fae-4941-bc6d-20044787372f)
)
(fp_line (start 2.07 -1.57) (end 2.07 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 3bca658b-a598-4669-a7cb-3f9b5f47bb5a))
(fp_line (start -2.07 -1.57) (end 2.07 -1.57) (layer "F.SilkS") (width 0.12) (tstamp 41485de5-6ed3-4c83-b69e-ef83ae18093c))
(fp_line (start -2.07 -1.27) (end -2.07 -1.57) (layer "F.SilkS") (width 0.12) (tstamp 42d3f9d6-2a47-41a8-b942-295fcb83bcd8))
(fp_line (start -2.07 1.57) (end -2.07 1.27) (layer "F.SilkS") (width 0.12) (tstamp b7aa0362-7c9e-4a42-b191-ab15a38bf3c5))
(fp_line (start 2.07 1.27) (end 2.07 1.57) (layer "F.SilkS") (width 0.12) (tstamp bef2abc2-bf3e-4a72-ad03-f8da3cd893cb))
(fp_line (start 2.07 1.57) (end -2.07 1.57) (layer "F.SilkS") (width 0.12) (tstamp dd1edfbb-5fb6-42cd-b740-fd54ab3ef1f1))
(fp_line (start 2.75 1.7) (end -2.75 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 1cc5480b-56b7-4379-98e2-ccafc88911a7))
(fp_line (start 2.75 -1.7) (end 2.75 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 7bea05d4-1dec-4cd6-aa53-302dde803254))
(fp_line (start -2.75 -1.7) (end 2.75 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 9a8ad8bb-d9a9-4b2b-bc88-ea6fd2676d45))
(fp_line (start -2.75 1.7) (end -2.75 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp a5362821-c161-4c7a-a00c-40e1d7472d56))
(fp_line (start 1.95 -1.45) (end 1.95 1.45) (layer "F.Fab") (width 0.1) (tstamp 851f3d61-ba3b-4e6e-abd4-cafa4d9b64cb))
(fp_line (start -1.95 1.45) (end -1.95 -1.45) (layer "F.Fab") (width 0.1) (tstamp ca6e2466-a90a-4dab-be16-b070610e5087))
(fp_line (start 1.95 1.45) (end -1.95 1.45) (layer "F.Fab") (width 0.1) (tstamp d18f2428-546f-4066-8ffb-7653303685db))
(fp_line (start -1.95 -1.45) (end 1.95 -1.45) (layer "F.Fab") (width 0.1) (tstamp d95c6650-fcd9-4184-97fe-fde43ea5c0cd))
(fp_circle (center 0 0) (end 1 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 12fa3c3f-3d14-451a-a6a8-884fd1b32fa7))
(pad "1" smd roundrect (at -2.1 0) (size 0.8 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 541721d1-074b-496e-a833-813044b3e8ca))
(pad "2" smd roundrect (at 2.1 0) (size 0.8 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "Net-(K1-Pad2)") (pintype "passive") (tstamp d05faa1f-5f69-41bf-86d3-2cd224432e1b))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_Push_SPST_NO_Alps_SKRK.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 01f82238-6335-48fe-8b0a-6853e227345a)
(at 138.1 109.3 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "ESP8266.kicad_sch")
(property "Sheetname" "")
(path "/c2985ab1-0076-4c74-b6dd-9d30f4512691")
(attr smd)
(fp_text reference "C8" (at 0 -1.4 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d0c9e39-9878-44c8-8283-9a59e45006fa)
)
(fp_text value "100nF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9c607e49-ee5c-4e85-a7da-6fede9912412)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp e6d68f56-4a40-4849-b8d1-13d5ca292900)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 7db990e4-92e1-4f99-b4d2-435bbec1ba83))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp cd5e758d-cb66-484a-ae8b-21f53ceee49e))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 52a8f1be-73ca-41a8-bc24-2320706b0ec1))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8efee08b-b92e-4ba6-8722-c058e18114fe))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e300709f-6c72-488d-a598-efcbd6d3af54))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e36988d2-ecb2-461b-a443-7006f447e828))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 7c2008c8-0626-4a09-a873-065e83502a0e))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 7c411b3e-aca2-424f-b644-2d21c9d80fa7))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp d102186a-5b58-41d0-9985-3dbb3593f397))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp f4a8afbe-ed68-4253-959f-6be4d2cbf8c5))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(C8-Pad1)") (pintype "passive") (tstamp 0e249018-17e7-42b3-ae5d-5ebf3ae299ae))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 63489ebf-0f52-43a6-a0ab-158b1a7d4988))
(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 05d3e08e-e1f9-46cf-93d0-836d1306d03a)
(at 137 97.3 135)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "ESP8266.kicad_sch")
(property "Sheetname" "")
(path "/87322e45-f999-41a4-b11c-d7090443c33e")
(attr smd)
(fp_text reference "C17" (at -0.070711 -1.202082 135) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 99e6b8eb-b08e-4d42-84dd-8b7f6765b7b7)
)
(fp_text value "100nF" (at 0 1.43 135) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp db851147-6a1e-4d19-898c-0ba71182359b)
)
(fp_text user "${REFERENCE}" (at 0 0 135) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 1c052668-6749-425a-9a77-35f046c8aa39)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 9db16341-dac0-4aab-9c62-7d88c111c1ce))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp b7d06af4-a5b1-447f-9b1a-8b44eb1cc204))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp aa047297-22f8-4de0-a969-0b3451b8e164))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ab8b0540-9c9f-4195-88f5-7bed0b0a8ed6))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp df3dc9a2-ba40-4c3a-87fe-61cc8e23d71b))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e79c8e11-ed47-4701-ae80-a54cdb6682a5))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp b0b4c3cb-e7ea-49c0-8162-be3bbab3e4ec))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp b794d099-f823-4d35-9755-ca1c45247ee9))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp de370984-7922-4327-a0ba-7cd613995df4))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp e87a6f80-914f-4f62-9c9f-9ba62a88ee3d))
(pad "1" smd roundrect (at -0.775 0 135) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/RST") (pintype "passive") (tstamp 6bd46644-7209-4d4d-acd8-f4c0d045bc61))
(pad "2" smd roundrect (at 0.775 0 135) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp befdfbe5-f3e5-423b-a34e-7bba3f218536))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 06665bf8-cef1-4e75-8d5b-1537b3c1b090)
(at 137 113.325 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "ESP8266.kicad_sch")
(property "Sheetname" "")
(path "/a145fbcc-b1d4-4585-b08e-0b59573e8262")
(attr smd)
(fp_text reference "R5" (at -0.725 -1.4 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e677390-a246-4ca0-954c-746e0870f88f)
)
(fp_text value "10kR" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 35fb7c56-dc85-43f7-b954-81b8040a8500)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 178ae27e-edb9-4ffb-bd13-c0a6dd659606)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp aa8663be-9516-4b07-84d2-4c4d668b8596))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp dfcef016-1bf5-4158-8a79-72d38a522877))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1a22eb2d-f625-4371-a918-ff1b97dc8219))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6ff9bb63-d6fd-4e32-bb60-7ac65509c2e9))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d767f2ff-12ec-4778-96cb-3fdd7a473d60))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f674b8e7-203d-419e-988a-58e0f9ae4fad))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 25c663ff-96b6-4263-a06e-d1829409cf73))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 34ce7009-187e-4541-a14e-708b3a2903d9))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 637e9edf-ffed-49a2-8408-fa110c9a4c79))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp b456cffc-d9d7-4c91-91f2-36ec9a65dd1b))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "Net-(K1-Pad2)") (pintype "passive") (tstamp 9fdca5c2-1fbd-4774-a9c3-8795a40c206d))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp a0d52767-051a-423c-a600-928281f27952))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 08e2d62f-f99a-4268-8b33-617dfcc63e75)
(at 142.3 113.5 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "ESP8266.kicad_sch")
(property "Sheetname" "")
(path "/9bc1f9b0-8c47-431f-99ec-8a9b89e7b1d6")
(attr smd)
(fp_text reference "R10" (at -2.8 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6ff874d0-4ac5-414c-83a7-573eda4c7703)
)
(fp_text value "10kR" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9538e4ed-27e6-4c37-b989-9859dc0d49e8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 5994a946-119f-4db4-aafe-00ae73b5b800)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp b680b4a7-6cb0-40b5-a7ec-a02910a0daa4))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp c5a1761e-3391-4e74-90c9-947fd66e1fc6))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 681bd495-c396-44ce-92bd-4b397cd48c04))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a1c7b1f5-f895-4192-9484-2357882c73e0))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a3668681-09b1-48f0-a7b1-f6b24183a469))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp be0953c0-632d-4dd2-85e9-4d41239f22d2))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 3451168c-3c76-4628-aee4-7c231bd100c3))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 563c12e4-8f8c-446c-a11f-94f5aa93b994))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp ca213826-0282-4b3a-840f-ec416dc34acf))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e63e39d7-6ac0-4ffd-8aa3-1841a4541b55))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/UART_TX") (pintype "passive") (tstamp eaef1172-3351-417c-bfc4-74a598f141cb))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp f6ee98b5-4773-4eeb-a825-33c1705abace))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 08ec951f-e7eb-41cf-9589-697107a98e88)
(at 132.8 114.9)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "ESP8266.kicad_sch")
(property "Sheetname" "")
(path "/f7e3bec4-a1a9-415f-9daf-52585c88dba1")
(attr smd)
(fp_text reference "R4" (at 2.5 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2a4111b7-8149-4814-9344-3b8119cd75e4)
)
(fp_text value "10kR" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a686ed7c-c2d1-4d29-9d54-727faf9fd6bf)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 022502e0-e724-4b75-bc35-3c5984dbeb76)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 9f969b13-1795-4747-8326-93bdc304ed56))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp d655bb0a-cbf9-4908-ad60-7024ff468fbd))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2ee28fa9-d785-45a1-9a1b-1be02ad8cd0b))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 66ca01b3-51ff-4294-9b77-4492e98f6aec))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b9d4de74-d246-495d-8b63-12ab2133d6d6))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp fb0bf2a0-d317-42f7-b022-b5e05481f6be))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 0e32af77-726b-4e11-9f99-2e2484ba9e9b))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 152cd84e-bbed-4df5-a866-d1ab977b0966))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 560d05a7-84e4-403a-80d1-f287a4032b8a))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 8a427111-6480-4b0c-b097-d8b6a0ee1819))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 2eea20e6-112c-411a-b615-885ae773135a))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "/LED") (pintype "passive") (tstamp 49fec31e-3712-4229-8142-b191d90a97d0))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 0f560957-a8c5-442f-b20c-c2d88613742c)
(at 149.3 114.9 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "ESP8266.kicad_sch")
(property "Sheetname" "")
(path "/8d45a3de-aa26-475e-84fb-345c1585b7a4")
(attr smd)
(fp_text reference "C16" (at 0 1.4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 83c5181e-f5ee-453c-ae5c-d7256ba8837d)
)
(fp_text value "100nF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b4c0f05-c855-4742-bad2-dbf645d5842b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp c67ad10d-2f75-4ec6-a139-47058f7f06b2)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 2a6075ae-c7fa-41db-86b8-3f996740bdc2))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 8f12311d-6f4c-4d28-a5bc-d6cb462bade7))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 12c8f4c9-cb79-4390-b96c-a717c693de17))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 12f8e43c-8f83-48d3-a9b5-5f3ebc0b6c43))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4344bc11-e822-474b-8d61-d12211e719b1))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp db742b9e-1fed-4e0c-b783-f911ab5116aa))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 282c8e53-3acc-42f0-a92a-6aa976b97a93))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 5f38bdb2-3657-474e-8e86-d6bb0b298110))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp d72c89a6-7578-4468-964e-2a845431195f))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp eaa0d51a-ee4e-4d3a-a801-bddb7027e94c))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(C16-Pad1)") (pintype "passive") (tstamp 5f6afe3e-3cb2-473a-819c-dc94ae52a6be))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 98970bf0-1168-4b4e-a1c9-3b0c8d7eaacf))
(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 241e0c85-4796-48eb-a5a0-1c0f2d6e5910)
(at 137.3 102.7 135)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "ESP8266.kicad_sch")
(property "Sheetname" "")
(path "/08f57c90-5fe2-4446-87ff-d726ba8f7870")
(attr smd)
(fp_text reference "C12" (at 1.06066 1.202082 135) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a2bcc72-047b-4846-8583-1109e3552669)
)
(fp_text value "100nF" (at 0 1.43 135) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 775e8983-a723-43c5-bf00-61681f0840f3)
)
(fp_text user "${REFERENCE}" (at 0 0 135) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 87a1984f-543d-4f2e-ad8a-7a3a24ee6047)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 5d49e9a6-41dd-4072-adde-ef1036c1979b))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp c8ab8246-b2bb-4b06-b45e-2548482466fd))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7f9683c1-2203-43df-8fa1-719a0dc360df))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b0054ce1-b60e-41de-a6a2-bf712784dd39))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp be2983fa-f06e-485e-bea1-3dd96b916ec5))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp dc1d84c8-33da-4489-be8e-2a1de3001779))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 212bf70c-2324-47d9-8700-59771063baeb))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 44035e53-ff94-45ad-801f-55a1ce042a0d))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp c873689a-d206-42f5-aead-9199b4d63f51))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp cee2f43a-7d22-4585-a857-73949bd17a9d))
(pad "1" smd roundrect (at -0.775 0 135) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp 386ad9e3-71fa-420f-8722-88548b024fc5))
(pad "2" smd roundrect (at 0.775 0 135) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 8cb2cd3a-4ef9-4ae5-b6bc-2b1d16f657d6))
(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 "Inductor_SMD:L_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEF0) (tstamp 29cbb0bc-f66b-4d11-80e7-5bb270e42496)
(at 134.756847 102.656847 -45)
(descr "Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "inductor")
(property "Sheetfile" "ESP8266.kicad_sch")
(property "Sheetname" "")
(path "/6853e24e-0e0e-4e4e-99ac-8b34f84e988c")
(attr smd)
(fp_text reference "L1" (at 0.061028 1.555635 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8eb98c56-17e4-4de6-a3e3-06dcfa392040)
)
(fp_text value "2.2nH" (at 0 1.43 135) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 22962957-1efd-404d-83db-5b233b6c15b0)
)
(fp_text user "${REFERENCE}" (at 0 0 135) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp c2dd13db-24b6-40f1-b75b-b9ab893d92ea)
)
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 465137b4-f6f7-4d51-9b40-b161947d5cc1))
(fp_line (start -0.162779 0.51) (end 0.162779 0.51) (layer "F.SilkS") (width 0.12) (tstamp d8200a86-aa75-47a3-ad2a-7f4c9c999a6f))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4086cbd7-6ba7-4e63-8da9-17e60627ee17))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 91fc5800-6029-46b1-848d-ca0091f97267))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp bb8162f0-99c8-4884-be5b-c0d0c7e81ff6))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d1cd5391-31d2-459f-8adb-4ae3f304a833))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 275b6416-db29-42cc-9307-bf426917c3b4))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 3c22d605-7855-4cc6-8ad2-906cadbd02dc))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp bd085057-7c0e-463a-982b-968a2dc1f0f8))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp c66a19ed-90c0-4502-ae75-6a4c4ab9f297))
(pad "1" smd roundrect (at -0.7875 0 315) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "Net-(ANT1-Pad2)") (pinfunction "1") (pintype "passive") (tstamp c401e9c6-1deb-4979-99be-7c801c952098))
(pad "2" smd roundrect (at 0.7875 0 315) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(C7-Pad1)") (pinfunction "2") (pintype "passive") (tstamp 355ced6c-c08a-4586-9a09-7a9c624536f6))
(model "${KICAD6_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_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 2b5a9ad3-7ec4-447d-916c-47adf5f9674f)
(at 152.4 99.5 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "ESP8266.kicad_sch")
(property "Sheetname" "")
(path "/1b3ca2b7-8fee-45a4-95e6-06fd80318255")
(attr smd)
(fp_text reference "C1" (at 2.5 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9390234f-bf3f-46cd-b6a0-8a438ec76e9f)
)
(fp_text value "10uF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9e813ec2-d4ce-4e2e-b379-c6fedb4c45db)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 9f782c92-a5e8-49db-bfda-752b35522ce4)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 626679e8-6101-4722-ac57-5b8d9dab4c8b))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp ccc4cc25-ac17-45ef-825c-e079951ffb21))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 691af561-538d-4e8f-a916-26cad45eb7d6))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7ce7415d-7c22-49f6-8215-488853ccc8c6))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b59f18ce-2e34-4b6e-b14d-8d73b8268179))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b7bf6e08-7978-4190-aff5-c90d967f0f9c))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 53e34696-241f-47e5-a477-f469335c8a61))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 5a222fb6-5159-4931-9015-19df65643140))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 88002554-c459-46e5-8b22-6ea6fe07fd4c))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 8cdc8ef9-532e-4bf5-9998-7213b9e692a2))
(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 f1782535-55f4-4299-bd4f-6f51b0b7259c))
(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 1 "GND") (pintype "passive") (tstamp da6f4122-0ecc-496f-b0fd-e4abef534976))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 363189af-2faa-46a4-b025-5a779d801f2e)
(at 149.2 103.1)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "ESP8266.kicad_sch")
(property "Sheetname" "")
(path "/dd26dcc6-1678-4d54-bd9f-ddf6c9bada5d")
(attr smd)
(fp_text reference "R8" (at 0 1.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2f0570b6-86da-47a8-9e56-ce60c431c534)
)
(fp_text value "499R" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1732b93f-cd0e-4ca4-a905-bb406354ca33)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp de552ae9-cde6-4643-8cc7-9de2579dadae)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 72366acb-6c86-4134-89df-01ed6e4dc8e0))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 7274c82d-0cb9-47de-b093-7d848f491410))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 112371bd-7aa2-4b47-b184-50d12afc2534))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5c32b099-dba7-4228-8a5e-c2156f635ce2))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b66b83a0-313f-4b03-b851-c6e9577a6eb7))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp dad2f9a9-292b-4f7e-9524-a263f3c1ba74))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 1d0d5161-c82f-4c77-a9ca-15d017db65d3))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 6f1beb86-67e1-46bf-8c2b-6d1e1485d5c0))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 7ca71fec-e7f1-454f-9196-b80d15925fff))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp f4117d3e-819d-4d33-bf85-69e28ba32fe5))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "Net-(R6-Pad1)") (pintype "passive") (tstamp f934a442-23d6-4e5b-908f-bb9199ad6f8b))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "/U0_TXD") (pintype "passive") (tstamp 386faf3f-2adf-472a-84bf-bd511edf2429))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 3e57b728-64e6-4470-8f27-a43c0dd85050)
(at 146.8 100.7 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "ESP8266.kicad_sch")
(property "Sheetname" "")
(path "/35de8b7b-92c3-4956-83d0-09e6f0502e81")
(attr smd)
(fp_text reference "C11" (at -2.9 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c5f3091-7791-43b3-8d50-43f6a72274c9)
)
(fp_text value "18pF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8ac400bf-c9b3-4af4-b0a7-9aa9ab4ad17e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 2165c9a4-eb84-4cb6-a870-2fdc39d2511b)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 84d4e166-b429-409a-ab37-c6a10fd82ff5))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp e87738fc-e372-4c48-9de9-398fd8b4874c))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2de1ffee-2174-41d2-8969-68b8d21e5a7d))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6cb93665-0bcd-4104-8633-fffd1811eee0))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7f2b3ce3-2f20-426d-b769-e0329b6a8111))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a7f2e97b-29f3-44fd-bf8a-97a3c1528b61))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 34c0bee6-7425-4435-8857-d1fe8dfb6d89))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 6cb535a7-247d-4f99-997d-c21b160eadfa))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp e0830067-5b66-4ce1-b2d1-aaa8af20baf7))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp f5c43e09-08d6-4a29-a53a-3b9ea7fb34cd))
(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 7 "Net-(C11-Pad1)") (pintype "passive") (tstamp bac7c5b3-99df-445a-ade9-1e608bbbe27e))
(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 1 "GND") (pintype "passive") (tstamp 75b944f9-bf25-4dc7-8104-e9f80b4f359b))
(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_TO_SOT_SMD:SOT-23-5" (layer "F.Cu")
(tedit 5F6F9B37) (tstamp 43cc368e-4915-491d-a959-587ee1a58f20)
(at 155.4 99.5 180)
(descr "SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "ESP8266.kicad_sch")
(property "Sheetname" "")
(path "/09c081f5-cc29-4640-ae2d-29641feeb1fd")
(attr smd)
(fp_text reference "U3" (at 0 2.3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aea8ebdd-24cc-48f6-a569-93b1b6a74142)
)
(fp_text value "HX9193" (at 0 2.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 193e919a-c460-4fb7-9c3e-fd639131023b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 554214d2-daab-4520-80ec-601b7eccd28f)
)
(fp_line (start 0 -1.56) (end -1.8 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 09a932de-1c91-4c68-b7e2-a313cdf52b1c))
(fp_line (start 0 1.56) (end 0.8 1.56) (layer "F.SilkS") (width 0.12) (tstamp 68f4e72b-a890-47b0-8f3f-e8d32a954350))
(fp_line (start 0 -1.56) (end 0.8 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 76610d91-facf-4235-900b-9058d28275cf))
(fp_line (start 0 1.56) (end -0.8 1.56) (layer "F.SilkS") (width 0.12) (tstamp ebc4415c-8d4a-421a-8be3-ffc1aa524126))
(fp_line (start -2.05 -1.7) (end -2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 0c2735a5-d0a3-4460-89e2-7c0f8b7b8eb7))
(fp_line (start 2.05 1.7) (end 2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp ae02a797-fc2f-41d1-bd99-a9d040fc5b6e))
(fp_line (start 2.05 -1.7) (end -2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp ae8e6a57-da88-4fc2-a435-e3e6aa3bc05e))
(fp_line (start -2.05 1.7) (end 2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp ffc4c81d-43da-4c7e-9e8a-6d97b9020ba5))
(fp_line (start -0.8 1.45) (end -0.8 -1.05) (layer "F.Fab") (width 0.1) (tstamp 04d90da3-abb8-4261-a30e-0573c14c30cb))
(fp_line (start 0.8 1.45) (end -0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp 099ecb97-3df4-4f7a-ae82-6f5f72579f60))
(fp_line (start 0.8 -1.45) (end 0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp 1538e725-d385-4b5a-8db8-b54abefda181))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45) (layer "F.Fab") (width 0.1) (tstamp 52343ac2-4969-42df-af1e-ed7deb794aea))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45) (layer "F.Fab") (width 0.1) (tstamp e23133d0-f8d3-4954-9ba7-66f5ffe9589f))
(pad "1" smd roundrect (at -1.1375 -0.95 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "+5V") (pinfunction "VIN") (pintype "power_in") (tstamp 531073ef-6d5c-421e-b8f5-49e402c33432))
(pad "2" smd roundrect (at -1.1375 0 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp a18d6495-cf46-44b6-991e-be83e928a500))
(pad "3" smd roundrect (at -1.1375 0.95 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "+5V") (pinfunction "EN") (pintype "input") (tstamp 61c2b459-e28e-4686-b9d2-432b81df13d1))
(pad "4" smd roundrect (at 1.1375 0.95 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "unconnected-(U3-Pad4)") (pinfunction "NC") (pintype "no_connect") (tstamp c3bdb2a5-2c7e-47d4-86b1-9d26bdc9aeb6))
(pad "5" smd roundrect (at 1.1375 -0.95 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pinfunction "VOUT") (pintype "power_out") (tstamp a620e621-1b7e-4b19-8287-961a171e5b5f))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_C_Receptacle_HRO_TYPE-C-31-M-12" locked (layer "F.Cu")
(tedit 5D3C0721) (tstamp 4cfd9a02-97ef-4af4-a6b8-db9be1a8fda5)
(at 163.7 105.9 90)
(descr "USB Type-C receptacle for USB 2.0 and PD, http://www.krhro.com/uploads/soft/180320/1-1P320120243.pdf")
(tags "usb usb-c 2.0 pd")
(property "Sheetfile" "ESP8266.kicad_sch")
(property "Sheetname" "")
(path "/5f709f6f-12c4-453d-bf75-0f5fffea6197")
(attr smd)
(fp_text reference "P1" (at 3.5 3 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4a53fa56-d65b-42a4-a4be-8f49c4c015bb)
)
(fp_text value "USB_C_Plug_USB2.0" (at 0 2.9 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6150c02b-beb5-4af1-951e-3666a285a6ea)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 968a6172-7a4e-40ab-a78a-e4d03671e136)
)
(fp_line (start 4.7 -1.9) (end 4.7 0.1) (layer "F.SilkS") (width 0.12) (tstamp 26a22c19-4cc5-4237-9651-0edc4f854154))
(fp_line (start 4.7 2) (end 4.7 3.9) (layer "F.SilkS") (width 0.12) (tstamp 3b65c51e-c243-447e-bee9-832d94c1630e))
(fp_line (start -4.7 -1.9) (end -4.7 0.1) (layer "F.SilkS") (width 0.12) (tstamp 402c62e6-8d8e-473a-a0cf-2b86e4908cd7))
(fp_line (start -4.7 3.9) (end 4.7 3.9) (layer "F.SilkS") (width 0.12) (tstamp a177c3b4-b04c-490e-b3fe-d3d4d7aa24a7))
(fp_line (start -4.7 2) (end -4.7 3.9) (layer "F.SilkS") (width 0.12) (tstamp c1b11207-7c0a-49b3-a41d-2fe677d5f3b8))
(fp_line (start -5.32 -5.27) (end -5.32 4.15) (layer "F.CrtYd") (width 0.05) (tstamp 5bab6a37-1fdf-4cf8-b571-44c962ed86e9))
(fp_line (start -5.32 -5.27) (end 5.32 -5.27) (layer "F.CrtYd") (width 0.05) (tstamp 88deea08-baa5-4041-beb7-01c299cf00e6))
(fp_line (start -5.32 4.15) (end 5.32 4.15) (layer "F.CrtYd") (width 0.05) (tstamp 92f063a3-7cce-4a96-8a3a-cf5767f700c6))
(fp_line (start 5.32 -5.27) (end 5.32 4.15) (layer "F.CrtYd") (width 0.05) (tstamp ad4d05f5-6957-42f8-b65c-c657b9a26485))
(fp_line (start 4.47 -3.65) (end 4.47 3.65) (layer "F.Fab") (width 0.1) (tstamp 3bbbbb7d-391c-4fee-ac81-3c47878edc38))
(fp_line (start -4.47 -3.65) (end -4.47 3.65) (layer "F.Fab") (width 0.1) (tstamp 706c1cb9-5d96-4282-9efc-6147f0125147))
(fp_line (start -4.47 3.65) (end 4.47 3.65) (layer "F.Fab") (width 0.1) (tstamp 9ed09117-33cf-45a3-85a7-2606522feaf8))
(fp_line (start -4.47 -3.65) (end 4.47 -3.65) (layer "F.Fab") (width 0.1) (tstamp eb391a95-1c1d-4613-b508-c76b8bc13a73))
(pad "" np_thru_hole circle locked (at -2.89 -2.6 90) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp 92761c09-a591-4c8e-af4d-e0e2262cb01d))
(pad "" np_thru_hole circle locked (at 2.89 -2.6 90) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp aadc3df5-0e2d-4f3d-b72e-6f184da74c89))
(pad "A1" smd rect locked (at -3.25 -4.045 90) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 8a8c373f-9bc3-4cf7-8f41-4802da916698))
(pad "A4" smd rect locked (at -2.45 -4.045 90) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "+5V") (pinfunction "VBUS") (pintype "passive") (tstamp 749d9ed0-2ff2-4b55-abc5-f7231ec3aa28))
(pad "A5" smd rect locked (at -1.25 -4.045 90) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "unconnected-(P1-PadA5)") (pinfunction "NC") (pintype "no_connect") (tstamp 54ed3ee1-891b-418e-ab9c-6a18747d7388))
(pad "A6" smd rect locked (at -0.25 -4.045 90) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "/USB_DP") (pinfunction "D+") (pintype "bidirectional") (tstamp fd60415a-f01a-46c5-9369-ea970e435e5b))
(pad "A7" smd rect locked (at 0.25 -4.045 90) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "/USB_DM") (pinfunction "D-") (pintype "bidirectional") (tstamp af76ce95-feca-41fb-bf31-edaa26d6766a))
(pad "A8" smd rect locked (at 1.25 -4.045 90) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "unconnected-(P1-PadA8)") (pinfunction "NC") (pintype "no_connect") (tstamp e11ae5a5-aa10-4f10-b346-f16e33c7899a))
(pad "A9" smd rect locked (at 2.45 -4.045 90) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "+5V") (pinfunction "VBUS") (pintype "passive") (tstamp f23ac723-a36d-491d-9473-7ec0ffed332d))
(pad "A12" smd rect locked (at 3.25 -4.045 90) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 4bbde53d-6894-4e18-9480-84a6a26d5f6b))
(pad "B1" smd rect locked (at 3.25 -4.045 90) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp d3dd7cdb-b730-487d-804d-99150ba318ef))
(pad "B4" smd rect locked (at 2.45 -4.045 90) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "+5V") (pinfunction "VBUS") (pintype "passive") (tstamp c3d5daf8-d359-42b2-a7c2-0d080ba7e212))
(pad "B5" smd rect locked (at 1.75 -4.045 90) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "unconnected-(P1-PadB5)") (pinfunction "NC") (pintype "no_connect") (tstamp 9112ddd5-10d5-48b8-954f-f1d5adcacbd9))
(pad "B6" smd rect locked (at 0.75 -4.045 90) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "/USB_DP") (pinfunction "D+") (pintype "bidirectional") (tstamp 1876c30c-72b2-4a8d-9f32-bf8b213530b4))
(pad "B7" smd rect locked (at -0.75 -4.045 90) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "/USB_DM") (pinfunction "D-") (pintype "bidirectional") (tstamp 099473f1-6598-46ff-a50f-4c520832170d))
(pad "B8" smd rect locked (at -1.75 -4.045 90) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "unconnected-(P1-PadB8)") (pinfunction "NC") (pintype "no_connect") (tstamp ca9b74ce-0dee-401c-9544-f599f4cf538d))
(pad "B9" smd rect locked (at -2.45 -4.045 90) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "+5V") (pinfunction "VBUS") (pintype "passive") (tstamp 199124ca-dd64-45cf-a063-97cc545cbea7))
(pad "B12" smd rect locked (at -3.25 -4.045 90) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp c346b00c-b5e0-4939-beb4-7f48172ef334))
(pad "S1" thru_hole oval locked (at 4.32 1.05 90) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu *.Mask) (tstamp 15699041-ed40-45ee-87d8-f5e206a88536))
(pad "S1" thru_hole oval locked (at -4.32 -3.13 90) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu *.Mask) (tstamp 1bd80cf9-f42a-4aee-a408-9dbf4e81e625))
(pad "S1" thru_hole oval locked (at -4.32 1.05 90) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu *.Mask) (tstamp 57f248a7-365e-4c42-b80d-5a7d1f9dfaf3))
(pad "S1" thru_hole oval locked (at 4.32 -3.13 90) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu *.Mask) (tstamp 80095e91-6317-4cfb-9aea-884c9a1accc5))
(model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_C_Receptacle_HRO_TYPE-C-31-M-12.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 590fefcc-03e7-45d6-b6c9-e51a7c3c36c4)
(at 140.7 100.7 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "ESP8266.kicad_sch")
(property "Sheetname" "")
(path "/8c9a98fb-982c-4d73-a2a1-7abb1fbc27a7")
(attr smd)
(fp_text reference "C10" (at 2.5 0.6 225) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp be41ac9e-b8ba-4089-983b-b84269707f1c)
)
(fp_text value "18pF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 98861672-254d-432b-8e5a-10d885a5ffdc)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp f7447e92-4293-41c4-be3f-69b30aad1f17)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 5ff19d63-2cb4-438b-93c4-e66d37a05329))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 637f12be-fa48-4ce4-96b2-04c21a8795c8))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 616287d9-a51f-498c-8b91-be46a0aa3a7f))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8bdea5f6-7a53-427a-92b8-fd15994c2e8c))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a599509f-fbb9-4db4-9adf-9e96bab1138d))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp fa00d3f4-bb71-4b1d-aa40-ae9267e2c41f))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 1cb22080-0f59-4c18-a6e6-8685ef44ec53))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 235067e2-1686-40fe-a9a0-61704311b2b1))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 31f91ec8-56e4-4e08-9ccd-012652772211))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 701e1517-e8cf-46f4-b538-98e721c97380))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(C10-Pad1)") (pintype "passive") (tstamp 14094ad2-b562-4efa-8c6f-51d7a3134345))
(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 1 "GND") (pintype "passive") (tstamp cbebc05a-c4dd-4baf-8c08-196e84e08b27))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 62f15a9a-9893-486e-9ad0-ea43f88fc9e7)
(at 139.1 100.675 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "ESP8266.kicad_sch")
(property "Sheetname" "")
(path "/3e6ea323-4a5f-4173-94d5-0c0e7ff76a4b")
(attr smd)
(fp_text reference "R3" (at 2.325 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c512fed3-9770-476b-b048-e781b4f3cd72)
)
(fp_text value "12kR" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 56d2bc5d-fd72-4542-ab0f-053a5fd60efa)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp f6a5c856-f2b5-40eb-a958-b666a0d408a0)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 2b25e886-ded1-450a-ada1-ece4208052e4))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp ffa442c7-cbef-461f-8613-c211201cec06))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 162e5bdd-61a8-46a3-8485-826b5d58e1a1))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2f3fba7a-cf45-4bd8-9035-07e6fa0b4732))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 319c683d-aed6-4e7d-aee2-ff9871746d52))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 456c5e47-d71e-4708-b061-1e61634d8648))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 0f0f7bb5-ade7-4a81-82b4-43be6a8ad05c))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 4346fe55-f906-453a-b81a-1c013104a598))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 5e6153e6-2c19-46de-9a8e-b310a2a07861))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp cb1a49ef-0a06-4f40-9008-61d1d1c36198))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp b2b363dd-8e47-4a76-a142-e00e28334875))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "Net-(R3-Pad2)") (pintype "passive") (tstamp c15b2f75-2e10-4b71-bebb-e2b872171b92))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 645bdbdc-8f65-42ef-a021-2d3e7d74a739)
(at 145.5 112.3 -135)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "ESP8266.kicad_sch")
(property "Sheetname" "")
(path "/7dddfdaa-5d63-4665-aeb8-65958d39fc33")
(attr smd)
(fp_text reference "R7" (at -2.5 -0.1 45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e87b259-dfc1-4885-8dcf-7e7ae39674ed)
)
(fp_text value "200R" (at 0 1.43 45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba116096-3ccc-4cc8-a185-5325439e4e24)
)
(fp_text user "${REFERENCE}" (at 0 0 45) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 8b963561-586b-4575-b721-87e7914602c6)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp b8c8c7a1-d546-4878-9de9-463ec76dff98))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp da862bae-4511-4bb9-b18d-fa60a2737feb))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 82204892-ec79-4d38-a593-52fb9a9b4b87))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8b3ba7fc-20b6-43c4-a020-80151e1caecc))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ae8bb5ae-95ee-4e2d-8a0c-ae5b6149b4e3))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp dec284d9-246c-4619-8dcc-8f4886f9349e))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 7f064424-06a6-4f5b-87d6-1970ae527766))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp a2a0f5cc-b5aa-4e3e-8d85-23bdc2f59aec))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp b7c09c15-282b-4731-8942-008851172201))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp fb0b1440-18be-4b5f-b469-b4cfaf66fc53))
(pad "1" smd roundrect (at -0.825 0 225) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "Net-(R7-Pad1)") (pintype "passive") (tstamp b1ba92d5-0d41-4be9-b483-47d08dc1785d))
(pad "2" smd roundrect (at 0.825 0 225) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "/SD_CLK") (pintype "passive") (tstamp bf6104a1-a529-4c00-b4ae-92001543f7ec))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 71af7b65-0e6b-402e-b1a4-b66be507b4dc)
(at 129.5 113.3)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "ESP8266.kicad_sch")
(property "Sheetname" "")
(path "/cfd70e39-2ac5-4adf-80e6-23a13b6d2467")
(attr smd)
(fp_text reference "D1" (at -0.0125 1.6) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fb35e3b1-aff6-41a7-9cf0-52694b95edeb)
)
(fp_text value "LED" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa20e708-ec85-4e0b-8402-f74a2724f920)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 02f8904b-a7b2-49dd-b392-764e7e29fb51)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 8bd46048-cab7-4adf-af9a-bc2710c1894c))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 992a2b00-5e28-4edd-88b5-994891512d8d))
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp e70d061b-28f0-4421-ad15-0598604086e8))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 18f1018d-5857-4c32-a072-f3de80352f74))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 92848721-49b5-4e4c-b042-6fd51e1d562f))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c07eebcc-30d2-439d-8030-faea6ade4486))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp db1ed10a-ef86-43bf-93dc-9be76327f6d2))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 3d552623-2969-4b15-8623-368144f225e9))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 8aeae536-fd36-430e-be47-1a856eced2fc))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp bc3b3f93-69e0-44a5-b919-319b81d13095))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp e65bab67-68b7-4b22-a939-6f2c05164d2a))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp eb473bfd-fc2d-4cf0-8714-6b7dd95b0a03))
(pad "1" smd roundrect (at -0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "K") (pintype "passive") (tstamp 4fd9bc4f-0ae3-42d4-a1b4-9fb1b2a0a7fd))
(pad "2" smd roundrect (at 0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 86e98417-f5e4-48ba-8147-ef66cc03dde6))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (layer "F.Cu")
(tedit 5D9F72B1) (tstamp 7d2eba81-aa80-4257-a5a7-9a6179da897e)
(at 154.9 112.6 180)
(descr "SOIC, 8 Pin (JEDEC MS-012AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_8.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOIC SO")
(property "Sheetfile" "ESP8266.kicad_sch")
(property "Sheetname" "")
(path "/d44f5c18-b076-4e65-ba2f-50bec9096461")
(attr smd)
(fp_text reference "U4" (at 0.3 1.7) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 725579dd-9ec6-473d-8843-6a11e99f108c)
)
(fp_text value "CH330N" (at 0 3.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6ea0f2f7-b064-4b8f-bd17-48195d1c83d1)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.98 0.98) (thickness 0.15)))
(tstamp dd6c35f3-ae45-4706-ad6f-8028797ca8e0)
)
(fp_line (start 0 2.56) (end 1.95 2.56) (layer "F.SilkS") (width 0.12) (tstamp 07652224-af43-42a2-841c-1883ba305bc4))
(fp_line (start 0 -2.56) (end 1.95 -2.56) (layer "F.SilkS") (width 0.12) (tstamp 39845449-7a31-4262-86b1-e7af14a6659f))
(fp_line (start 0 2.56) (end -1.95 2.56) (layer "F.SilkS") (width 0.12) (tstamp 63286bbb-78a3-4368-a50a-f6bf5f1653b0))
(fp_line (start 0 -2.56) (end -3.45 -2.56) (layer "F.SilkS") (width 0.12) (tstamp b8e1a8b8-63f0-4e53-a6cb-c8edf9a649c4))
(fp_line (start -3.7 2.7) (end 3.7 2.7) (layer "F.CrtYd") (width 0.05) (tstamp adcbf4d0-ed9c-4c7d-b78f-3bcbe974bdcb))
(fp_line (start 3.7 2.7) (end 3.7 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp c6bba6d7-3631-448e-9df8-b5a9e3238ade))
(fp_line (start -3.7 -2.7) (end -3.7 2.7) (layer "F.CrtYd") (width 0.05) (tstamp e4184668-3bdd-4cb2-a053-4f3d5e57b541))
(fp_line (start 3.7 -2.7) (end -3.7 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp ea745685-58a4-4364-a674-15381eadb187))
(fp_line (start -0.975 -2.45) (end 1.95 -2.45) (layer "F.Fab") (width 0.1) (tstamp 4b471778-f61d-4b9d-a507-3d4f82ec4b7c))
(fp_line (start 1.95 2.45) (end -1.95 2.45) (layer "F.Fab") (width 0.1) (tstamp 80f8c1b4-10dd-40fe-b7f7-67988bc3ad81))
(fp_line (start -1.95 2.45) (end -1.95 -1.475) (layer "F.Fab") (width 0.1) (tstamp 883105b0-f6a6-466b-ba58-a2fcc1f18e4b))
(fp_line (start 1.95 -2.45) (end 1.95 2.45) (layer "F.Fab") (width 0.1) (tstamp be5bbcc0-5b09-43de-a42f-297f80f602a5))
(fp_line (start -1.95 -1.475) (end -0.975 -2.45) (layer "F.Fab") (width 0.1) (tstamp f8621ac5-1e7e-4e87-8c69-5fd403df9470))
(pad "1" smd roundrect (at -2.475 -1.905 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "/USB_DP") (pinfunction "UD+") (pintype "bidirectional") (tstamp 6f5a9f10-1b2c-4916-b4e5-cb5bd0f851a0))
(pad "2" smd roundrect (at -2.475 -0.635 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/USB_DM") (pinfunction "UD-") (pintype "bidirectional") (tstamp bde3f73b-f869-498d-a8d7-18346cb7179e))
(pad "3" smd roundrect (at -2.475 0.635 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp d2db53d0-2821-4ebe-bf21-b864eac8ca44))
(pad "4" smd roundrect (at -2.475 1.905 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 41 "unconnected-(U4-Pad4)") (pinfunction "~{RTS}") (pintype "output+no_connect") (tstamp 3f1ab70d-3263-42b5-9c61-0360188ff2b7))
(pad "5" smd roundrect (at 2.475 1.905 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "+5V") (pinfunction "VCC") (pintype "power_in") (tstamp aa0466c6-766f-4bb4-abf1-502a6a06f91d))
(pad "6" smd roundrect (at 2.475 0.635 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/U0_RXD") (pinfunction "TXD") (pintype "output") (tstamp 692d87e9-6b70-46cc-9c78-b75193a484cc))
(pad "7" smd roundrect (at 2.475 -0.635 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "/U0_TXD") (pinfunction "RXD") (pintype "input") (tstamp a6706c54-6a82-42d1-a6c9-48341690e19d))
(pad "8" smd roundrect (at 2.475 -1.905 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(C16-Pad1)") (pinfunction "V3") (pintype "passive") (tstamp 4f2f68c4-6fa0-45ce-b5c2-e911daddcd12))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "RF_Antenna:Johanson_2450AT18x100" locked (layer "F.Cu")
(tedit 5E281F47) (tstamp 7dcddee7-cb64-4a9d-bde8-637d2ee9257b)
(at 130.4 98.6 -45)
(descr "Johanson 2450AT43F0100 SMD antenna 2400-2500Mhz, -0.5dBi, https://www.johansontechnology.com/datasheets/2450AT18A100/2450AT18A100.pdf")