-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathESPBreakoutBoard-Min-Cutout.kicad_pcb
1355 lines (1333 loc) · 91.6 KB
/
ESPBreakoutBoard-Min-Cutout.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00110fc_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Gerbers-PCBWay")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "/+3.3V")
(net 3 "/+5V")
(net 4 "/EN")
(net 5 "/ADC")
(net 6 "/ADCRAW")
(net 7 "/IO16")
(net 8 "/RST")
(net 9 "/IO15")
(net 10 "Net-(J2-Pad5)")
(net 11 "Net-(J2-Pad6)")
(net 12 "Net-(J2-Pad7)")
(net 13 "Net-(J2-Pad9)")
(net 14 "Net-(J3-Pad1)")
(net 15 "Net-(J3-Pad2)")
(net 16 "Net-(J3-Pad3)")
(net 17 "Net-(J3-Pad4)")
(net 18 "Net-(J3-Pad5)")
(net 19 "Net-(J3-Pad6)")
(net 20 "Net-(J3-Pad9)")
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEF) (tstamp 00000000-0000-0000-0000-000060d57be5)
(at 146.8 83.15)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "ESPBreakotBoard-Min-Cutout.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060d552be")
(attr smd)
(fp_text reference "C2" (at -2.2 0 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 5114c7bf-b955-49f3-a0a8-4b954c81bde0)
)
(fp_text value "22" (at 2.2 0 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 2dc272bd-3aa2-45b5-889d-1d3c8aac80f8)
)
(fp_text user "µF" (at 3.1 0 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 9cb12cc8-7f1a-4a01-9256-c119f11a8a02)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 7cee474b-af8f-4832-b07a-c43c1ab0b464)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 6ec113ca-7d27-4b14-a180-1e5e2fd1c167))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp e43dbe34-ed17-4e35-a5c7-2f1679b3c415))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 5bcace5d-edd0-4e19-92d0-835e43cf8eb2))
(fp_line (start 1.88 0.98) (end -1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 6c2d26bc-6eca-436c-8025-79f817bf57d6))
(fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp bd065eaf-e495-4837-bdb3-129934de1fc7))
(fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp cb24efdd-07c6-4317-9277-131625b065ac))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 14769dc5-8525-4984-8b15-a734ee247efa))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 19c56563-5fe3-442a-885b-418dbc2421eb))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 21ae9c3a-7138-444e-be38-56a4842ab594))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp c7e7067c-5f5e-48d8-ab59-df26f9b35863))
(pad "1" smd roundrect locked (at -1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 2 "/+3.3V") (pintype "passive") (tstamp 853ee787-6e2c-4f32-bc75-6c17337dd3d5))
(pad "2" smd roundrect locked (at 1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 1 "GND") (pintype "passive") (tstamp 57c0c267-8bf9-4cc7-b734-d71a239ac313))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEF) (tstamp 00000000-0000-0000-0000-000060d57bf6)
(at 146.8 72.8)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "ESPBreakotBoard-Min-Cutout.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060d55006")
(attr smd)
(fp_text reference "C3" (at -2.2 0 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp ca87f11b-5f48-4b57-8535-68d3ec2fe5a9)
)
(fp_text value "100" (at 2.2 0.1 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 7d928d56-093a-4ca8-aed1-414b7e703b45)
)
(fp_text user "nF" (at 3.1 0.1 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 16a9ae8c-3ad2-439b-8efe-377c994670c7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp db36f6e3-e72a-487f-bda9-88cc84536f62)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 965308c8-e014-459a-b9db-b8493a601c62))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp b1c649b1-f44d-46c7-9dea-818e75a1b87e))
(fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 0c3dceba-7c95-4b3d-b590-0eb581444beb))
(fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955))
(fp_line (start 1.88 0.98) (end -1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 8a650ebf-3f78-4ca4-a26b-a5028693e36d))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp abe07c9a-17c3-43b5-b7a6-ae867ac27ea7))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 6595b9c7-02ee-4647-bde5-6b566e35163e))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 770ad51a-7219-4633-b24a-bd20feb0a6c5))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp b7199d9b-bebb-4100-9ad3-c2bd31e21d65))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp f3628265-0155-43e2-a467-c40ff783e265))
(pad "1" smd roundrect locked (at -1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 5 "/ADC") (pintype "passive") (tstamp e4c6fdbb-fdc7-4ad4-a516-240d84cdc120))
(pad "2" smd roundrect locked (at 1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 1 "GND") (pintype "passive") (tstamp 789ca812-3e0c-4a3f-97bc-a916dd9bce80))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060d57c50)
(at 154.6 83.8 -90)
(descr "Resistor SMD 0805 (2012 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 "Sheetfile" "ESPBreakotBoard-Min-Cutout.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060d537fc")
(attr smd)
(fp_text reference "R2" (at 2.2 0) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 68877d35-b796-44db-9124-b8e744e7412e)
)
(fp_text value "10kΩ" (at 0 1.25 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp b96fe6ac-3535-4455-ab88-ed77f5e46d6e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp ec31c074-17b2-48e1-ab01-071acad3fa04)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 70e15522-1572-4451-9c0d-6d36ac70d8c6))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp dde51ae5-b215-445e-92bb-4a12ec410531))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 0755aee5-bc01-4cb5-b830-583289df50a3))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4a21e717-d46d-4d9e-8b98-af4ecb02d3ec))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4fb21471-41be-4be8-9687-66030f97befc))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 7599133e-c681-4202-85d9-c20dac196c64))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 6d26d68f-1ca7-4ff3-b058-272f1c399047))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 911bdcbe-493f-4e21-a506-7cbc636e2c17))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 9f8381e9-3077-4453-a480-a01ad9c1a940))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a))
(pad "1" smd roundrect locked (at -1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083325)
(net 9 "/IO15") (pintype "passive") (tstamp c5eb1e4c-ce83-470e-8f32-e20ff1f886a3))
(pad "2" smd roundrect locked (at 1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083325)
(net 1 "GND") (pintype "passive") (tstamp 60dcd1fe-7079-4cb8-b509-04558ccf5097))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060d57c61)
(at 146.8 70.8)
(descr "Resistor SMD 0805 (2012 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 "Sheetfile" "ESPBreakotBoard-Min-Cutout.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060d54ae7")
(attr smd)
(fp_text reference "R3" (at -2.15 0 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 1e8701fc-ad24-40ea-846a-e3db538d6077)
)
(fp_text value "220" (at 2.2 0 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp d5641ac9-9be7-46bf-90b3-6c83d852b5ba)
)
(fp_text user "kΩ" (at 3.1 0 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 0ff508fd-18da-4ab7-9844-3c8a28c2587e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 1f3003e6-dce5-420f-906b-3f1e92b67249)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp a15a7506-eae4-4933-84da-9ad754258706))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp c8c79177-94d4-43e2-a654-f0a5554fbb68))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 03caada9-9e22-4e2d-9035-b15433dfbb17))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 639c0e59-e95c-4114-bccd-2e7277505454))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8ca3e20d-bcc7-4c5e-9deb-562dfed9fecb))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp d3c11c8f-a73d-4211-934b-a6da255728ad))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 40976bf0-19de-460f-ad64-224d4f51e16b))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 8c514922-ffe1-4e37-a260-e807409f2e0d))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp c25a772d-af9c-4ebc-96f6-0966738c13a8))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp e21aa84b-970e-47cf-b64f-3b55ee0e1b51))
(pad "1" smd roundrect locked (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083325)
(net 6 "/ADCRAW") (pintype "passive") (tstamp a27eb049-c992-4f11-a026-1e6a8d9d0160))
(pad "2" smd roundrect locked (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083325)
(net 5 "/ADC") (pintype "passive") (tstamp 378af8b4-af3d-46e7-89ae-deff12ca9067))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060d57c72)
(at 146.8 74.8)
(descr "Resistor SMD 0805 (2012 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 "Sheetfile" "ESPBreakotBoard-Min-Cutout.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060d546d1")
(attr smd)
(fp_text reference "R4" (at -2.15 0 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 3e903008-0276-4a73-8edb-5d9dfde6297c)
)
(fp_text value "100" (at 2.2 0 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 75ffc65c-7132-4411-9f2a-ae0c73d79338)
)
(fp_text user "kΩ" (at 3.1 0 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp df68c26a-03b5-4466-aecf-ba34b7dce6b7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 4780a290-d25c-4459-9579-eba3f7678762)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 1a6d2848-e78e-49fe-8978-e1890f07836f))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 7d34f6b1-ab31-49be-b011-c67fe67a8a56))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 12422a89-3d0c-485c-9386-f77121fd68fd))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 40165eda-4ba6-4565-9bb4-b9df6dbb08da))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 7e023245-2c2b-4e2b-bfb9-5d35176e88f2))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8e06ba1f-e3ba-4eb9-a10e-887dffd566d6))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 45008225-f50f-4d6b-b508-6730a9408caf))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 6475547d-3216-45a4-a15c-48314f1dd0f9))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 8c6a821f-8e19-48f3-8f44-9b340f7689bc))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp a544eb0a-75db-4baf-bf54-9ca21744343b))
(pad "1" smd roundrect locked (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083325)
(net 5 "/ADC") (pintype "passive") (tstamp e8c50f1b-c316-4110-9cce-5c24c65a1eaa))
(pad "2" smd roundrect locked (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083325)
(net 1 "GND") (pintype "passive") (tstamp babeabf2-f3b0-4ed5-8d9e-0215947e6cf3))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060d8477e)
(at 146.8 78.8 180)
(descr "Resistor SMD 0805 (2012 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 "Sheetfile" "ESPBreakotBoard-Min-Cutout.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060d51cc2")
(attr smd)
(fp_text reference "R5" (at 2.15 0 270) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp cbd8faed-e1f8-4406-87c8-58b2c504a5d4)
)
(fp_text value "0Ω" (at -2.2 0 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp f2c93195-af12-4d3e-acdf-bdd0ff675c24)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 8da933a9-35f8-42e6-8504-d1bab7264306)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 9e1b837f-0d34-4a18-9644-9ee68f141f46))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 2f215f15-3d52-4c91-93e6-3ea03a95622f))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 61fe293f-6808-4b7f-9340-9aaac7054a97))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 63ff1c93-3f96-4c33-b498-5dd8c33bccc0))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp b88717bd-086f-46cd-9d3f-0396009d0996))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 003c2200-0632-4808-a662-8ddd5d30c768))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 240e07e1-770b-4b27-894f-29fd601c924d))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 9b0a1687-7e1b-4a04-a30b-c27a072a2949))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp ee27d19c-8dca-4ac8-a760-6dfd54d28071))
(pad "1" smd roundrect locked (at -1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083325)
(net 8 "/RST") (pintype "passive") (tstamp 0217dfc4-fc13-4699-99ad-d9948522648e))
(pad "2" smd roundrect locked (at 1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083325)
(net 7 "/IO16") (pintype "passive") (tstamp bd5408e4-362d-4e43-9d39-78fb99eb52c8))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060d85bed)
(at 146.8 76.8 180)
(descr "Resistor SMD 0805 (2012 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 "Sheetfile" "ESPBreakotBoard-Min-Cutout.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060d5336a")
(attr smd)
(fp_text reference "R1" (at 2.15 0 270) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp ce83728b-bebd-48c2-8734-b6a50d837931)
)
(fp_text value "10" (at -2.2 0 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp c41b3c8b-634e-435a-b582-96b83bbd4032)
)
(fp_text user "kΩ" (at -3.1 0 270) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 94a873dc-af67-4ef9-8159-1f7c93eeb3d7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 4c8eb964-bdf4-44de-90e9-e2ab82dd5313)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 0b21a65d-d20b-411e-920a-75c343ac5136))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 3cd1bda0-18db-417d-b581-a0c50623df68))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 03c52831-5dc5-43c5-a442-8d23643b46fb))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 29e78086-2175-405e-9ba3-c48766d2f50c))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp d57dcfee-5058-4fc2-a68b-05f9a48f685b))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 0f22151c-f260-4674-b486-4710a2c42a55))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 1831fb37-1c5d-42c4-b898-151be6fca9dc))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 9340c285-5767-42d5-8b6d-63fe2a40ddf3))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp fe8d9267-7834-48d6-a191-c8724b2ee78d))
(pad "1" smd roundrect locked (at -1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083325)
(net 2 "/+3.3V") (pintype "passive") (tstamp 9bb20359-0f8b-45bc-9d38-6626ed3a939d))
(pad "2" smd roundrect locked (at 1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083325)
(net 4 "/EN") (pintype "passive") (tstamp aa14c3bd-4acc-4908-9d28-228585a22a9d))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (layer "F.Cu")
(tedit 60D8D072) (tstamp 00000000-0000-0000-0000-000060d9a045)
(at 141.65 92.642932 180)
(descr "module CMS SOT223 4 pins")
(tags "CMS SOT")
(property "Sheetfile" "ESPBreakotBoard-Min-Cutout.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060d55e49")
(attr smd)
(fp_text reference "U1" (at 2.7 -3) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280)
)
(fp_text value "AMS1117-3.3" (at 0.15 -6.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7aed3a71-054b-4aaa-9c0a-030523c32827)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 31e08896-1992-4725-96d9-9d2728bca7a3)
)
(fp_line (start -1.85 3.41) (end 1.91 3.41) (layer "F.SilkS") (width 0.12) (tstamp 0f54db53-a272-4955-88fb-d7ab00657bb0))
(fp_line (start 1.91 3.41) (end 1.91 2.15) (layer "F.SilkS") (width 0.12) (tstamp 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2))
(fp_line (start 1.91 -3.41) (end 1.91 -2.15) (layer "F.SilkS") (width 0.12) (tstamp 42713045-fffd-4b2d-ae1e-7232d705fb12))
(fp_line (start -4.1 -3.41) (end 1.91 -3.41) (layer "F.SilkS") (width 0.12) (tstamp d4a1d3c4-b315-4bec-9220-d12a9eab51e0))
(fp_line (start 4.4 3.6) (end 4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 1bf544e3-5940-4576-9291-2464e95c0ee2))
(fp_line (start -4.4 3.6) (end 4.4 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 3aaee4c4-dbf7-49a5-a620-9465d8cc3ae7))
(fp_line (start -4.4 -3.6) (end -4.4 3.6) (layer "F.CrtYd") (width 0.05) (tstamp bdc7face-9f7c-4701-80bb-4cc144448db1))
(fp_line (start 4.4 -3.6) (end -4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp c0515cd2-cdaa-467e-8354-0f6eadfa35c9))
(fp_line (start 1.85 -3.35) (end 1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 6441b183-b8f2-458f-a23d-60e2b1f66dd6))
(fp_line (start -0.85 -3.35) (end 1.85 -3.35) (layer "F.Fab") (width 0.1) (tstamp 80094b70-85ab-4ff6-934b-60d5ee65023a))
(fp_line (start -1.85 -2.35) (end -1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 922058ca-d09a-45fd-8394-05f3e2c1e03a))
(fp_line (start -1.85 -2.35) (end -0.85 -3.35) (layer "F.Fab") (width 0.1) (tstamp 97fe9c60-586f-4895-8504-4d3729f5f81a))
(fp_line (start -1.85 3.35) (end 1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp bfc0aadc-38cf-466e-a642-68fdc3138c78))
(pad "1" smd rect locked (at -3.15 -2.3 180) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp b5352a33-563a-4ffe-a231-2e68fb54afa3))
(pad "2" smd rect locked (at 3.15 0 180) (size 2 3.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/+3.3V") (pinfunction "VO") (pintype "power_out") (zone_connect 1) (thermal_width 3.3) (thermal_gap 0.4) (tstamp 2d6db888-4e40-41c8-b701-07170fc894bc))
(pad "2" smd rect locked (at -3.15 0 180) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/+3.3V") (pinfunction "VO") (pintype "power_out") (zone_connect 1) (thermal_width 1.4) (thermal_gap 0.4) (tstamp 66043bca-a260-4915-9fce-8a51d324c687))
(pad "3" smd rect locked (at -3.15 2.3 180) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "/+5V") (pinfunction "VI") (pintype "power_in") (zone_connect 1) (thermal_width 1) (thermal_gap 0.5) (tstamp 852dabbf-de45-4470-8176-59d37a754407))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Andys-Footprints:TerminalBlock_Phoenix_MPT-0,5-2-2.54_1x02_P2.54mm_Horizontal-removed-extra-holes" (layer "F.Cu")
(tedit 60D85AAD) (tstamp 00000000-0000-0000-0000-000060d9a08c)
(at 155.2 93.1)
(descr "Terminal Block Phoenix MPT-0,5-2-2.54, 2 pins, pitch 2.54mm, size 5.54x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725656-920552.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MPT-0,5-2-2.54 pitch 2.54mm size 5.54x6.2mm^2 drill 1.1mm pad 2.2mm")
(property "Sheetfile" "ESPBreakotBoard-Min-Cutout.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060dae008")
(attr through_hole)
(fp_text reference "J1" (at -2.15 -2.792932) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 4fb02e58-160a-4a39-9f22-d0c75e82ee72)
)
(fp_text value "Screw_Terminal_01x02" (at 1.27 4.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef8fe2ac-6a7f-4682-9418-b801a1b10a3b)
)
(fp_text user "${REFERENCE}" (at 1.27 2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 127679a9-3981-4934-815e-896a4e3ff56e)
)
(fp_line (start -1.56 -2.7) (end 4.1 -2.7) (layer "F.SilkS") (width 0.12) (tstamp 2e642b3e-a476-4c54-9a52-dcea955640cd))
(fp_line (start -1.56 2.6) (end 4.1 2.6) (layer "F.SilkS") (width 0.12) (tstamp 30f15357-ce1d-48b9-93dc-7d9b1b2aa048))
(fp_line (start -1.56 -3.16) (end 4.1 -3.16) (layer "F.SilkS") (width 0.12) (tstamp 5038e144-5119-49db-b6cf-f7c345f1cf03))
(fp_line (start -1.56 -3.16) (end -1.56 3.16) (layer "F.SilkS") (width 0.12) (tstamp 54365317-1355-4216-bb75-829375abc4ec))
(fp_line (start 4.1 -3.16) (end 4.1 3.16) (layer "F.SilkS") (width 0.12) (tstamp a3e4f0ae-9f86-49e9-b386-ed8b42e012fb))
(fp_line (start -1.56 3.16) (end 4.1 3.16) (layer "F.SilkS") (width 0.12) (tstamp ac264c30-3e9a-4be2-b97a-9949b68bd497))
(fp_line (start -2 3.6) (end 4.54 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 6a45789b-3855-401f-8139-3c734f7f52f9))
(fp_line (start -2 -3.6) (end -2 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 6c9b793c-e74d-4754-a2c0-901e73b26f1c))
(fp_line (start 4.54 -3.6) (end -2 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 716e31c5-485f-40b5-88e3-a75900da9811))
(fp_line (start 4.54 3.6) (end 4.54 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp b1086f75-01ba-4188-8d36-75a9e2828ca9))
(fp_line (start -1.5 2.6) (end -1.5 -3.1) (layer "F.Fab") (width 0.1) (tstamp 1e1b062d-fad0-427c-a622-c5b8a80b5268))
(fp_line (start 4.04 3.1) (end -1 3.1) (layer "F.Fab") (width 0.1) (tstamp 3b838d52-596d-4e4d-a6ac-e4c8e7621137))
(fp_line (start 3.241 -0.835) (end 1.706 0.7) (layer "F.Fab") (width 0.1) (tstamp 5fc27c35-3e1c-4f96-817c-93b5570858a6))
(fp_line (start -1.5 -3.1) (end 4.04 -3.1) (layer "F.Fab") (width 0.1) (tstamp 66116376-6967-4178-9f23-a26cdeafc400))
(fp_line (start 4.04 -3.1) (end 4.04 3.1) (layer "F.Fab") (width 0.1) (tstamp 749dfe75-c0d6-4872-9330-29c5bbcb8ff8))
(fp_line (start -1.5 -2.7) (end 4.04 -2.7) (layer "F.Fab") (width 0.1) (tstamp 87371631-aa02-498a-998a-09bdb74784c1))
(fp_line (start 0.835 -0.7) (end -0.701 0.835) (layer "F.Fab") (width 0.1) (tstamp a690fc6c-55d9-47e6-b533-faa4b67e20f3))
(fp_line (start 0.701 -0.835) (end -0.835 0.7) (layer "F.Fab") (width 0.1) (tstamp c144caa5-b0d4-4cef-840a-d4ad178a2102))
(fp_line (start -1 3.1) (end -1.5 2.6) (layer "F.Fab") (width 0.1) (tstamp cbdcaa78-3bbc-413f-91bf-2709119373ce))
(fp_line (start -1.5 2.6) (end 4.04 2.6) (layer "F.Fab") (width 0.1) (tstamp d8603679-3e7b-4337-8dbc-1827f5f54d8a))
(fp_line (start 3.375 -0.7) (end 1.84 0.835) (layer "F.Fab") (width 0.1) (tstamp efeac2a2-7682-4dc7-83ee-f6f1b23da506))
(fp_circle (center 0 0) (end 1.1 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 44d8279a-9cd1-4db6-856f-0363131605fc))
(fp_circle (center 2.54 0) (end 3.64 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp eb667eea-300e-4ca7-8a6f-4b00de80cd45))
(pad "1" thru_hole rect locked (at 0 0) (size 2.2 2.2) (drill 1.1) (layers *.Cu *.Mask)
(net 3 "/+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 48ab88d7-7084-4d02-b109-3ad55a30bb11))
(pad "2" thru_hole circle locked (at 2.54 0) (size 2.2 2.2) (drill 1.1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp f71da641-16e6-4257-80c3-0b9d804fee4f))
(model "${KISYS3DMOD}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MPT-0,5-2-2.54_1x02_P2.54mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tedit 60D64A3F) (tstamp 00000000-0000-0000-0000-000060d9a8ae)
(at 145.9 86.05 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "ESPBreakotBoard-Min-Cutout.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060d5661c")
(attr smd)
(fp_text reference "C1" (at 0 -1.3 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 37e8181c-a81e-498b-b2e2-0aef0c391059)
)
(fp_text value "10µF" (at 0 1.35 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 676efd2f-1c48-4786-9e4b-2444f1e8f6ff)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 097edb1b-8998-4e70-b670-bba125982348)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp aa2ea573-3f20-43c1-aa99-1f9c6031a9aa))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp f40d350f-0d3e-4f8a-b004-d950f2f8f1ba))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 0351df45-d042-41d4-ba35-88092c7be2fc))
(fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 240e5dac-6242-47a5-bbef-f76d11c715c0))
(fp_line (start 1.88 0.98) (end -1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 8d9a3ecc-539f-41da-8099-d37cea9c28e7))
(fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp e472dac4-5b65-4920-b8b2-6065d140a69d))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 0e1ed1c5-7428-4dc7-b76e-49b2d5f8177d))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 14c51520-6d91-4098-a59a-5121f2a898f7))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 2d67a417-188f-4014-9282-000265d80009))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 84e5506c-143e-495f-9aa4-d3a71622f213))
(pad "1" smd roundrect locked (at -1.0375 0 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.213)
(net 3 "/+5V") (pintype "passive") (zone_connect 1) (thermal_width 1) (thermal_gap 0.5) (tstamp 994b6220-4755-4d84-91b3-6122ac1c2c5e))
(pad "2" smd roundrect locked (at 1.0375 0 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 1 "GND") (pintype "passive") (tstamp 67763d19-f622-4e1e-81e5-5b24da7c3f99))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Andys-Footprints:ESP-12-Socket-Cutout-IO9-10" (layer "F.Cu")
(tedit 6206E602) (tstamp 00000000-0000-0000-0000-000060d9d0be)
(at 143 70.8)
(descr "Through hole straight pin header, 2x08, 2.00mm pitch, aligned to hold a ESP-12E/F")
(tags "Through hole pin header THT 2x08 2.00mm single row ESP ESP-12")
(property "Sheetfile" "ESPBreakotBoard-Min-Cutout.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060d4fbe9")
(attr through_hole)
(fp_text reference "U2" (at -1.3 -2.25) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.12)))
(tstamp 6b5cfbbf-a4dd-4c20-84b0-7f2a151dbbce)
)
(fp_text value "ESP-07" (at 7 16.06) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a3670bd8-dca6-46b2-a5a8-e228299e3ec9)
)
(fp_text user "IO3" (at 15.9 2 270 unlocked) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror))
(tstamp 10927c1b-ebfd-45d5-9120-4867c717f270)
)
(fp_text user "IO10" (at 8 17.25) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror))
(tstamp 20eda35d-4099-46fe-b55e-fd57d57e90ab)
)
(fp_text user "EN" (at -1.7 4 -90) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror))
(tstamp 4e776fc9-cde0-40d4-aa6b-d1f8bf418fd3)
)
(fp_text user "IO4" (at 15.9 6 270 unlocked) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror))
(tstamp 572ad497-f15c-44e6-b6c4-2db8ed558982)
)
(fp_text user "IO5" (at 15.9 4 270 unlocked) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror))
(tstamp 6b2cd55e-47ba-4025-85fc-1a5af000b6b6)
)
(fp_text user "IO13" (at -1.7 12 -90) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror))
(tstamp 80dbc0e2-3bf5-4816-ab7a-df2c2f52f81d)
)
(fp_text user "IO0" (at 15.9 8 270 unlocked) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror))
(tstamp 8c43b56e-7293-4003-acbb-4722498418ed)
)
(fp_text user "IO16" (at -1.7 6 -90) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror))
(tstamp 950c8a1f-b544-4a09-a49b-c216f476ef50)
)
(fp_text user "IO15" (at 15.9 12 270 unlocked) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror))
(tstamp 9f95bf22-6dd4-43b5-95ef-ee3e54d5a6f7)
)
(fp_text user "IO1" (at 15.9 0 270 unlocked) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror))
(tstamp a6d07d6f-6e6e-407f-87b4-0897b8473c45)
)
(fp_text user "VCC" (at -1.7 14 -90) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror))
(tstamp b0e411e8-5b62-43c2-9149-9be3939de80b)
)
(fp_text user "IO14" (at -1.7 8 -90) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror))
(tstamp c57eafd8-e45f-4725-a181-652454161dd9)
)
(fp_text user "IO2" (at 15.9 10 270 unlocked) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror))
(tstamp ca16ebda-e425-4c62-b1b3-48b40ac5a5d2)
)
(fp_text user "ADC" (at -1.7 2 -90) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror))
(tstamp d44f6aaa-f8db-4ae4-8055-30867637d971)
)
(fp_text user "IO9" (at 6 17.25) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror))
(tstamp d71ac2cc-4b55-4dd2-81f9-068e18ed3971)
)
(fp_text user "RST" (at -1.7 0 -90) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror))
(tstamp e9a64594-cb55-4e00-860b-7ee190555404)
)
(fp_text user "IO12" (at -1.7 10 -90) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror))
(tstamp f697d5ec-18e1-435e-bd54-e790fcf0067d)
)
(fp_text user "GND" (at 15.9 14 270 unlocked) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)) (justify mirror))
(tstamp fa3996ea-58a5-40c8-b8c5-862af4766ad0)
)
(fp_text user "${REFERENCE}" (at 0 7 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03aa7303-450a-40d2-abd6-52ba2423b53d)
)
(fp_text user "${REFERENCE}" (at 14.2 7 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2b58059e-f6b4-459e-b6e2-d3e15028aea9)
)
(fp_text user "${REFERENCE}" (at 13 15.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6c003daf-35cc-4fcc-8322-7f90b89ca150)
)
(fp_line (start -1.75 17.25) (end -1.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 16a98427-fe38-4150-bda5-d34f46303260))
(fp_line (start 13.14 15.06) (end 15.26 15.06) (layer "F.SilkS") (width 0.12) (tstamp 1b57afa5-4ffb-4aab-a031-f7f03e72a4c9))
(fp_line (start 15.26 -1.0795) (end 15.26 15.06) (layer "F.SilkS") (width 0.12) (tstamp 2c9196bd-6c9f-48b0-9d82-4786f370c718))
(fp_line (start 9.0795 16.56) (end 4.94 16.56) (layer "F.SilkS") (width 0.12) (tstamp 2ca66098-545c-4fff-8bb7-ae2edcb3d4ed))
(fp_line (start 13.14 -1.0795) (end 13.14 15.06) (layer "F.SilkS") (width 0.12) (tstamp 2cbcf4ca-fab1-477a-90aa-b5c0a0f16845))
(fp_line (start 4.94 14.44) (end 4.94 16.56) (layer "F.SilkS") (width 0.12) (tstamp 57a1eb36-5901-424e-bb23-6bc4648e8d84))
(fp_line (start 9.0795 14.44) (end 9.0795 16.56) (layer "F.SilkS") (width 0.12) (tstamp 60ef5d45-ab54-4614-8417-f29731f193e9))
(fp_line (start -1.06 -1.0795) (end -1.06 15.06) (layer "F.SilkS") (width 0.12) (tstamp 612ed313-c9ef-42fb-8895-cf8df6dbcf49))
(fp_line (start -1.06 15.06) (end 1.06 15.06) (layer "F.SilkS") (width 0.12) (tstamp 75443718-5892-47f7-be3d-bc92403eeec6))
(fp_line (start -1.06 -1.0795) (end 1.06 -1.0795) (layer "F.SilkS") (width 0.12) (tstamp a1edf525-48c5-43fa-b0b4-ebcdc01b5f9f))
(fp_line (start 1.06 -1.0795) (end 1.06 15.06) (layer "F.SilkS") (width 0.12) (tstamp a3732155-9e29-4ff0-b94e-521bde79ba04))
(fp_line (start 15.9 -1.7) (end -1.75 -1.7) (layer "F.SilkS") (width 0.12) (tstamp cb877284-3273-4121-9e0a-265bc1abb12f))
(fp_line (start 15.9 17.25) (end 15.9 -1.7) (layer "F.SilkS") (width 0.12) (tstamp ce7af1fb-647c-403c-9def-6e27fd246f89))
(fp_line (start 15.9 17.25) (end -1.75 17.25) (layer "F.SilkS") (width 0.12) (tstamp d0c809d2-8e5a-4c59-ae3d-8048ba5be32d))
(fp_line (start 13.14 -1.0795) (end 15.26 -1.0795) (layer "F.SilkS") (width 0.12) (tstamp d98f2240-2e34-4080-9767-e3208f9ebcae))
(fp_line (start 9.0795 14.44) (end 4.94 14.44) (layer "F.SilkS") (width 0.12) (tstamp da78ce0e-b793-4b7a-86d0-cefe5d10340b))
(fp_line (start 4.5 17) (end 9.55 17) (layer "F.CrtYd") (width 0.05) (tstamp 077f10f4-17a7-4ea3-adbd-30cac82fd005))
(fp_line (start -1.5 -1.5) (end -1.5 15.5) (layer "F.CrtYd") (width 0.05) (tstamp 0ae302c6-6917-4200-a69d-89a0c5a27437))
(fp_line (start 12.7 -1.5) (end 12.7 15.5) (layer "F.CrtYd") (width 0.05) (tstamp 19af9669-0da7-42fe-bd16-ad604c6d60fa))
(fp_line (start 9.55 17) (end 9.55 14) (layer "F.CrtYd") (width 0.05) (tstamp 5a3436c4-16d5-440c-8d6b-a4f299314c1e))
(fp_line (start 9.55 14) (end 4.5 14) (layer "F.CrtYd") (width 0.05) (tstamp 92644403-8272-488b-add7-1a66239316dc))
(fp_line (start 1.5 15.5) (end 1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9a72b750-0957-4742-800e-bb421053c64f))
(fp_line (start 1.5 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9c6c3ccf-9c20-4f8b-bda7-bddcabf837c8))
(fp_line (start 12.7 15.5) (end 15.7 15.5) (layer "F.CrtYd") (width 0.05) (tstamp 9e32f899-b8d2-47fe-8484-cf18ad8c4579))
(fp_line (start 15.7 15.5) (end 15.7 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp a6dd29da-68e0-4258-a8e4-9ce532bd4fb9))
(fp_line (start 4.5 14) (end 4.5 17) (layer "F.CrtYd") (width 0.05) (tstamp a721e3a7-bd55-4898-9688-976ceeedbbd5))
(fp_line (start 15.7 -1.5) (end 12.7 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp b06d0baa-68ac-4ec1-8204-0f21f80d4571))
(fp_line (start -1.5 15.5) (end 1.5 15.5) (layer "F.CrtYd") (width 0.05) (tstamp bddd4aef-8636-4af3-ab4e-8d0497655669))
(fp_line (start 1 -1) (end 1 15) (layer "F.Fab") (width 0.1) (tstamp 02e6518f-25d9-4273-b795-90d5c04c6e13))
(fp_line (start 9 16.5) (end 5 16.5) (layer "F.Fab") (width 0.1) (tstamp 10b33048-9128-4271-8d6c-bf6ad5ee4996))
(fp_line (start 15.2 -1) (end 15.2 15) (layer "F.Fab") (width 0.1) (tstamp 265ec7f8-e65e-4c35-a9ec-8ac438e025fc))
(fp_line (start -1 15) (end -1 -0.5) (layer "F.Fab") (width 0.1) (tstamp 5a362f73-38e5-4390-9180-0ee5a083e145))
(fp_line (start 13.2 15) (end 13.2 -0.5) (layer "F.Fab") (width 0.1) (tstamp 5addf36d-27f5-4b24-afb8-bb75d47ace2f))
(fp_line (start 5 16.5) (end 5 14.5) (layer "F.Fab") (width 0.1) (tstamp 5dda298e-12f8-4333-bcd8-c3aedc06208c))
(fp_line (start 15.2 15) (end 13.2 15) (layer "F.Fab") (width 0.1) (tstamp 60225a2d-72c2-4c09-81c0-cfa025d979d6))
(fp_line (start 13.2 -0.5) (end 13.7 -1) (layer "F.Fab") (width 0.1) (tstamp 73e692da-087f-45e5-a087-5f6bf29bdc60))
(fp_line (start 13.7 -1) (end 15.2 -1) (layer "F.Fab") (width 0.1) (tstamp 77fe2b4f-54e3-45c0-8567-60e578659662))
(fp_line (start 5 14.5) (end 8.5 14.5) (layer "F.Fab") (width 0.1) (tstamp 7f934531-0c6d-47d2-a51a-d0f6f8607499))
(fp_line (start 9 15) (end 9 16.5) (layer "F.Fab") (width 0.1) (tstamp bbd18d12-27d3-4e3d-8eb5-56f7ac74140d))
(fp_line (start 8.5 14.5) (end 9 15) (layer "F.Fab") (width 0.1) (tstamp d3142e5e-9680-45f5-b820-5edac3cbaf0e))
(fp_line (start 1 15) (end -1 15) (layer "F.Fab") (width 0.1) (tstamp d6aa99ce-19ab-4f0d-869a-27024ddde51d))
(fp_line (start -1 -0.5) (end -0.5 -1) (layer "F.Fab") (width 0.1) (tstamp eeb5d96a-5f3f-48c1-84fc-bc4bca4c8472))
(fp_line (start -0.5 -1) (end 1 -1) (layer "F.Fab") (width 0.1) (tstamp f607e233-664e-4d0d-afa6-ca880062d4cc))
(pad "1" thru_hole rect (at 0 0) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "/RST") (pinfunction "~{RST}") (pintype "input") (tstamp 6eceb367-0e33-49d3-ab72-eccc8f2a2b26))
(pad "2" thru_hole oval (at 0 2) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "/ADC") (pinfunction "ADC") (pintype "input") (tstamp fbf58b41-7620-4fe1-803d-e24497483d71))
(pad "3" thru_hole oval (at 0 4) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "/EN") (pinfunction "EN") (pintype "input") (tstamp 3838ce23-62f2-4137-b36c-b1926c0b5ac2))
(pad "4" thru_hole oval (at 0 6) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "/IO16") (pinfunction "GPIO16") (pintype "bidirectional") (tstamp e0136997-1b34-469d-bec5-ee48a6faee4b))
(pad "5" thru_hole oval (at 0 8) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "Net-(J2-Pad5)") (pinfunction "GPIO14") (pintype "bidirectional") (tstamp 848e6c60-8509-4c49-8f79-e2650c519a8f))
(pad "6" thru_hole oval (at 0 10) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(J2-Pad6)") (pinfunction "GPIO12") (pintype "bidirectional") (tstamp 7bc99cbe-6474-4501-9b15-5b6ebd1f4184))
(pad "7" thru_hole oval (at 0 12) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(J2-Pad7)") (pinfunction "GPIO13") (pintype "bidirectional") (tstamp 297531e5-b032-48c1-8897-12802d8e10fe))
(pad "8" thru_hole oval (at 0 14) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "/+3.3V") (pinfunction "VCC") (pintype "power_in") (tstamp ea0875e8-5dfb-498b-9b4a-46017e9523e4))
(pad "11" thru_hole oval (at 6 15.5 270) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(J2-Pad9)") (pinfunction "GPIO9") (pintype "bidirectional") (tstamp a5c5633e-df0d-45a2-be99-2fc2183abf9e))
(pad "12" thru_hole oval (at 8 15.5 270) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "Net-(J3-Pad9)") (pinfunction "GPIO10") (pintype "bidirectional") (tstamp ada30f69-5ae2-4817-93eb-c5155a77f78f))
(pad "15" thru_hole oval (at 14.2 14) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 6973084a-7376-47b4-8b75-df51406d2ec7))
(pad "16" thru_hole oval (at 14.2 12) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "/IO15") (pinfunction "GPIO15") (pintype "bidirectional") (tstamp 4a2bdb04-11f3-4675-8736-8b6d29b5959b))
(pad "17" thru_hole oval (at 14.2 10) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "Net-(J3-Pad6)") (pinfunction "GPIO2") (pintype "bidirectional") (tstamp 7b591666-9ad7-49bf-a2e5-bfca0931771c))
(pad "18" thru_hole oval (at 14.2 8) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "Net-(J3-Pad5)") (pinfunction "GPIO0") (pintype "bidirectional") (tstamp 74486759-5b9d-4627-bc73-086587ddedb7))
(pad "19" thru_hole oval (at 14.2 6) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "Net-(J3-Pad4)") (pinfunction "GPIO4") (pintype "bidirectional") (tstamp 4cede614-f863-434b-a614-82cce2d82a79))
(pad "20" thru_hole oval (at 14.2 4) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "Net-(J3-Pad3)") (pinfunction "GPIO5") (pintype "bidirectional") (tstamp 50ea647a-461d-46d1-a68b-200b7b148900))
(pad "21" thru_hole oval (at 14.2 2) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "Net-(J3-Pad2)") (pinfunction "GPIO3/RXD") (pintype "bidirectional") (tstamp 9fa301b4-5f2d-4178-a11e-86ed4917803a))
(pad "22" thru_hole circle (at 14.2 0) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "Net-(J3-Pad1)") (pinfunction "GPIO1/TXD") (pintype "bidirectional") (tstamp 52496477-925f-42d9-a5f3-a0a98b37ad57))
(model "${KISYS3DMOD}/Connector_PinHeader_2.00mm.3dshapes/PinHeader_1x08_P2.00mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KISYS3DMOD}/Connector_PinHeader_2.00mm.3dshapes/PinHeader_1x08_P2.00mm_Vertical.wrl"
(offset (xyz 14.3 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.00mm.3dshapes/PinHeader_1x02_P2.00mm_Vertical.wrl"
(offset (xyz 8 -15.5 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "Andys-Footprints:Yoshi-Egg-Small" (layer "F.Cu")
(tedit 0) (tstamp 00000000-0000-0000-0000-0000610cc7c3)
(at 161.45 92.35)
(attr through_hole)
(fp_text reference "G1" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
(tstamp 9ff4672a-e1a4-4a1e-887d-1b9a3429d278)
)
(fp_text value "LOGO" (at 0.75 0) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
(tstamp 02165243-61a3-4857-84ba-71a77cb9a387)
)
(fp_poly (pts
(xy -0.4699 -1.40335)
(xy -0.70485 -1.40335)
(xy -0.70485 -1.6383)
(xy -0.4699 -1.6383)
(xy -0.4699 -1.40335)
) (layer "F.SilkS") (width 0.01) (fill solid) (tstamp 0f3c9e3a-9c59-4881-b27a-d0e982b3ea8e))
(fp_poly (pts
(xy -0.70485 -1.1684)
(xy -0.4699 -1.1684)
(xy -0.4699 -0.46355)
(xy -0.70485 -0.46355)
(xy -0.70485 -0.2286)
(xy -1.4097 -0.2286)
(xy -1.4097 -0.6985)
(xy -1.17475 -0.6985)
(xy -1.17475 -1.1684)
(xy -0.9398 -1.1684)
(xy -0.9398 -1.40335)
(xy -0.70485 -1.40335)
(xy -0.70485 -1.1684)
) (layer "F.SilkS") (width 0.01) (fill solid) (tstamp 46cfd089-6873-4d8b-89af-02ff30e49472))
(fp_poly (pts
(xy -0.4699 1.651)
(xy -0.9398 1.651)
(xy -0.9398 1.41605)
(xy -0.4699 1.41605)
(xy -0.4699 1.651)
) (layer "F.SilkS") (width 0.01) (fill solid) (tstamp 68b52f01-fa04-4908-bf88-60c62ace1cfa))
(fp_poly (pts
(xy 0.4699 1.88595)
(xy -0.4699 1.88595)
(xy -0.4699 1.651)
(xy 0.4699 1.651)
(xy 0.4699 1.88595)
) (layer "F.SilkS") (width 0.01) (fill solid) (tstamp 7e969d15-6cc0-4258-8b27-586608a21adb))
(fp_poly (pts
(xy 0.4699 0.00635)
(xy 0.70485 0.00635)
(xy 0.70485 0.7112)
(xy 0.4699 0.7112)
(xy 0.4699 0.94615)
(xy -0.23495 0.94615)
(xy -0.23495 0.7112)
(xy -0.4699 0.7112)
(xy -0.4699 0.00635)
(xy -0.23495 0.00635)
(xy -0.23495 -0.2286)
(xy 0.4699 -0.2286)
(xy 0.4699 0.00635)
) (layer "F.SilkS") (width 0.01) (fill solid) (tstamp 825c70b0-4860-42b7-97dc-86bfa46e06fd))
(fp_poly (pts
(xy -1.4097 0.2413)
(xy -0.9398 0.2413)
(xy -0.9398 0.47625)
(xy -0.70485 0.47625)
(xy -0.70485 1.1811)
(xy -0.9398 1.1811)
(xy -0.9398 1.41605)
(xy -1.17475 1.41605)
(xy -1.17475 1.1811)
(xy -1.4097 1.1811)
(xy -1.4097 0.7112)
(xy -1.64465 0.7112)
(xy -1.64465 -0.2286)
(xy -1.4097 -0.2286)
(xy -1.4097 0.2413)
) (layer "F.SilkS") (width 0.01) (fill solid) (tstamp 9d984d1b-8097-407f-92f3-3ef68867dcfa))
(fp_poly (pts
(xy 1.64465 0.7112)
(xy 1.4097 0.7112)
(xy 1.4097 1.1811)
(xy 1.17475 1.1811)
(xy 1.17475 1.41605)
(xy 0.9398 1.41605)
(xy 0.9398 1.651)
(xy 0.4699 1.651)
(xy 0.4699 1.41605)
(xy 0.70485 1.41605)
(xy 0.70485 0.7112)
(xy 0.9398 0.7112)
(xy 0.9398 0.47625)
(xy 1.4097 0.47625)
(xy 1.4097 -0.2286)
(xy 1.64465 -0.2286)
(xy 1.64465 0.7112)
) (layer "F.SilkS") (width 0.01) (fill solid) (tstamp b8c83ad1-b3c9-495c-bdc6-62dead00f5ad))
(fp_poly (pts
(xy 1.4097 -0.2286)
(xy 1.17475 -0.2286)
(xy 1.17475 -0.6985)
(xy 1.4097 -0.6985)
(xy 1.4097 -0.2286)
) (layer "F.SilkS") (width 0.01) (fill solid) (tstamp bb4f0314-c44c-4dda-b85c-537120eaae9a))
(fp_poly (pts
(xy 0.4699 -1.6383)
(xy -0.4699 -1.6383)
(xy -0.4699 -1.87325)
(xy 0.4699 -1.87325)
(xy 0.4699 -1.6383)
) (layer "F.SilkS") (width 0.01) (fill solid) (tstamp bbb15673-6d42-42b8-9d51-7515b3ad9ee9))
(fp_poly (pts
(xy 0.70485 -1.40335)
(xy 0.9398 -1.40335)
(xy 0.9398 -1.1684)
(xy 1.17475 -1.1684)
(xy 1.17475 -0.6985)
(xy 0.9398 -0.6985)
(xy 0.9398 -0.46355)
(xy 0.4699 -0.46355)
(xy 0.4699 -0.6985)
(xy 0.23495 -0.6985)
(xy 0.23495 -1.40335)
(xy 0.4699 -1.40335)
(xy 0.4699 -1.6383)
(xy 0.70485 -1.6383)
(xy 0.70485 -1.40335)
) (layer "F.SilkS") (width 0.01) (fill solid) (tstamp e83e0227-ac0f-4180-82bd-68d3a7b56476))
)
(footprint "Andys-Footprints:PinHeader_1x09_P2.54mm_Vertical-Fixed-SilkScreen" (layer "F.Cu")
(tedit 61FDD4BC) (tstamp 702a88a3-43ee-4616-860f-1d168f9ca33a)
(at 138.62 67.45)
(descr "Through hole straight pin header, 1x09, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x09 2.54mm single row")
(property "Sheetfile" "ESPBreakotBoard-Min-Cutout.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060d5dd46")
(attr through_hole)
(fp_text reference "J2" (at -0.9 -1.85) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.12)))
(tstamp d70a7364-0a41-4e7a-865e-7e54e5588b3d)
)
(fp_text value "Conn_01x09_Male" (at 0 22.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c7adb180-cac4-4e08-bba9-6fc53c45552e)
)
(fp_text user "${REFERENCE}" (at 0 10.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a837f2d3-1377-423d-9e05-10ed8bfdd4d3)
)
(fp_line (start -1.33 21.65) (end 1.33 21.65) (layer "F.SilkS") (width 0.12) (tstamp 068e0483-275b-46cc-982a-0ff1786c3d41))
(fp_line (start 1.33 -1.35) (end 1.33 21.65) (layer "F.SilkS") (width 0.12) (tstamp 919e5111-ffb0-46f0-a366-92294657ae48))
(fp_line (start -1.33 -1.35) (end 1.33 -1.35) (layer "F.SilkS") (width 0.12) (tstamp 9dd515c6-dfd3-4fc5-abe2-a9b8d2b98a2f))
(fp_line (start -1.33 -1.35) (end -1.33 21.65) (layer "F.SilkS") (width 0.12) (tstamp a9690b8a-291c-4e4b-9507-2678d734eb14))
(fp_line (start -1.8 -1.8) (end -1.8 22.1) (layer "F.CrtYd") (width 0.05) (tstamp 1503e9e5-3d34-42eb-8dd9-49004567dd85))
(fp_line (start 1.8 22.1) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 7aa2d8b6-a41e-484e-8fae-6eaf3c9b50e2))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 9189e55c-3f50-4101-8ec0-b008b5a37edd))
(fp_line (start -1.8 22.1) (end 1.8 22.1) (layer "F.CrtYd") (width 0.05) (tstamp e6ac1aeb-a88f-44d3-a4fe-18586fc4d39d))
(fp_line (start 1.27 -1.27) (end 1.27 21.59) (layer "F.Fab") (width 0.1) (tstamp 6d06ac8a-1eaa-4729-8e1b-f5f986af5b4a))
(fp_line (start 1.27 21.59) (end -1.27 21.59) (layer "F.Fab") (width 0.1) (tstamp 75678f94-bc9c-4467-badd-51719f3ea0d5))
(fp_line (start -1.27 21.59) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 9ecd62a1-028b-4302-8a84-a4e34c950174))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp a9461d93-f1d1-4497-961f-3d8b4917a96e))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp ffcdfa39-bc4e-49d0-acb0-8b5d14b3a0df))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "/RST") (pinfunction "Pin_1") (pintype "passive") (tstamp 08c9fb3a-987c-44fb-95be-3a52bb335067))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "/ADCRAW") (pinfunction "Pin_2") (pintype "passive") (tstamp 3869cd68-2179-440e-8615-471bacbde811))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "/EN") (pinfunction "Pin_3") (pintype "passive") (tstamp 901557b7-758d-4a62-b40d-83d5ef94fecf))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "/IO16") (pinfunction "Pin_4") (pintype "passive") (tstamp 6b09e1b4-d83d-4f64-9052-a3be881114a4))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "Net-(J2-Pad5)") (pinfunction "Pin_5") (pintype "passive") (tstamp 71f18bbc-30c3-4a1b-b186-2a032053c781))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "Net-(J2-Pad6)") (pinfunction "Pin_6") (pintype "passive") (tstamp b69a6995-6356-4485-856f-1cb28a53a02a))
(pad "7" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 "Net-(J2-Pad7)") (pinfunction "Pin_7") (pintype "passive") (tstamp efa18901-dd65-4597-9399-7e85f1015b89))
(pad "8" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "/+3.3V") (pinfunction "Pin_8") (pintype "passive") (tstamp 27055ad6-6684-4866-bba8-c00e3e482fe4))
(pad "9" thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "Net-(J2-Pad9)") (pinfunction "Pin_9") (pintype "passive") (tstamp e9a4ad61-c16f-4a36-9385-12858092576f))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x09_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Andys-Footprints:PinHeader_1x09_P2.54mm_Vertical-Fixed-SilkScreen" (layer "F.Cu")
(tedit 61FDD4BC) (tstamp cbba37cc-9c26-4477-8cf2-405ca617e1f9)
(at 161.48 67.45)
(descr "Through hole straight pin header, 1x09, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x09 2.54mm single row")
(property "Sheetfile" "ESPBreakotBoard-Min-Cutout.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060d5ccc4")
(attr through_hole)
(fp_text reference "J3" (at -0.9 -1.85) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.12)))
(tstamp e925b71b-8515-40e6-bf4b-cd5d59ed0aa4)
)
(fp_text value "Conn_01x09_Male" (at 0 22.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 082e3919-f056-4fdc-9242-61d00df680f6)
)
(fp_text user "${REFERENCE}" (at 0 10.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2a722e3b-fca7-48c9-bcd2-6b10073f1f23)
)
(fp_line (start -1.33 -1.35) (end -1.33 21.65) (layer "F.SilkS") (width 0.12) (tstamp 070e0d81-a149-4bfe-9739-d93b5c04a929))
(fp_line (start -1.33 -1.35) (end 1.33 -1.35) (layer "F.SilkS") (width 0.12) (tstamp 778f725e-f4ed-46cf-bf2f-d1a6c4ee0d7b))
(fp_line (start 1.33 -1.35) (end 1.33 21.65) (layer "F.SilkS") (width 0.12) (tstamp 8118897a-716e-4a85-89b5-b4cc3f6f7315))
(fp_line (start -1.33 21.65) (end 1.33 21.65) (layer "F.SilkS") (width 0.12) (tstamp 81bc28fc-d79d-45fd-ace2-0a9b01445cbf))
(fp_line (start -1.8 22.1) (end 1.8 22.1) (layer "F.CrtYd") (width 0.05) (tstamp 43606ef2-14fd-4069-ae54-3abba668fc58))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp cc2f772d-66f5-4ef2-bf72-bf4cabe8468e))
(fp_line (start 1.8 22.1) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp cc9a9312-38fc-4d00-b848-012061dcb89c))
(fp_line (start -1.8 -1.8) (end -1.8 22.1) (layer "F.CrtYd") (width 0.05) (tstamp dba793d2-6772-45fd-ab4a-10b0299ea321))
(fp_line (start -1.27 21.59) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 42334922-2c29-448c-a4d1-8e8058a0b973))
(fp_line (start 1.27 -1.27) (end 1.27 21.59) (layer "F.Fab") (width 0.1) (tstamp 49c055b7-01e1-48d7-9e7a-e99fd5b60bf5))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp ccb01023-5167-4550-bdf3-9f5d286db7e2))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp e4825e0a-b389-4078-aca2-eef102d72b5a))
(fp_line (start 1.27 21.59) (end -1.27 21.59) (layer "F.Fab") (width 0.1) (tstamp edbbadf1-f3c9-4b1d-a5b1-19178ca2b99b))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "Net-(J3-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp defd568e-8531-458a-92a1-746818cd1260))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "Net-(J3-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp f264d4f7-ad5e-4dcb-b3a8-a3b229b3d707))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 "Net-(J3-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp 16853fc1-2802-404c-863d-af24686a53ab))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 17 "Net-(J3-Pad4)") (pinfunction "Pin_4") (pintype "passive") (tstamp fbb06cd4-8ec4-438e-b8bd-7d506540f9c8))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 "Net-(J3-Pad5)") (pinfunction "Pin_5") (pintype "passive") (tstamp 67c46f8a-8ebb-479c-86bc-a810cd66bb92))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "Net-(J3-Pad6)") (pinfunction "Pin_6") (pintype "passive") (tstamp d9578c44-559c-4121-9098-135bc34b67fb))
(pad "7" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "/IO15") (pinfunction "Pin_7") (pintype "passive") (tstamp cec2c00d-b786-4841-9416-8e713ad0e1ca))
(pad "8" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_8") (pintype "passive") (tstamp d11bdf8f-bc1a-4e02-852a-5ff8ca074f8b))
(pad "9" thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "Net-(J3-Pad9)") (pinfunction "Pin_9") (pintype "passive") (tstamp b0fa1b17-40d6-4888-9106-6a049f5a2ba7))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x09_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (layer "F.Cu")
(tedit 56DDB9C7) (tstamp f05cc04a-65ae-4584-8a19-9f6fce221bd7)
(at 149.8 92.44)
(descr "Mounting Hole 2.2mm, M2")