-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathesp8266.kicad_pcb
15477 lines (15421 loc) · 657 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 20221018) (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)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(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 "unconnected-(U2-VDD_RTC-Pad5)")
(net 2 "unconnected-(U3-NC-Pad4)")
(net 3 "+BATT")
(net 4 "GND")
(net 5 "VBUS")
(net 6 "VIN")
(net 7 "unconnected-(U4-NC-Pad3)")
(net 8 "unconnected-(U4-NC-Pad4)")
(net 9 "unconnected-(U5-STAT-Pad1)")
(net 10 "/UD_N")
(net 11 "/UD_P")
(net 12 "Net-(U5-PROG)")
(net 13 "unconnected-(U6-Pad4)")
(net 14 "unconnected-(U6-Pad5)")
(net 15 "unconnected-(U6-Pad6)")
(net 16 "unconnected-(U6-Pad7)")
(net 17 "unconnected-(U7-Pad3)")
(net 18 "unconnected-(U7-Pad4)")
(net 19 "unconnected-(U10-B-Pad2)")
(net 20 "Net-(U3-EN)")
(net 21 "+3V3")
(net 22 "DTR")
(net 23 "RTS")
(net 24 "RESET")
(net 25 "GPIO0")
(net 26 "unconnected-(U13-NC-Pad7)")
(net 27 "unconnected-(U13-~{OUT}{slash}~{DTR}-Pad8)")
(net 28 "unconnected-(U13-R232-Pad15)")
(net 29 "unconnected-(U13-~{DCD}-Pad12)")
(net 30 "unconnected-(U13-~{RI}-Pad11)")
(net 31 "unconnected-(U13-~{DSR}-Pad10)")
(net 32 "unconnected-(U13-~{CTS}-Pad9)")
(net 33 "Net-(U2-XTAL_OUT)")
(net 34 "Net-(U2-XTAL_IN)")
(net 35 "LNA")
(net 36 "unconnected-(JP1-ID-Pad4)")
(net 37 "Net-(U2-RES12K)")
(net 38 "SD_CLK")
(net 39 "Net-(U2-SDIO_CLK)")
(net 40 "Net-(U2-CHIP_PU)")
(net 41 "GPIO15")
(net 42 "ADC")
(net 43 "GPIO16")
(net 44 "GPIO14")
(net 45 "GPIO12")
(net 46 "GPIO13")
(net 47 "GPIO2")
(net 48 "GPIO4")
(net 49 "SD_HD")
(net 50 "SD_WP")
(net 51 "SD_CS0")
(net 52 "SD_SO")
(net 53 "SD_SI")
(net 54 "GPIO5")
(net 55 "U0RXD")
(net 56 "U0TXD")
(net 57 "NEOPIXEL_OUT")
(net 58 "ANT")
(footprint "TestPoint:TestPoint_Pad_D1.0mm" (layer "F.Cu")
(tstamp 04960a6e-222c-4247-a2d7-2a54bdaca2d0)
(at 72.034045 133.93798)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(property "Sheetfile" "esp8266.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/351e63e2-7512-4358-addf-0caa58e5dfcb")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "TP6" (at 0 -1.448) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 857cd9ed-a5e3-4cdd-a6e5-74e6622cba68)
)
(fp_text value "TestPoint" (at 0 1.55) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 51f68104-8727-45b3-a3fc-3eaebd93a6e2)
)
(fp_text user "${REFERENCE}" (at 0 -1.45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eed62501-b8b8-40c1-853e-7d9218d5e7c8)
)
(fp_circle (center 0 0) (end 0 0.7)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 98522b7a-d4b3-441b-9fcb-cd437f57e91b))
(fp_circle (center 0 0) (end 1 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 6d777da4-d631-4086-87cd-cb3cc4b05ade))
(pad "1" smd circle (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask")
(net 6 "VIN") (pinfunction "1") (pintype "passive") (tstamp 7ff8cf16-fceb-41b3-a21e-e1ae5d419cb5))
)
(footprint "jlc_footprints:R0603" (layer "F.Cu")
(tstamp 051f266e-74eb-4e0f-a011-bc6b05b61fba)
(at 98.921283 139.488329 135)
(descr "R0603 footprint")
(tags "R0603 footprint C8218")
(property "LCSC" "C22790")
(property "Sheetfile" "esp8266.kicad_sch")
(property "Sheetname" "")
(property "ki_keywords" "C22790")
(path "/95aa626c-33d8-4d30-8311-8fa46fab2dfa")
(attr smd)
(fp_text reference "R1" (at 0 -2.660605 135) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 82407e1c-6af6-4951-86a3-400e5f26de9f)
)
(fp_text value "12k" (at 0 2.660605 135) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9cdf6f1e-2e11-40e3-8add-2b10b6db4bf7)
)
(fp_text user "REF**" (at 0 4.660605 135) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe97b0f8-e397-4cd2-b585-488b328cb811)
)
(fp_line (start -1.38509 -0.660605) (end -0.426213 -0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 9282e98b-c211-4661-bdd8-61e90561c7f8))
(fp_line (start -1.38509 0.660605) (end -1.38509 -0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 4d2c54c7-bd74-4480-b0e4-b622b5f55b83))
(fp_line (start -0.426213 0.660605) (end -1.38509 0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 623b4475-c14d-4b3f-8a4d-b2a11c7cb311))
(fp_line (start 0.426213 0.660605) (end 1.38509 0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 0ed3b641-bc1e-4cbf-a7df-82e595170eae))
(fp_line (start 1.38509 -0.660605) (end 0.426213 -0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 1d06440d-3a87-40d1-85c7-4dd9a807097b))
(fp_line (start 1.38509 0.660605) (end 1.38509 -0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp e35b84f8-2a0f-4a00-9401-ac77881cff7b))
(fp_circle (center -0.800102 0.400051) (end -0.77013 0.400051)
(stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp d4feaaf5-b243-4267-b9fc-7c778c9b2b03))
(pad "1" smd rect (at -0.753366 0 135) (size 0.806477 0.864008) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "1") (pintype "input") (tstamp c411b5e5-5fec-4210-8411-49e45bf401f0))
(pad "2" smd rect (at 0.753366 0 135) (size 0.806477 0.864008) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "Net-(U2-RES12K)") (pinfunction "2") (pintype "input") (tstamp 72c8dbb8-3842-407e-9f8e-f6b5d11a8ebc))
(model "lib/jlc_footprints.pretty/packages3d/R0603.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 -90))
)
)
(footprint "jlc_footprints:C0603" (layer "F.Cu")
(tstamp 0aa94654-3530-445c-8aa1-2a7a58968b00)
(at 104 136.683822)
(descr "C0603 footprint")
(tags "C0603 footprint C519111")
(property "LCSC" "C519111")
(property "Sheetfile" "esp8266.kicad_sch")
(property "Sheetname" "")
(property "ki_keywords" "C519111")
(path "/dc269d03-50a8-4ab2-9444-c6d12e3bfec7")
(attr smd)
(fp_text reference "C6" (at -0.007722 -2.715443) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ca067190-ba95-4906-b4a8-a81975526085)
)
(fp_text value "5.6p" (at -0.007722 2.710033) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8e1dca49-850d-4f54-b878-ed7fc5b84881)
)
(fp_text user "REF**" (at -0.007722 4.710033) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 82a5911b-91a8-45f5-a640-49a81d8f4a3b)
)
(fp_line (start -1.405461 -0.405613) (end -1.405461 0.394361)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp b6fb4867-d62e-47ea-91ce-cd3d66521730))
(fp_line (start -0.295631 -0.715443) (end -1.095631 -0.715443)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 87383176-8560-455d-a7d8-ef9a5d87a580))
(fp_line (start -0.295631 0.704166) (end -1.095631 0.704166)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4bf59736-1812-4313-a19c-57fc4d9545d5))
(fp_line (start 0.280264 -0.709627) (end 1.080239 -0.709627)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 123a4862-9a37-4ae8-9aae-6024fd7c1bd1))
(fp_line (start 0.280264 0.710033) (end 1.080239 0.710033)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 9d405d93-ca2a-4729-b5e7-66fd061aa511))
(fp_line (start 1.390018 -0.399771) (end 1.390018 0.400254)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp cbf62c66-265f-49d5-9a9a-bf39acf10f9c))
(fp_arc (start -1.405512 -0.405613) (mid -1.314765 -0.624696) (end -1.095682 -0.715443)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp c79745c0-28a6-4c03-b4e7-e787330a32bb))
(fp_arc (start -1.095682 0.704216) (mid -1.314773 0.61346) (end -1.405511 0.394362)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp b2e4398e-8f25-44e1-90ca-b8fc05cf9790))
(fp_arc (start 1.080188 -0.709627) (mid 1.29928 -0.618871) (end 1.390018 -0.399772)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 55fdba3b-7279-4035-bd36-32fa53dfb9bd))
(fp_arc (start 1.390018 0.400203) (mid 1.299271 0.619286) (end 1.080188 0.710033)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 6a2ae500-9271-4664-9cd5-15e22dd7b1ca))
(fp_circle (center -0.800102 0.400051) (end -0.77013 0.400051)
(stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 35a71ccc-0b5c-454f-b8c8-9d6607b3724c))
(pad "1" smd rect (at -0.700025 0) (size 0.8 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "LNA") (pinfunction "1") (pintype "unspecified") (tstamp ad3e381f-82fb-4e37-bf0e-eea337d0c596))
(pad "2" smd rect (at 0.700025 0) (size 0.8 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 58 "ANT") (pinfunction "2") (pintype "unspecified") (tstamp 01babd10-f973-4d50-b717-35716919bb59))
(model "lib/jlc_footprints.pretty/packages3d/C0603.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "jlc_footprints:SC-70-6_L2.2-W1.3-P0.65-LS2.1-BR" (layer "F.Cu")
(tstamp 0debf94a-509d-4c9e-8981-b1ebfd212cdb)
(at 76.050038 139 180)
(descr "SC-70-6_L2.2-W1.3-P0.65-LS2.1-BR footprint")
(tags "SC-70-6_L2.2-W1.3-P0.65-LS2.1-BR footprint C62892")
(property "LCSC" "C62892")
(property "Sheetfile" "esp8266.kicad_sch")
(property "Sheetname" "")
(property "ki_keywords" "C62892")
(path "/8516c547-e505-4360-b9aa-ada522391827")
(attr smd)
(fp_text reference "U9" (at 0 -3.1) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9cac4590-cdcb-4523-87a9-f93a5eba1fc1)
)
(fp_text value "UMH3N" (at 0 3.1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 880249bc-f00b-4e71-b197-d42ba8bae3c5)
)
(fp_text user "REF**" (at 0 5.1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a40235b7-e63b-4ad6-a43e-2ec7f10f0a79)
)
(fp_line (start -0.7 -1.1) (end 0.7 -1.1)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 194c6d62-afc2-4a32-a36b-4ccc22e2175f))
(fp_line (start -0.7 1.1) (end 0.7 1.1)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 1c137fdd-8461-4928-805c-e5e276580fbe))
(fp_arc (start 1.093472 1.094209) (mid 1.092182 1.344189) (end 1.090972 1.094209)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 797a49c1-6b7d-421f-b72c-6a35f6d78d98))
(fp_circle (center 1.053442 1.099924) (end 1.083439 1.099924)
(stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 817b416e-462c-4549-9bb2-a72251e2fe25))
(fp_circle (center 1.371603 0.635001) (end 1.471679 0.635001)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.Fab") (tstamp a7ca514c-01c0-41bf-870d-81d981bb2a34))
(pad "1" smd rect (at 0.949962 0.649987 270) (size 0.41999 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "DTR") (pinfunction "E") (pintype "unspecified") (tstamp b88e303d-bbe9-4392-b551-642cb60944b4))
(pad "2" smd rect (at 0.949962 0 270) (size 0.41999 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "RTS") (pinfunction "B") (pintype "unspecified") (tstamp 88357d5a-e2ae-458d-a398-1bb17c35611e))
(pad "3" smd rect (at 0.949962 -0.649987 270) (size 0.41999 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "RESET") (pinfunction "C") (pintype "unspecified") (tstamp 49dae682-c9ba-43ee-b681-3bc9e3facc42))
(pad "4" smd rect (at -0.949962 -0.649987 90) (size 0.41999 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "RTS") (pinfunction "E") (pintype "unspecified") (tstamp 9a9a0bcb-d28b-47f9-8955-38e4007c7249))
(pad "5" smd rect (at -0.949962 0 90) (size 0.41999 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "DTR") (pinfunction "B") (pintype "unspecified") (tstamp 89f1bc97-3eb7-4863-b994-438f64d08617))
(pad "6" smd rect (at -0.949962 0.649987 90) (size 0.41999 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "GPIO0") (pinfunction "C") (pintype "unspecified") (tstamp ac9ecc41-2cf6-4e24-a83b-81d45b5e27c2))
(model "lib/jlc_footprints.pretty/packages3d/SC-70-6_L2.2-W1.3-P0.65-LS2.1-BR.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 -180))
)
(model "lib/jlc_footprints.pretty/packages3d/SC-70-6_L2.2-W1.3-P0.65-LS2.1-BR.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "jlc_footprints:SOT-25-5_L2.9-W1.6-P0.95-LS2.8-BL" (layer "F.Cu")
(tstamp 1fb38134-cdf0-4b45-9e51-ad853dbe521f)
(at 76 130 -90)
(descr "SOT-25-5_L2.9-W1.6-P0.95-LS2.8-BL footprint")
(tags "SOT-25-5_L2.9-W1.6-P0.95-LS2.8-BL footprint C51118")
(property "LCSC" "C51118")
(property "Sheetfile" "esp8266.kicad_sch")
(property "Sheetname" "")
(property "ki_keywords" "C51118")
(path "/0e40e1da-b637-4e3f-bc28-bdb2cd2809c5")
(attr smd)
(fp_text reference "U3" (at 0.01237 -3.299975 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 510dddf7-cf8f-4887-8847-5280b850640d)
)
(fp_text value "AP2112K-3_3TRG1" (at 0.01237 3.299975 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 42211667-296c-4550-a702-afc36469781b)
)
(fp_text user "REF**" (at 0.01237 5.299975 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6bf2c2c7-f35d-49d8-9ff6-cefadf58e283)
)
(fp_line (start -1.387173 -0.500381) (end 1.411913 -0.500381)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 418bdc46-2853-4293-b523-18a43bcfe89f))
(fp_line (start -1.387173 0.500381) (end -1.387173 -0.500381)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp c439a419-dc69-4a3d-9b83-a5647054540b))
(fp_line (start 1.411913 -0.500381) (end 1.411913 0.500381)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp df1d44eb-7d88-4429-ab89-112e4e382821))
(fp_line (start 1.411913 0.500381) (end -1.387173 0.500381)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 2b662db1-ab00-4fbf-ba18-5961cd2f84c9))
(fp_arc (start -1.779578 1.521463) (mid -1.778282 1.272549) (end -1.777089 1.521464)
(stroke (width 0.24892) (type solid)) (layer "F.SilkS") (tstamp 12bd4e46-6aa7-454b-b6d5-be69ba7e740b))
(fp_circle (center -1.450368 1.400051) (end -1.420396 1.400051)
(stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp b1b76be7-9d5e-4df9-9e27-d1ead0372b27))
(fp_circle (center -1.016281 1.397003) (end -0.889281 1.397003)
(stroke (width 0.254) (type solid)) (fill none) (layer "F.Fab") (tstamp 51870152-18a2-4bce-b7ee-9cbed8a574a6))
(pad "1" smd rect (at -0.949733 1.299975 270) (size 0.622301 1.104902) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "VIN") (pinfunction "VIN") (pintype "unspecified") (tstamp efd8cefb-23ac-45b5-9015-bbe59171721e))
(pad "2" smd rect (at -0.000533 1.299975 270) (size 0.622301 1.104902) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "GND") (pintype "unspecified") (tstamp fdc25ecb-7910-4eb9-b4c6-8f405b032ee0))
(pad "3" smd rect (at 0.949682 1.299975 270) (size 0.622301 1.104902) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "Net-(U3-EN)") (pinfunction "EN") (pintype "unspecified") (tstamp 1fc63488-b3a7-4945-81aa-d2c3e430e562))
(pad "4" smd rect (at 0.949682 -1.299975 270) (size 0.622301 1.104902) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "unconnected-(U3-NC-Pad4)") (pinfunction "NC") (pintype "unspecified+no_connect") (tstamp e4f12b71-2a86-4515-98e9-383d2ee574f8))
(pad "5" smd rect (at -0.949733 -1.299975 270) (size 0.622301 1.104902) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "+3V3") (pinfunction "VOUT") (pintype "unspecified") (tstamp 544b1061-0ef9-4d76-801d-bb9081d6729e))
(model "lib/jlc_footprints.pretty/packages3d/SOT-25-5_L2.9-W1.6-P0.95-LS2.8-BL.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "jlc_footprints:C0603" (layer "F.Cu")
(tstamp 26afa313-6735-40ef-ab26-0e5acabe7aaa)
(at 69 126 -90)
(descr "C0603 footprint")
(tags "C0603 footprint C19666")
(property "LCSC" "C19666")
(property "Sheetfile" "esp8266.kicad_sch")
(property "Sheetname" "")
(property "ki_keywords" "C19666")
(path "/29fee02e-aec1-4d2b-8614-f0d0454b73db")
(attr smd)
(fp_text reference "C5" (at -0.007722 -2.715443 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4649b965-a1bc-4a47-bcc1-30d7669fad22)
)
(fp_text value "4.7u" (at -0.007722 2.710033 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 01eebf03-4b81-4bf3-821b-4087220eb8ee)
)
(fp_text user "REF**" (at -0.007722 4.710033 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 645c9acd-ae3a-4da5-911f-a93762362f87)
)
(fp_line (start -1.405461 -0.405613) (end -1.405461 0.394361)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp c063ca3a-c84d-4f18-bb9f-499e60a41307))
(fp_line (start -0.295631 -0.715443) (end -1.095631 -0.715443)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 9547aa2a-5946-4a73-8ef7-1f6645e0e143))
(fp_line (start -0.295631 0.704166) (end -1.095631 0.704166)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 9024ce37-f8d6-4b59-be65-0a17ebfe7a69))
(fp_line (start 0.280264 -0.709627) (end 1.080239 -0.709627)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp fb4bd416-cec7-4f54-ad57-01d341708505))
(fp_line (start 0.280264 0.710033) (end 1.080239 0.710033)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 05dffac9-11fe-490a-96b0-0d6c57ce29b5))
(fp_line (start 1.390018 -0.399771) (end 1.390018 0.400254)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 34a1ec15-da31-4916-9afb-786092bf82d5))
(fp_arc (start -1.405512 -0.405613) (mid -1.314765 -0.624696) (end -1.095682 -0.715443)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp dca846d7-aa79-450e-9e55-f81b694ddcfa))
(fp_arc (start -1.095682 0.704216) (mid -1.314773 0.61346) (end -1.405511 0.394362)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp ae6c83d3-ec5b-4577-b214-b638083dd05c))
(fp_arc (start 1.080188 -0.709627) (mid 1.29928 -0.618871) (end 1.390018 -0.399772)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp bd118075-f2c8-4e1b-87d0-b96a908532d5))
(fp_arc (start 1.390018 0.400203) (mid 1.299271 0.619286) (end 1.080188 0.710033)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 55fc8f35-ca76-481c-82c3-69cb14864439))
(fp_circle (center -0.800102 0.400051) (end -0.77013 0.400051)
(stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 6cdcd210-d15a-496f-9da8-de765a0ded39))
(pad "1" smd rect (at -0.700025 0 270) (size 0.8 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "1") (pintype "input") (tstamp 10189eef-30b7-49d5-ab3d-a3021a5dca09))
(pad "2" smd rect (at 0.700025 0 270) (size 0.8 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+BATT") (pinfunction "2") (pintype "input") (tstamp bf197758-0c02-4794-af05-c0454a5a7da9))
(model "lib/jlc_footprints.pretty/packages3d/C0603.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "jlc_footprints:R0603" (layer "F.Cu")
(tstamp 2e525d32-5aa7-4047-9473-e6855d0baf76)
(at 62.470505 132.923007 180)
(descr "R0603 footprint")
(tags "R0603 footprint C25804")
(property "LCSC" "C25804")
(property "Sheetfile" "esp8266.kicad_sch")
(property "Sheetname" "")
(property "ki_keywords" "C25804")
(path "/7c758dc8-c092-4bcb-a83d-94ac0b9532f2")
(attr smd)
(fp_text reference "R7" (at 0 -2.660605) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 38c60d99-6ebf-4bd9-8ab2-9ad0922e6b10)
)
(fp_text value "10k" (at 0 2.660605) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8186c775-b2fc-404f-bfa5-d575835b045e)
)
(fp_text user "REF**" (at 0 4.660605) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1a9fe13a-33f8-4a1b-9c93-1d650c834371)
)
(fp_line (start -1.38509 -0.660605) (end -0.426213 -0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 760793d0-6de9-43b5-b2ae-50b88687cb67))
(fp_line (start -1.38509 0.660605) (end -1.38509 -0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp ff0a610c-9be4-4617-a1b6-327d5640b9ec))
(fp_line (start -0.426213 0.660605) (end -1.38509 0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 96befc1d-5b1f-4e00-b582-65c597fd46d2))
(fp_line (start 0.426213 0.660605) (end 1.38509 0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 69d29b30-f3ba-4621-bc0c-2aa589885b9c))
(fp_line (start 1.38509 -0.660605) (end 0.426213 -0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 147d3bdc-0ad8-4088-b6cb-46d35862f19e))
(fp_line (start 1.38509 0.660605) (end 1.38509 -0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 16606a86-43a5-4b64-a6b8-d4f1996f19c3))
(fp_circle (center -0.800102 0.400051) (end -0.77013 0.400051)
(stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp e5086a74-f2f8-4968-84ce-d3658fef07d3))
(pad "1" smd rect (at -0.753366 0 180) (size 0.806477 0.864008) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "VBUS") (pinfunction "1") (pintype "input") (tstamp df7ffc53-d5bc-4abf-a8fa-fb2a18ea899f))
(pad "2" smd rect (at 0.753366 0 180) (size 0.806477 0.864008) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "2") (pintype "input") (tstamp 30e2de95-89ef-4cca-ab8a-3c38f60c4f66))
(model "lib/jlc_footprints.pretty/packages3d/R0603.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 -90))
)
)
(footprint "jlc_footprints:R0603" (layer "F.Cu")
(tstamp 300d8b3b-ab95-4ffe-a813-de664c8ca822)
(at 79.875487 141.288068 180)
(descr "R0603 footprint")
(tags "R0603 footprint C8218")
(property "LCSC" "C25804")
(property "Sheetfile" "esp8266.kicad_sch")
(property "Sheetname" "")
(property "ki_keywords" "C25804")
(path "/fc9039bf-3c5f-4a6f-bdff-fb7dfc95608d")
(attr smd)
(fp_text reference "R5" (at 1.467604 -4.128209 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b9112650-4c36-4c80-be4d-3f9fc73cdf36)
)
(fp_text value "10k" (at 0 2.660605) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f908aa5e-3a47-4075-bd14-82771dc42a72)
)
(fp_text user "REF**" (at 0 4.660605) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b1122751-74b8-4881-8b04-b371f3c3e144)
)
(fp_line (start -1.38509 -0.660605) (end -0.426213 -0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp ed697766-22b3-49b2-a128-601b95053451))
(fp_line (start -1.38509 0.660605) (end -1.38509 -0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a256d367-39b9-4d49-821f-d05d82c464cb))
(fp_line (start -0.426213 0.660605) (end -1.38509 0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 9625967b-3502-4b2c-9c61-5af72be17ed0))
(fp_line (start 0.426213 0.660605) (end 1.38509 0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp b980c713-b505-4b02-9364-e34e508ba6c8))
(fp_line (start 1.38509 -0.660605) (end 0.426213 -0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6362ad11-774c-44dc-acdb-6cd7fc98dd19))
(fp_line (start 1.38509 0.660605) (end 1.38509 -0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp b78b57c2-b5bc-496a-b708-79eb82ab45d7))
(fp_circle (center -0.800102 0.400051) (end -0.77013 0.400051)
(stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 470af882-278a-43de-8d65-f55d6abba90c))
(pad "1" smd rect (at -0.753366 0 180) (size 0.806477 0.864008) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "+3V3") (pinfunction "1") (pintype "input") (tstamp 85ab1a8e-6d58-4c64-8060-279306aeb86d))
(pad "2" smd rect (at 0.753366 0 180) (size 0.806477 0.864008) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "RESET") (pinfunction "2") (pintype "input") (tstamp d4847551-4c39-4a37-ac26-9a774fdc6588))
(model "lib/jlc_footprints.pretty/packages3d/R0603.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 -90))
)
)
(footprint "jlc_footprints:R0603" (layer "F.Cu")
(tstamp 31ba02d0-b0cd-495b-a720-312723d89c45)
(at 82.296 128.778 180)
(descr "R0603 footprint")
(tags "R0603 footprint C8218")
(property "LCSC" "C25804")
(property "Sheetfile" "esp8266.kicad_sch")
(property "Sheetname" "")
(property "ki_keywords" "C25804")
(path "/87b4b131-57fe-4321-8e30-d16f20fb912e")
(attr smd)
(fp_text reference "R6" (at 0 -2.660605) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f0cd2757-a24e-4194-b3ec-7c5eccd5886f)
)
(fp_text value "10k" (at 0 2.660605) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8bb590e3-f365-4abf-ae40-8a8859d3781b)
)
(fp_text user "REF**" (at 0 4.660605) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d5019fb6-3d97-426b-bbe7-65714155bcbd)
)
(fp_line (start -1.38509 -0.660605) (end -0.426213 -0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp a12af37f-fdf9-4a7a-b863-9261a3b549ab))
(fp_line (start -1.38509 0.660605) (end -1.38509 -0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 0bafc09a-2974-4902-a0a5-5fc0f4a64d7c))
(fp_line (start -0.426213 0.660605) (end -1.38509 0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp ef0f0179-f8c0-4230-9353-06bf29185274))
(fp_line (start 0.426213 0.660605) (end 1.38509 0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6c6ba43d-bd40-4748-bad7-a18975c3317e))
(fp_line (start 1.38509 -0.660605) (end 0.426213 -0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp b13e9ede-ce77-458a-8bfd-38f1e5a8a31e))
(fp_line (start 1.38509 0.660605) (end 1.38509 -0.660605)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp bf46d389-277f-435e-9a3b-ff62dc3e95e8))
(fp_circle (center -0.800102 0.400051) (end -0.77013 0.400051)
(stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 34c3924a-f31d-4496-8e48-2306ed84caa6))
(pad "1" smd rect (at -0.753366 0 180) (size 0.806477 0.864008) (layers "F.Cu" "F.Paste" "F.Mask")
(net 41 "GPIO15") (pinfunction "1") (pintype "input") (tstamp f1f4ef2f-385e-4018-944f-cba5834d8ab0))
(pad "2" smd rect (at 0.753366 0 180) (size 0.806477 0.864008) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "2") (pintype "input") (tstamp 55f82635-8fbb-451a-96ed-17a45974942a))
(model "lib/jlc_footprints.pretty/packages3d/R0603.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 -90))
)
)
(footprint "jlc_footprints:C0603" (layer "F.Cu")
(tstamp 345c5b8b-d53b-4b7c-9384-cc1033acb8fc)
(at 74.353165 133.128536 180)
(descr "C0603 footprint")
(tags "C0603 footprint C519111")
(property "LCSC" "C15849")
(property "Sheetfile" "esp8266.kicad_sch")
(property "Sheetname" "")
(property "ki_keywords" "C15849")
(path "/ee97aced-a0e6-4cc4-b649-14bd0cca28e7")
(attr smd)
(fp_text reference "C7" (at -0.007722 -2.715443) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cfd7eb82-5119-42f7-bd67-69a1f24e8719)
)
(fp_text value "1u" (at -0.007722 2.710033) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e8c279b0-efd2-4c21-8ac3-dbd5d8290553)
)
(fp_text user "REF**" (at -0.007722 4.710033) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a9ffbc55-88f2-4302-a690-1280dfcd31c1)
)
(fp_line (start -1.405461 -0.405613) (end -1.405461 0.394361)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp dd3f2943-8534-497c-9323-b8e55d086e7e))
(fp_line (start -0.295631 -0.715443) (end -1.095631 -0.715443)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 852b4d62-1522-43b4-a822-d1673deea3a0))
(fp_line (start -0.295631 0.704166) (end -1.095631 0.704166)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 9f526fca-ab7b-4842-a1d7-0aaab612acb9))
(fp_line (start 0.280264 -0.709627) (end 1.080239 -0.709627)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp e1ca113f-2cfb-4f48-9ad4-07f4cf06ea8d))
(fp_line (start 0.280264 0.710033) (end 1.080239 0.710033)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 81a641a9-9679-408b-96b6-f16fc528eaaf))
(fp_line (start 1.390018 -0.399771) (end 1.390018 0.400254)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp d16c21ec-1c86-4067-966f-1dc9d1532ec4))
(fp_arc (start -1.405512 -0.405613) (mid -1.314765 -0.624696) (end -1.095682 -0.715443)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 7ea507bc-9a62-4c4e-93b4-d2ddb87f52b7))
(fp_arc (start -1.095682 0.704216) (mid -1.314773 0.61346) (end -1.405511 0.394362)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 051fe884-b95a-4811-88ee-1e8eecbf6c31))
(fp_arc (start 1.080188 -0.709627) (mid 1.29928 -0.618871) (end 1.390018 -0.399772)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 8dc5cff4-5157-4086-b1b8-f988f1ca0dd2))
(fp_arc (start 1.390018 0.400203) (mid 1.299271 0.619286) (end 1.080188 0.710033)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp e71ecfb4-22fc-409a-b326-7f86390e292f))
(fp_circle (center -0.800102 0.400051) (end -0.77013 0.400051)
(stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp dadf37aa-9f5b-46a5-92c8-f4c7e0d4d43d))
(pad "1" smd rect (at -0.700025 0 180) (size 0.8 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "1") (pintype "input") (tstamp c1a5f98f-f7e3-4370-b2d2-f990221278b2))
(pad "2" smd rect (at 0.700025 0 180) (size 0.8 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "VIN") (pinfunction "2") (pintype "input") (tstamp cd71409a-86a2-4ba5-8942-7589919a36c0))
(model "lib/jlc_footprints.pretty/packages3d/C0603.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_D1.0mm" (layer "F.Cu")
(tstamp 44cf5f90-f988-4364-bf79-8eb1d3d70de6)
(at 81.49229 139.394672 90)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(property "Sheetfile" "esp8266.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/64ced469-df43-4ff6-96fb-a9a228ec3731")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "TP5" (at 0 -1.448 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aba3452d-817d-487d-a829-e239cb0b4b17)
)
(fp_text value "TestPoint" (at 0 1.55 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 92b1f3ce-57b6-44a1-9666-d41901f2402f)
)
(fp_text user "${REFERENCE}" (at 0 -1.45 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 53254eb2-b76e-4e3f-ab2d-d0b3d9fe1733)
)
(fp_circle (center 0 0) (end 0 0.7)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 04ba72ef-e77a-4761-9d93-ae89a6b51bd6))
(fp_circle (center 0 0) (end 1 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp e7293569-c088-4dc5-83ae-18350839f8a4))
(pad "1" smd circle (at 0 0 90) (size 1 1) (layers "F.Cu" "F.Mask")
(net 4 "GND") (pinfunction "1") (pintype "passive") (tstamp 3a8f63de-d72f-4858-844b-c6bfd1ef2319))
)
(footprint "jlc_footprints:SOT-23_L2.9-W1.3-P1.90-LS2.4-BR" (layer "F.Cu")
(tstamp 45247cb5-bc86-49a4-8d6e-54259a95d58c)
(at 66.021633 133.244737 -90)
(descr "SOT-23_L2.9-W1.3-P1.90-LS2.4-BR footprint")
(tags "SOT-23_L2.9-W1.3-P1.90-LS2.4-BR footprint C15127")
(property "LCSC" "C15127")
(property "Sheetfile" "esp8266.kicad_sch")
(property "Sheetname" "")
(property "ki_keywords" "C15127")
(path "/70727b94-2fcc-444b-adf5-a2709d34df30")
(attr smd)
(fp_text reference "Q1" (at 0 -3.5 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d0d5d68-941f-4cfc-86ea-cd310fae979d)
)
(fp_text value "AO3401A" (at 0 3.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d62f000d-0f5f-49ee-82b0-3dbe5558cc0c)
)
(fp_text user "REF**" (at 0 5.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9f1a3da1-165f-49be-980d-7a4794cb00af)
)
(fp_line (start -0.7 -1.5) (end 0.300025 -1.5)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp e8468653-5a0c-4874-8bc4-48b40348f8c6))
(fp_line (start -0.7 -0.635992) (end -0.7 -1.5)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 168dd5a2-acc6-4ba9-8f74-c1f4d1401d6a))
(fp_line (start -0.7 1.5) (end -0.7 0.635992)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp e7458948-001f-45c7-ac51-ec0056adbd29))
(fp_line (start -0.7 1.5) (end 0.300025 1.5)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 3aed7152-2a81-444f-848c-a2b809921765))
(fp_line (start 0.7 0.31397) (end 0.7 -0.31397)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 8077cf8e-b26c-4d3f-adc0-5f02d3c738c9))
(fp_circle (center 1.2 1.449987) (end 1.229997 1.449987)
(stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 11de9d33-250b-49aa-b5cd-a7bf0d616b8d))
(fp_circle (center 1.752604 0.939802) (end 1.902718 0.939802)
(stroke (width 0.3) (type solid)) (fill none) (layer "F.Fab") (tstamp 9d2e7824-bdee-421a-964f-1fce34b61b82))
(pad "1" smd rect (at 1.150013 0.950013 90) (size 1 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "VBUS") (pinfunction "G") (pintype "unspecified") (tstamp fc0b5b96-f392-4111-8509-48e83f4dbede))
(pad "2" smd rect (at 1.150013 -0.950013 90) (size 1 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "VIN") (pinfunction "S") (pintype "unspecified") (tstamp 2b4791fe-bfdf-43b6-9454-b6064c7c69a9))
(pad "3" smd rect (at -1.150013 -0.000051 90) (size 1 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+BATT") (pinfunction "D") (pintype "unspecified") (tstamp 21a533a2-11f9-4315-8ef0-fc070bd92536))
(model "lib/jlc_footprints.pretty/packages3d/SOT-23_L2.9-W1.3-P1.90-LS2.4-BR.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 -180))
)
)
(footprint "jlc_footprints:SW-SMD_MK-12C02-G020" (layer "F.Cu")
(tstamp 452b94fb-c545-4fba-be70-48f1603300dd)
(at 75.51288 125.067438 180)
(descr "SW-SMD_MK-12C02-G020 footprint")
(tags "SW-SMD_MK-12C02-G020 footprint C963206")
(property "LCSC" "C963206")
(property "Sheetfile" "esp8266.kicad_sch")
(property "Sheetname" "")
(property "ki_keywords" "C963206")
(path "/553b4acc-9cf3-40f8-b405-4b97a3def901")
(attr smd)
(fp_text reference "U6" (at 0 -3.490729) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86acebfa-b705-4830-87a3-c28e2dcccd07)
)
(fp_text value "ON" (at 5.742023 1.272805) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5ca5dbc3-34e5-463a-89ad-adab0f0706c3)
)
(fp_text user "REF**" (at 0 7.705639) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d2b555d-d52b-4180-ab6f-ba736f02a526)
)
(fp_line (start -3.300127 0.817602) (end -3.300127 -0.106248)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 31377e20-cc70-434c-8f39-eafa57d051fb))
(fp_line (start -0.000127 3.705639) (end -0.000127 1.705664)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 66b9d262-2e29-4f81-ae34-5eb567255bac))
(fp_line (start 0.091796 -0.99431) (end -1.591948 -0.99431)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4fd2fb89-f66b-4b1f-a8c4-b1dbfcaf820b))
(fp_line (start 1.299924 1.705664) (end 1.299924 3.705639)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 031772f7-b2e3-4dae-ae26-124aa33d5c97))
(fp_line (start 1.299924 3.705639) (end -0.000127 3.705639)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 18769899-7c5d-45e1-8f92-01ec5c81a318))
(fp_line (start 1.591796 -0.99431) (end 1.408001 -0.99431)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 9dd1b910-4222-4efa-8114-5fdfcb570697))
(fp_line (start 3.199898 1.705664) (end -3.200102 1.705664)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp fe47772d-155a-414b-b54a-a1bf903152fb))
(fp_line (start 3.299924 0.817602) (end 3.299924 -0.106248)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 2ef83aff-e1f5-4a87-aacc-6529ada621fe))
(fp_circle (center -3.855347 -2.004572) (end -3.825375 -2.004572)
(stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp b75d1f7d-9ec2-4f5a-9739-a346bba2f181))
(fp_circle (center -1.5 0.355601) (end -1.33744 0.355601)
(stroke (width 0.324994) (type solid)) (fill none) (layer "F.Fab") (tstamp 934ebcff-ac53-49d5-9817-54aaba1de2ab))
(fp_circle (center 1.5 0.355601) (end 1.66256 0.355601)
(stroke (width 0.324994) (type solid)) (fill none) (layer "F.Fab") (tstamp 7f3322d1-1854-42a7-b928-da1fa51bba32))
(pad "" np_thru_hole circle (at -1.5 0.355601 180) (size 0.849987 0.849987) (drill 0.849987) (layers "*.Cu" "*.Mask") (tstamp d9873bee-120a-4769-b715-e50dd1f5c8bd))
(pad "" np_thru_hole circle (at 1.5 0.355601 180) (size 0.849987 0.849987) (drill 0.849987) (layers "*.Cu" "*.Mask") (tstamp 02a20675-82dc-48ea-9067-e229341aed3c))
(pad "1" smd rect (at -2.250064 -1.490729 180) (size 0.9 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "1") (pintype "unspecified") (tstamp be2cd628-fdbd-45c8-bee6-b8a89c28bff0))
(pad "2" smd rect (at 0.749936 -1.490729 180) (size 0.9 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "Net-(U3-EN)") (pinfunction "2") (pintype "unspecified") (tstamp cbbbf7c6-1056-4c58-bb44-e8024d703788))
(pad "3" smd rect (at 2.249809 -1.490729 180) (size 0.9 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "VIN") (pinfunction "3") (pintype "unspecified") (tstamp 7c8a48cc-0c87-405b-84f4-93c9f6a84963))
(pad "4" smd rect (at 3.799975 -0.779274 180) (size 1.1 0.929997) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "unconnected-(U6-Pad4)") (pinfunction "4") (pintype "unspecified+no_connect") (tstamp 46a42593-8137-46aa-ac1e-97874e9ef093))
(pad "5" smd rect (at 3.799975 1.490729 180) (size 1.1 0.929997) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "unconnected-(U6-Pad5)") (pinfunction "5") (pintype "unspecified+no_connect") (tstamp 26d6eb2e-127e-4b89-a0db-6c159b41e261))
(pad "6" smd rect (at -3.799975 1.490729 180) (size 1.1 0.929997) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "unconnected-(U6-Pad6)") (pinfunction "6") (pintype "unspecified+no_connect") (tstamp 727e1941-d729-4bf9-9368-9d1ff5a09ecb))
(pad "7" smd rect (at -3.799975 -0.779274) (size 1.1 0.929997) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "unconnected-(U6-Pad7)") (pinfunction "7") (pintype "unspecified+no_connect") (tstamp 2cd163ee-e6ab-47d3-811a-52a69edd0b31))
(model "lib/jlc_footprints.pretty/packages3d/SW-SMD_MK-12C02-G020.step"
(offset (xyz 0 -0.6577075901 -0.4999989925))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_D1.0mm" (layer "F.Cu")
(tstamp 45df59d0-91dc-42b1-bda8-b5eeee0ca1c5)
(at 78.893323 139.394672 90)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(property "Sheetfile" "esp8266.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/c832aca5-5954-4ccf-9222-17f00baa765a")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "TP4" (at 0 -1.448 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1b17dfce-59d8-4c79-ab2c-f8755f20c853)
)
(fp_text value "TestPoint" (at 0 1.55 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 48da816b-18ae-4133-9404-0992bdc1277e)
)
(fp_text user "${REFERENCE}" (at 0 -1.45 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0dc413b1-4d80-4fa6-ad79-ec1f4e8469f6)
)
(fp_circle (center 0 0) (end 0 0.7)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp a3073272-8afe-4b93-a81c-f00497902b18))
(fp_circle (center 0 0) (end 1 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 62ce3f57-80fc-4453-a62c-169dec83be6d))
(pad "1" smd circle (at 0 0 90) (size 1 1) (layers "F.Cu" "F.Mask")
(net 25 "GPIO0") (pinfunction "1") (pintype "passive") (tstamp 5999a749-ff7e-4616-8873-d7a91f9b41bd))
)
(footprint "jlc_footprints:L0603" (layer "F.Cu")
(tstamp 50e7942f-7655-4af3-954e-b94789cd8e5a)
(at 106.250376 137.408299 90)
(descr "L0603 footprint")
(tags "L0603 footprint C1035")
(property "LCSC" "C1035")
(property "Sheetfile" "esp8266.kicad_sch")
(property "Sheetname" "")
(property "dnp" "")
(property "exclude_from_bom" "")
(property "ki_keywords" "C1035")
(path "/29132ad0-a6d9-4a42-b98d-5edf71329a8c")
(attr smd exclude_from_pos_files exclude_from_bom)
(fp_text reference "L2" (at -0.006731 -2.66985 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c3c5f784-d298-4ddb-b73a-0ea8f9d4f1d3)
)
(fp_text value "DNP" (at -0.006731 2.651359 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b1992cbe-e164-4682-add1-28fffd4dd8fe)
)
(fp_text user "REF**" (at -0.006731 4.651359 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0ae1c729-bd58-433c-8547-4214011d431d)
)
(fp_line (start -1.424105 -0.517424) (end -1.271679 -0.66985)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 01662314-e17c-4051-ac70-3d3860907cb7))
(fp_line (start -1.424105 0.499009) (end -1.424105 -0.517424)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 757e706c-14b3-4f90-b78c-f26680605374))
(fp_line (start -1.271679 -0.66985) (end -0.509677 -0.66985)
(stroke (width 0.151994) (type solid)) (layer "F.SilkS") (tstamp 5089dbd0-1179-4f82-97e0-19dd3cf14c0e))
(fp_line (start -1.271679 0.651359) (end -1.424105 0.499009)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp bcfd76d1-fafe-4d63-a67f-149d66a10925))
(fp_line (start -1.271679 0.651359) (end -0.509677 0.651359)
(stroke (width 0.151994) (type solid)) (layer "F.SilkS") (tstamp b844d062-3684-49e1-8120-400e6cd378e7))
(fp_line (start 1.258344 -0.66985) (end 0.496342 -0.66985)
(stroke (width 0.151994) (type solid)) (layer "F.SilkS") (tstamp 6b03176d-85cb-4dd5-a549-19374921363e))
(fp_line (start 1.258344 -0.66985) (end 1.410643 -0.517424)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp b4970efb-790d-4d60-a42a-51f96e889358))
(fp_line (start 1.258344 0.651359) (end 0.496342 0.651359)
(stroke (width 0.151994) (type solid)) (layer "F.SilkS") (tstamp 445a9192-0a3d-4bd4-afa3-c90cad1c12fb))
(fp_line (start 1.410643 -0.517424) (end 1.410643 0.499009)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 7b3bc7be-4806-4d56-bc5f-365e0620c859))
(fp_line (start 1.410643 0.499009) (end 1.258344 0.651359)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp cd8859a2-be1d-4eb4-ad00-be2f17960d82))
(fp_circle (center -0.8 0.4) (end -0.770003 0.4)
(stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp effd11d2-cc75-4053-98c8-c71e502be654))
(pad "1" smd rect (at -0.699898 0 270) (size 0.8 0.864008) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "1") (pintype "unspecified") (tstamp f2cd9729-ad6d-452d-a282-c175750975ea))
(pad "2" smd rect (at 0.699898 0 270) (size 0.8 0.864008) (layers "F.Cu" "F.Paste" "F.Mask")
(net 58 "ANT") (pinfunction "2") (pintype "unspecified") (tstamp b8bebda8-b2a8-484a-b5b0-a48afa67db1b))
(model "lib/jlc_footprints.pretty/packages3d/L0603.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 -180))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 52a22142-a65f-4435-839c-fed6e34dbb3c)
(at 86.020309 129.134984 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "LCSC" "C22975")
(property "Sheetfile" "esp8266.kicad_sch")
(property "Sheetname" "")
(property "dnp" "")
(property "exclude_from_bom" "")
(property "ki_keywords" "C22975")
(path "/ef6cb22f-f034-49f5-b641-eb2114ce0246")
(attr smd exclude_from_bom)
(fp_text reference "R8" (at 0 -1.43 -270) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fdbc752b-fbb9-4bfc-ade7-48f2f127e351)
)
(fp_text value "2k" (at 0 1.43 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b394cc97-92b5-496c-af37-3c156fc8e01b)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 9aeeca7c-920c-4f7c-bd0a-5ce7d18356dd)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f7923213-f322-4f27-98e9-9cf8d982cd0e))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4083f3ef-a7f5-4c52-8368-5dd84cbe91d3))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ca3ed2c5-eff5-4314-a87a-355d2c133f8a))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 98f0a17e-1d69-4637-91b8-cdb61b7cb574))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4756a86c-8e64-4900-9313-61816bbe5309))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 56b17d6f-4ee0-4ed9-8ddc-ddc6f33e71e0))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0ac6b55e-d0c7-4c2e-9836-44c247e9e41f))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 59b42c68-7a73-45b9-8bb5-567c9fafed10))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cc043f57-dedb-429d-b839-663562bcdad7))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 69df01ac-1ac6-4f60-93ee-0654e1809724))
(pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 47 "GPIO2") (pinfunction "1") (pintype "input") (tstamp 24e1415a-971f-46b2-aa90-cd50e6a76823))
(pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "+3V3") (pinfunction "2") (pintype "input") (tstamp 1657c848-e9ab-49b2-b1a2-9932a9105391))
(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 "jlc_footprints:C0603" (layer "F.Cu")
(tstamp 538e0620-f889-4c8d-b89a-602cfaaa776b)
(at 97.69768 142.405213 45)
(descr "C0603 footprint")
(tags "C0603 footprint C519111")
(property "LCSC" "C1634")
(property "Sheetfile" "esp8266.kicad_sch")
(property "Sheetname" "")
(property "ki_keywords" "C1634")
(path "/8227dc3e-ec85-451e-ae49-837747ebfc35")
(attr smd)
(fp_text reference "C4" (at -0.007722 -2.715443 45) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3ed2e69c-47c1-45b4-a7c7-c93edf618e22)
)
(fp_text value "10p" (at -0.007722 2.710033 45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 10cc4e08-5b1e-4529-b176-f189e7c0199e)
)
(fp_text user "REF**" (at -0.007722 4.710033 45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2369b610-3595-4de6-8b15-154cc544cda7)
)
(fp_line (start -1.405461 -0.405613) (end -1.405461 0.394361)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp ba92e423-4b04-4c61-a1ba-79082aa4bed6))
(fp_line (start -0.295631 -0.715443) (end -1.095631 -0.715443)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp ef0928be-a1cf-4fec-baf9-d199dae8f347))
(fp_line (start -0.295631 0.704166) (end -1.095631 0.704166)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp f6a7c0a3-93f7-4257-bc0e-d7256416820c))
(fp_line (start 0.280264 -0.709627) (end 1.080239 -0.709627)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 335ba02d-0f01-4190-8308-294b52a0ed11))
(fp_line (start 0.280264 0.710033) (end 1.080239 0.710033)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 8fdf8852-a4a2-4352-a7d6-5b0605ffcdc1))
(fp_line (start 1.390018 -0.399771) (end 1.390018 0.400254)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp a7b970a2-2fb5-482d-9e93-910f4fa31e49))
(fp_arc (start -1.405512 -0.405613) (mid -1.314765 -0.624696) (end -1.095682 -0.715443)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 7576806e-3c9e-4001-9785-43a1bfb53a43))
(fp_arc (start -1.095682 0.704216) (mid -1.314773 0.61346) (end -1.405511 0.394362)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 4c4985a3-cec7-45c5-9437-123fecd46776))
(fp_arc (start 1.080188 -0.709627) (mid 1.29928 -0.618871) (end 1.390018 -0.399772)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp dc9c5ec0-0938-4e1b-b772-ce3401fdb2bb))
(fp_arc (start 1.390018 0.400203) (mid 1.299271 0.619286) (end 1.080188 0.710033)
(stroke (width 0.254) (type solid)) (layer "F.SilkS") (tstamp 55398e10-e420-46f0-9b0f-80913b3085ab))
(fp_circle (center -0.800102 0.400051) (end -0.77013 0.400051)
(stroke (width 0.059995) (type solid)) (fill none) (layer "F.SilkS") (tstamp 7c4fba5e-cbcc-4528-9f3d-0a36ced99ec8))
(pad "1" smd rect (at -0.700025 0 45) (size 0.8 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "1") (pintype "input") (tstamp 134f6135-e204-485e-a3b4-954066691849))
(pad "2" smd rect (at 0.700025 0 45) (size 0.8 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "Net-(U2-XTAL_IN)") (pinfunction "2") (pintype "input") (tstamp 8f505566-4a31-47e8-937e-6a9e3c0b2862))
(model "lib/jlc_footprints.pretty/packages3d/C0603.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "jlc_footprints:C0603" (layer "F.Cu")
(tstamp 5f04f7fd-aa4c-48fa-a5ba-d242958746bc)
(at 101.346 141.732 180)
(descr "C0603 footprint")
(tags "C0603 footprint C519111")
(property "LCSC" "C14663")
(property "Sheetfile" "esp8266.kicad_sch")
(property "Sheetname" "")