-
Notifications
You must be signed in to change notification settings - Fork 0
/
ESP Breadboard Expander.kicad_pcb
19552 lines (19508 loc) · 730 KB
/
ESP Breadboard Expander.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")
(title_block
(title "ESP Breadboard Expander")
(date "2023-12-15")
(rev "v2.0")
(company "BroTech Industries, LLC")
)
(layers
(0 "F.Cu" mixed)
(1 "In1.Cu" power)
(2 "In2.Cu" power)
(31 "B.Cu" mixed)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "prepreg") (thickness 0.1) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 2" (type "core") (thickness 1.24) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 3" (type "prepreg") (thickness 0.1) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pad_to_paste_clearance -0.02)
(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 "+5V")
(net 2 "GND")
(net 3 "+3.3V")
(net 4 "Net-(D1-A)")
(net 5 "Net-(D2-A)")
(net 6 "/TX")
(net 7 "Net-(D3-A)")
(net 8 "/RX")
(net 9 "Net-(F1-Pad1)")
(net 10 "/IO0")
(net 11 "/IO2")
(net 12 "unconnected-(J2-Pin_1-Pad1)")
(net 13 "/ADC0")
(net 14 "/IO16")
(net 15 "/IO14")
(net 16 "/IO12")
(net 17 "/IO13")
(net 18 "/IO15")
(net 19 "/IO5")
(net 20 "/IO4")
(net 21 "unconnected-(J4-Pin_2-Pad2)")
(net 22 "/IO36")
(net 23 "/IO39")
(net 24 "/IO34")
(net 25 "/IO35")
(net 26 "/IO32")
(net 27 "/IO33")
(net 28 "/IO25")
(net 29 "/IO26")
(net 30 "/IO27")
(net 31 "unconnected-(J4-Pin_16-Pad16)")
(net 32 "unconnected-(J4-Pin_17-Pad17)")
(net 33 "unconnected-(J4-Pin_18-Pad18)")
(net 34 "/IO23")
(net 35 "/IO22")
(net 36 "/IO21")
(net 37 "/IO19")
(net 38 "/IO18")
(net 39 "/IO17")
(net 40 "unconnected-(J5-Pin_17-Pad17)")
(net 41 "unconnected-(J5-Pin_18-Pad18)")
(net 42 "unconnected-(J5-Pin_19-Pad19)")
(net 43 "unconnected-(J7-Pin_12-Pad12)")
(net 44 "unconnected-(J7-Pin_13-Pad13)")
(net 45 "unconnected-(J7-Pin_14-Pad14)")
(net 46 "unconnected-(RN1-R2.2-Pad7)")
(net 47 "unconnected-(J1-Pin_3-Pad3)")
(net 48 "unconnected-(J1-Pin_5-Pad5)")
(net 49 "unconnected-(J2-Pin_8-Pad8)")
(net 50 "unconnected-(J4-Pin_1-Pad1)")
(net 51 "unconnected-(RN1-R2.1-Pad2)")
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tstamp 00f96ea9-6475-4f59-bacf-67066c19315d)
(at 120.1875 90.6 180)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "LCSC" "C72043")
(property "Sheetfile" "ESP Breadboard Expander.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/55669ca7-533d-4ce2-9b07-17b42e263fbe")
(attr smd)
(fp_text reference "D2" (at -2.5125 0) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1375d808-c31c-4139-bab8-4682c838dcc7)
)
(fp_text value "Green" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a2ba2ab8-9533-4566-9403-d7a39d6c994e)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 14f309be-6a69-4650-ba86-785e9bff93e4)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b33069f4-b608-4c8c-ac13-de4631461a31))
(fp_line (start -1.485 0.735) (end 0.8 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5ee05ac-168c-4493-87f7-138821e023f1))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b10b4c85-2939-470f-8eb7-a410cecaf0eb))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6e8f4cf9-20cf-4811-b817-ac6ff2efdf93))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 674aa729-6c40-41ba-89f2-5a36b2537e89))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ae2a6315-936e-4ec7-b65f-d176fb195830))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cbfee47b-cc95-487b-901b-1c722641d809))
(fp_line (start -0.8 -0.1) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 61f974b8-58a4-4ce0-a3dd-64f8d9f2e914))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a51c3071-d33c-4311-9de9-a555a164aee5))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b66addc3-79f1-473c-880b-4a1d14a0332d))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp df25cc88-9c94-41b9-8af3-f2f92ff64bed))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b0cb1647-eeb7-4393-b96f-9aa070951112))
(pad "1" smd roundrect (at -0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/RX") (pinfunction "K") (pintype "passive") (tstamp 845a8949-746d-4836-b46e-4631f3750551))
(pad "2" smd roundrect (at 0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(D2-A)") (pinfunction "A") (pintype "passive") (tstamp b7195007-03c0-4fae-a0b0-0e2709c5505b))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Adam_Custom_Footprints:PinHeader_1x14_P2.54mm_Vertical_UpSideDown" (layer "F.Cu")
(tstamp 21e68e44-0470-4a9e-b6db-6b320a146b6b)
(at 42.31 62.22 90)
(descr "Through hole straight pin header, 1x14, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x14 2.54mm single row")
(property "LCSC" "")
(property "Sheetfile" "ESP Breadboard Expander.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x14, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/86548b50-9f27-4579-9782-16a6c9b19961")
(attr through_hole)
(fp_text reference "J7" (at 0.72 35.69 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fcc83da1-a04b-4192-a860-ff1691d798b7)
)
(fp_text value "Conn_01x14_Pin" (at 0 35.35 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d66ee0c7-1413-4355-b69f-3b9ae3f0aefa)
)
(fp_text user "${REFERENCE}" (at 0 16.51 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d5e88e3-3ab4-45c9-9887-3b87e1d1dd98)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c10e2d94-692e-4e0f-bcb9-f31d35b7f40b))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d8db825b-d13c-4f1d-a33e-425d6f85b1df))
(fp_line (start -1.33 1.27) (end -1.33 34.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 63b7fbb4-dfee-446b-9b0e-1b92a8061a98))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c70132f9-d4ec-4fd4-b5d9-fc0a507293f1))
(fp_line (start -1.33 34.35) (end 1.33 34.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab48cfac-f64c-4f90-993e-7b14a98d92c2))
(fp_line (start 1.33 1.27) (end 1.33 34.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c3cc6469-3810-442f-8cc1-9d506591da37))
(fp_line (start -1.8 -1.8) (end -1.8 34.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d14f939f-1352-4b78-a00c-666d6a2e75ea))
(fp_line (start -1.8 34.8) (end 1.8 34.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 49a5ed59-9cd7-4ec9-8865-0afade68226b))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3507f23b-ccbf-42a0-9bf6-5b4e928bf26f))
(fp_line (start 1.8 34.8) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 09db1eda-5acb-4450-a097-8b302c450dd6))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 74b3912a-c478-44f2-83ab-c0879a6e74a5))
(fp_line (start -1.27 34.29) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7e31f845-5d72-4e6e-9382-50f7ed79ebd7))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d830d1f5-671a-41c2-8055-cbe15e184566))
(fp_line (start 1.27 -1.27) (end 1.27 34.29)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f70aa5e3-de06-4f1f-bb8f-5f52e46e0b51))
(fp_line (start 1.27 34.29) (end -1.27 34.29)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 420b8914-c95b-46f9-befd-390fdaa04358))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "/IO14") (pinfunction "Pin_1") (pintype "passive") (tstamp 4e58a9a5-cd4e-47c4-998c-8e690ca8b985))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 30 "/IO27") (pinfunction "Pin_2") (pintype "passive") (tstamp f4ff2ba6-b438-4779-b9f2-370d10692fe5))
(pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 29 "/IO26") (pinfunction "Pin_3") (pintype "passive") (tstamp e9a27a5e-9fa7-4db8-a712-2869d5479a68))
(pad "4" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 28 "/IO25") (pinfunction "Pin_4") (pintype "passive") (tstamp cda965d1-7383-46f2-8048-16e32ba6e656))
(pad "5" thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 27 "/IO33") (pinfunction "Pin_5") (pintype "passive") (tstamp c515fce9-d002-407c-a4a5-adf1477ff1fa))
(pad "6" thru_hole oval (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 26 "/IO32") (pinfunction "Pin_6") (pintype "passive") (tstamp 1f155240-208a-4e01-b59a-25c1d303f745))
(pad "7" thru_hole oval (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 25 "/IO35") (pinfunction "Pin_7") (pintype "passive") (tstamp 0fdb2254-76d4-4016-8880-e1a8941dabcf))
(pad "8" thru_hole oval (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "/IO34") (pinfunction "Pin_8") (pintype "passive") (tstamp ae972c15-3e4c-40e9-981d-27711c0dc1b5))
(pad "9" thru_hole oval (at 0 20.32 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 23 "/IO39") (pinfunction "Pin_9") (pintype "passive") (tstamp 1c37ad52-fee2-4c38-bc97-b39d919fdffc))
(pad "10" thru_hole oval (at 0 22.86 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 22 "/IO36") (pinfunction "Pin_10") (pintype "passive") (tstamp 4a68626d-7897-4dfa-a7ef-c3d97bd216ae))
(pad "11" thru_hole oval (at 0 25.4 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "/ADC0") (pinfunction "Pin_11") (pintype "passive") (tstamp 5a7264ba-863f-416f-be0f-d236c69387d2))
(pad "12" thru_hole oval (at 0 27.94 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 43 "unconnected-(J7-Pin_12-Pad12)") (pinfunction "Pin_12") (pintype "passive+no_connect") (tstamp 897b4e0d-1e77-4d16-80c5-4ad6ce852a16))
(pad "13" thru_hole oval (at 0 30.48 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 44 "unconnected-(J7-Pin_13-Pad13)") (pinfunction "Pin_13") (pintype "passive+no_connect") (tstamp fdf82b88-cef5-43ed-b0b1-3fda1b06f044))
(pad "14" thru_hole oval (at 0 33.02 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 45 "unconnected-(J7-Pin_14-Pad14)") (pinfunction "Pin_14") (pintype "passive+no_connect") (tstamp 2a83298b-6592-43d6-b650-b6594a7d206e))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x14_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 -1.5))
(scale (xyz 1 1 1))
(rotate (xyz 0 -180 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 2283668b-6565-42ba-9d6d-61f060bd9965)
(at 126.1 62.075 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C96446")
(property "Sheetfile" "ESP Breadboard Expander.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/30a6541e-1821-4584-980b-9a27ca2b2ef3")
(attr smd)
(fp_text reference "C1" (at 2.125 0 -180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7ca03472-364e-4530-a486-f6f0abf15440)
)
(fp_text value "10uF" (at 0 1.43 -270) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 93242525-1e1a-4f01-b1d8-a12e31307c81)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 10781cb5-2636-4823-923d-9c6eec77c2ad)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4df07224-e2ef-4e15-97e3-17b8294359d1))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 00dfcb33-b42f-4dcc-9525-e420ddda4d85))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ec33fde1-10c0-4694-a538-c28507fe0d79))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a2cc9572-5fbd-4680-bfaf-94e85c45cef5))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c2bda958-0ee9-45a6-bb24-20523bbc2850))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4508a05a-c8c0-4b35-98c7-991c03110852))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 01508119-ee1a-4024-88fb-00ad06577846))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 82f22ea8-f7b0-4867-9152-6e0e519d3ec5))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4d218005-b5fa-47eb-b2c4-0bddf894aabf))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ffa52672-4177-4b75-93c1-18f029c03b46))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+5V") (pintype "passive") (tstamp ad0ff99e-3100-409c-b5ab-c28d167dd721))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 35ce4456-da74-418b-85cc-3b4344424884))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Adam_Custom_Footprints:DC_Power_Jack_PJ-063BH" (layer "F.Cu")
(tstamp 2d9325ff-5b62-4dac-bd06-110564739c4a)
(at 110.7225 77.9 90)
(property "LCSC" "")
(property "Sheetfile" "ESP Breadboard Expander.kicad_sch")
(property "Sheetname" "")
(property "ki_keywords" "PJ-063BH")
(path "/89532490-ceed-43a1-aa09-40cb821a3ab5")
(fp_text reference "J10" (at -5.77 5.5775 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 5ad548c0-e6fe-481a-a7c3-38f0d6d9a198)
)
(fp_text value "PJ-063BH" (at 0 -2.54 90 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef2a4138-5229-456e-8da8-85127a55ef85)
)
(fp_text user "${REFERENCE}" (at 0 2.2 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b45a9294-3cfc-48b5-9421-493309e4ec14)
)
(fp_line (start -5 17) (end -5 15)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 4ab7b281-3202-4ba0-a088-caf14660f60c))
(fp_line (start 0 17) (end -5 17)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp fc9ac08a-4b63-42ae-95e0-0bb92ac7313d))
(fp_line (start 0 17) (end 5 17)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 3876e449-4ccc-4f1e-8877-46127fbe2786))
(fp_line (start 5 17) (end 5 15)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp e9a7749f-569c-4ebc-8fc8-2c1cca350803))
(fp_circle (center 0 14) (end -0.8 14)
(stroke (width 0.05) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 7c14c8f1-6c9e-41ae-a599-e36ef40b92bc))
(fp_rect (start -5.55 3.95) (end 5.55 17.1)
(stroke (width 0.05) (type default)) (fill none) (layer "F.CrtYd") (tstamp a52e2f0e-edbd-49bd-b1a5-8316f50c88fd))
(pad "" thru_hole rect (at -4.5 12.05 180) (size 3.3 2) (drill oval 2.3 1) (layers "*.Cu" "*.Mask") (tstamp ac3ef4c9-7771-45be-afb0-b3a1cf5e0ffc))
(pad "" thru_hole rect (at 4.5 12.05) (size 3.3 2) (drill oval 2.3 1) (layers "*.Cu" "*.Mask") (tstamp b6d4235d-c1a4-4133-a6c2-8f0642063b42))
(pad "1" thru_hole rect (at 0 5 270) (size 4 2) (drill oval 3 1) (layers "*.Cu" "*.Mask")
(net 9 "Net-(F1-Pad1)") (pinfunction "1") (pintype "unspecified") (tstamp 6d5cf7df-2834-4c37-a049-fbcb095a76db))
(pad "2" thru_hole rect (at 0 11 270) (size 3.4 2) (drill oval 2.3 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "2") (pintype "unspecified") (tstamp 3cdbb4e3-73d0-4c33-9914-61eeb637ff0f))
(model "${KICAD_ADAM_LIBRARY_DIR}/3dmodels/PJ-063BH.stp"
(offset (xyz 0 -17 5))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tstamp 45b5fc68-f22b-4e9c-824e-7c7b3348ecb6)
(at 116.9 90.6 180)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "LCSC" "C2286")
(property "Sheetfile" "ESP Breadboard Expander.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/2e57cc4a-7673-40b9-8974-f684107f39c4")
(attr smd)
(fp_text reference "D1" (at -2.5125 0) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0fa560cc-5b81-4e11-8cc4-520448c6e32c)
)
(fp_text value "Red" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 02beb169-c068-4bd8-896a-04f9e5c9a9a9)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 66a2c547-169b-4db1-ad5f-e4cffe0137f1)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d1a89003-d8d6-4c1f-a983-a218eadfd78b))
(fp_line (start -1.485 0.735) (end 0.8 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b8b17be3-0be9-4952-8e5b-c9ac2a5090d5))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34e81ab3-f8b2-4c4e-8106-ecf2919ac500))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 263818de-afc8-43f8-bdc6-64862b262d56))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 67801f92-6817-44f3-ae85-086c26fdca0b))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fd0fc479-bc9a-419a-8cf1-e5617c8e2f06))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9131b0a7-f92d-4783-8b0d-75cb0bf0385d))
(fp_line (start -0.8 -0.1) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 45b744fa-93f2-4b89-82fb-65044e55788e))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6df6caf1-6f76-47cb-ba88-9d7b7acc6379))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0db6e7ae-5fde-4dfc-b7e5-999f5ade7101))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 89446be4-f6e1-4968-a9ad-046992298a07))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cd28579c-0555-4a7f-902d-e9461183e534))
(pad "1" smd roundrect (at -0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp 4e20a6af-023d-45bd-9d7e-ce24f1256085))
(pad "2" smd roundrect (at 0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp c30f17a3-b448-4ef9-b9aa-a2ac3cdfdf9b))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tstamp 49c0d3ca-e933-4bb7-8ef0-712cb452f44e)
(at 123.5125 90.6 180)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "LCSC" "C72038")
(property "Sheetfile" "ESP Breadboard Expander.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/62398060-e86e-4f63-90a0-eaddbd2eac02")
(attr smd)
(fp_text reference "D3" (at -2.5125 0) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9a54e664-cda2-4e0c-a2c2-ed53d2017e36)
)
(fp_text value "Yellow" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ace04205-9f89-4834-8d0f-815560b0defb)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp c664a773-b6b6-4726-a930-9b23af1159a4)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 86ed2f5b-e5c3-44f1-a1fa-5b8d6b5ef0ba))
(fp_line (start -1.485 0.735) (end 0.8 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4b72bb6b-9fe7-484d-b420-7da145b2aaf5))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 821eb188-c0bc-4f50-86e7-084b316cd1ad))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ae279e6a-9fbe-48db-9df1-cb4563c81a11))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ccfe72b6-7867-42e3-8343-34984c176b36))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d24a74a-3b43-4b63-bc83-5af1179a5c9e))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 93f677cb-383f-4937-bd3e-c634d9edae35))
(fp_line (start -0.8 -0.1) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d95e6fba-b67f-4732-87f0-261797f65493))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4ca1ee8a-dd16-469e-86ac-98853d034148))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 671c98f1-ccfa-4282-8666-f01475cf557b))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b62b0c81-4358-4c5c-9ca7-5420f07397f2))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 27fe749b-0433-45a3-bf1f-6776a529770a))
(pad "1" smd roundrect (at -0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/TX") (pinfunction "K") (pintype "passive") (tstamp 623fe3cc-ebb9-4823-9758-e99f1596bd14))
(pad "2" smd roundrect (at 0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(D3-A)") (pinfunction "A") (pintype "passive") (tstamp 093e69f9-f0b3-4f7f-abcf-892a88bdb105))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x08_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 4faf6fbe-cccf-4f69-82e1-be2f78024709)
(at 114.475 45.65)
(descr "Through hole straight socket strip, 1x08, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x08 2.54mm single row")
(property "LCSC" "")
(property "Sheetfile" "ESP Breadboard Expander.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/8e82f1af-46bc-4978-b7a2-860fa782457c")
(attr through_hole)
(fp_text reference "J3" (at 2.625 -0.68 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 642cccdf-6c5b-4b2f-a8e3-2660b522063d)
)
(fp_text value "Conn_01x08_Socket" (at 0 20.55) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 93e121ff-6ddc-45ed-9fd1-3b368ee6cfd7)
)
(fp_text user "${REFERENCE}" (at 0 8.89 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 33e1fa24-d4aa-4785-9a6f-8ff3eb98b170)
)
(fp_line (start -1.33 1.27) (end -1.33 19.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 088b1a1c-b98d-4e26-9b62-cc213ff53e2e))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9e3223ec-db86-4774-8172-6d347b76914d))
(fp_line (start -1.33 19.11) (end 1.33 19.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d3d0b2ec-32df-4875-8b12-320da1856330))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a6169cd7-65ce-4eac-a579-7c3df368a40e))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e84d449d-4203-400c-aa5d-85d84dddb720))
(fp_line (start 1.33 1.27) (end 1.33 19.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e78fc964-ae45-4f32-82b3-d9796a10ae3d))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 80feef8f-d2f3-414f-9e30-fb760ac4b068))
(fp_line (start -1.8 19.55) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 38b30153-6bea-4bed-99cd-2feab8a41524))
(fp_line (start 1.75 -1.8) (end 1.75 19.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7ac11c13-47f6-4525-900c-5cbea8230529))
(fp_line (start 1.75 19.55) (end -1.8 19.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3e97e002-1ae7-41ca-9e97-5d3f2bdd38a4))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 04234fbb-fd3e-47e4-b55e-63139cba4c9a))
(fp_line (start -1.27 19.05) (end -1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 960a86c0-009b-447f-85d8-11fddc2c96b2))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bfcb69dd-4e0e-4580-b64f-c49bf0bb2e2e))
(fp_line (start 1.27 -0.635) (end 1.27 19.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bbe6666c-c5f5-43d4-9246-ed5ba56435bd))
(fp_line (start 1.27 19.05) (end -1.27 19.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c12bb43-e4fe-4680-ba74-6864d304db73))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "/TX") (pinfunction "Pin_1") (pintype "passive") (tstamp 73fb0858-2001-4c09-864a-daedb35e13d5))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "/RX") (pinfunction "Pin_2") (pintype "passive") (tstamp b3c625b9-16ef-4369-9f28-605bab95fb49))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 19 "/IO5") (pinfunction "Pin_3") (pintype "passive") (tstamp 658093dc-f2b7-41d1-9fc3-64215dbf0500))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 20 "/IO4") (pinfunction "Pin_4") (pintype "passive") (tstamp 4b6ea3cb-7005-4644-8bc0-274857dd6ecc))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "/IO0") (pinfunction "Pin_5") (pintype "passive") (tstamp 6202ab01-d8f2-4826-b609-93616a7ffa52))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "/IO2") (pinfunction "Pin_6") (pintype "passive") (tstamp 0685aab2-45f3-4343-9270-d39090705e1b))
(pad "7" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_7") (pintype "passive") (tstamp 7216268c-1435-4a37-8c13-31d8027e523f))
(pad "8" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "+5V") (pinfunction "Pin_8") (pintype "passive") (tstamp eec5e997-e294-46e0-9bdc-dcbfd9b9611a))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x08_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 59a73e92-2007-4fb2-9fd7-7c246eada3ee)
(at 79.37 91.76 180)
(descr "Through hole straight socket strip, 1x02, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x02 2.54mm single row")
(property "LCSC" "")
(property "Sheetfile" "ESP Breadboard Expander.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/7c169b37-45e5-4e8c-b5f2-a1dde0c40d9d")
(attr through_hole)
(fp_text reference "J8" (at 0 -2.77 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5040d115-98e2-4e52-9bb9-ad46346e8754)
)
(fp_text value "Conn_01x02_Socket" (at 0 5.31 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 89014f9f-666f-4480-a6b7-72ab133264ef)
)
(fp_text user "${REFERENCE}" (at 0 1.27 270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13870a41-aaa0-408e-ac84-543dafca7ef9)
)
(fp_line (start -1.33 1.27) (end -1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 89d5ac20-553e-48bb-bc0c-fe850e7180ea))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7f80be2b-c240-4f4c-8943-1eaf0c373454))
(fp_line (start -1.33 3.87) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 32283d3d-2333-469e-b004-e0f1d0adda3b))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 29756dd9-e6da-46c8-86f0-5436e430f806))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b0fb097e-ce5a-458e-92bc-afb52f2a81e7))
(fp_line (start 1.33 1.27) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 84e6b3e1-60b2-466c-b8ac-f50b96616670))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a41e7f46-15a4-4e1c-8533-160991f7a7c6))
(fp_line (start -1.8 4.3) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a9380df6-d1f9-4da7-9fc9-8cd7930c4091))
(fp_line (start 1.75 -1.8) (end 1.75 4.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7ca98ec9-c19a-4495-a469-61d93c10583c))
(fp_line (start 1.75 4.3) (end -1.8 4.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp df1b9399-367d-4505-b87a-fdff008c3736))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3d29135-4cae-4b36-85ff-c3c5e6757dbb))
(fp_line (start -1.27 3.81) (end -1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 85982c99-d313-4567-9238-e67980c376cc))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2648be82-06ed-49a9-a593-5de53e482ca0))
(fp_line (start 1.27 -0.635) (end 1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ec70950e-1f23-4785-84fc-da35c5fc62e5))
(fp_line (start 1.27 3.81) (end -1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 946a1e1b-9333-4867-b285-72d10aabdcd2))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp db144f9c-3928-418a-834f-421cca0a8e47))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 2b06e788-a12f-457d-a0a2-71bd91928826))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_2x04_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 66b54af8-a584-496c-b3fd-bc22e7a72a0c)
(at 97.425 50.77 90)
(descr "Through hole straight socket strip, 2x04, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 2x04 2.54mm double row")
(property "LCSC" "")
(property "Sheetfile" "ESP Breadboard Expander.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, double row, 02x04, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/37ab5ec3-27c8-446c-a7f4-13a7ea1c99ff")
(attr through_hole)
(fp_text reference "J1" (at 2.4 3.8 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5ddb8791-fdf7-4857-912e-beec7de5c20e)
)
(fp_text value "Conn_02x04_Odd_Even" (at -1.27 10.39 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a11ff4ec-8609-457c-86a1-2a3944ca5ab5)
)
(fp_text user "${REFERENCE}" (at -1.27 3.81 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0cd3e131-4086-4494-b1f9-6855b595bd8f)
)
(fp_line (start -3.87 -1.33) (end -3.87 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 165e5651-e81b-458e-91a1-0ae1f6340202))
(fp_line (start -3.87 -1.33) (end -1.27 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bcfb2dd4-3f2c-4de1-8054-9611e8157856))
(fp_line (start -3.87 8.95) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 13d821a8-2e11-41e2-a2d6-f57b5f7035f5))
(fp_line (start -1.27 -1.33) (end -1.27 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cfbb990f-8904-4355-9347-5276b355b20f))
(fp_line (start -1.27 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9e71a02-5aa3-4a03-beb2-86f24a23545f))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cf96d075-6bba-463c-a90f-08ecfc9b217c))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 163fdcf9-0a29-4511-868a-1f2298dc6de2))
(fp_line (start 1.33 1.27) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a47c2e97-8a30-4bef-93fe-a1a7f30d1aca))
(fp_line (start -4.34 -1.8) (end 1.76 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 612f0831-9e66-42a9-b752-59fff101a777))
(fp_line (start -4.34 9.4) (end -4.34 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 78219094-6238-48a4-affe-b0b287a8b23d))
(fp_line (start 1.76 -1.8) (end 1.76 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 892da6da-0806-45f2-8985-3a7e07f42756))
(fp_line (start 1.76 9.4) (end -4.34 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 01e27609-93cc-495b-be6d-f82c9055bd7b))
(fp_line (start -3.81 -1.27) (end 0.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e44f2b86-dae5-4c0e-b86f-d58a4b91b2fe))
(fp_line (start -3.81 8.89) (end -3.81 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e8b321e1-8509-40cc-a949-b98bfdce3e54))
(fp_line (start 0.27 -1.27) (end 1.27 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cc19961a-12d1-462c-af32-4b77970503a1))
(fp_line (start 1.27 -0.27) (end 1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5c3981fd-36a3-459f-be7c-c759ffb14b89))
(fp_line (start 1.27 8.89) (end -3.81 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 19b5b8ef-bfee-4969-8ad5-aa771c296d88))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "+3.3V") (pinfunction "Pin_1") (pintype "passive") (tstamp c2bdb387-bf8e-49ec-b458-634f50fa119c))
(pad "2" thru_hole oval (at -2.54 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "/RX") (pinfunction "Pin_2") (pintype "passive") (tstamp 5e785be1-3ba1-48c6-a735-c4c0ef90b9ee))
(pad "3" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 47 "unconnected-(J1-Pin_3-Pad3)") (pinfunction "Pin_3") (pintype "passive+no_connect") (tstamp 4a3fffb8-e93f-4d68-b328-a2670adee791))
(pad "4" thru_hole oval (at -2.54 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "/IO0") (pinfunction "Pin_4") (pintype "passive") (tstamp aa06847c-0f50-422e-a7b9-a19d05b05dda))
(pad "5" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 48 "unconnected-(J1-Pin_5-Pad5)") (pinfunction "Pin_5") (pintype "passive+no_connect") (tstamp 0d380e09-ce81-4e96-8258-d43264b6ae71))
(pad "6" thru_hole oval (at -2.54 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "/IO2") (pinfunction "Pin_6") (pintype "passive") (tstamp e6253e6a-9067-4363-afa9-f6b3e04c826f))
(pad "7" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "/TX") (pinfunction "Pin_7") (pintype "passive") (tstamp a7ead47f-41e0-4958-904f-998a629ba26f))
(pad "8" thru_hole oval (at -2.54 7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_8") (pintype "passive") (tstamp 17dc26fc-6463-4ada-a065-08d23bc8833b))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x19_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 6b41f8f4-9ae0-4e90-8d50-2d8cb5ba7362)
(at 87.935 45.65)
(descr "Through hole straight socket strip, 1x19, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x19 2.54mm single row")
(property "LCSC" "")
(property "Sheetfile" "ESP Breadboard Expander.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x19, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/706c1db8-a6a2-43ae-9103-ac50ebe6ea55")
(attr through_hole)
(fp_text reference "J4" (at -2.735 46.55 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d397c7a8-0406-4736-b282-307706bdb445)
)
(fp_text value "Conn_01x19_Socket" (at 0 48.49) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6b20c91f-96f1-49e8-851c-b8b5fc60131a)
)
(fp_text user "${REFERENCE}" (at 0 22.86 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d3fa994-1080-4186-8e33-069815aa4a54)
)
(fp_line (start -1.33 1.27) (end -1.33 47.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f3866d6b-94ed-4532-946c-009ea55a9468))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp db272600-6fff-4e80-abf3-46828c4a545e))
(fp_line (start -1.33 47.05) (end 1.33 47.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 28d0ff02-4f98-4659-8f12-76d18cce8ba0))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 019be41b-e36b-4cc5-8d4b-79644998f18b))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 323f4f46-2e92-45e1-963a-d56126a5a0c1))
(fp_line (start 1.33 1.27) (end 1.33 47.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f8f811fc-2a48-4766-8178-7c38749a5267))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 54fff582-d61b-474e-a35d-75714f3c0bb9))
(fp_line (start -1.8 47.5) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b298f0b6-dae3-426a-ae0e-3d7e3220e4cf))
(fp_line (start 1.75 -1.8) (end 1.75 47.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8d8d61ec-cbcd-4c1a-9894-807929ae1be6))
(fp_line (start 1.75 47.5) (end -1.8 47.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d3d52310-1206-4589-b942-ccfe18e09f10))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 24b95d79-b8e8-426c-afa6-35635cb0c936))
(fp_line (start -1.27 46.99) (end -1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8a9b3e93-9e4a-4edb-a3ee-d8a5adbc7a07))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8f3f1e1f-1b02-4250-8231-adc651ac401a))
(fp_line (start 1.27 -0.635) (end 1.27 46.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 62164ed6-c25b-4778-8f2b-8f981537af76))
(fp_line (start 1.27 46.99) (end -1.27 46.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 31f12da3-8112-423d-bb67-6c94c8569cf6))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 50 "unconnected-(J4-Pin_1-Pad1)") (pinfunction "Pin_1") (pintype "passive+no_connect") (tstamp a312f08c-d3c7-47fe-b6b3-fc1f8299dbc6))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 21 "unconnected-(J4-Pin_2-Pad2)") (pinfunction "Pin_2") (pintype "passive+no_connect") (tstamp e44792b5-27ed-41e4-a037-29d8ac33a105))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 22 "/IO36") (pinfunction "Pin_3") (pintype "passive") (tstamp 3d1c74f8-6565-46f5-93d0-501d206cf07f))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 23 "/IO39") (pinfunction "Pin_4") (pintype "passive") (tstamp b702bd12-7309-4193-a002-9b219d427059))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "/IO34") (pinfunction "Pin_5") (pintype "passive") (tstamp b87d7852-77ab-4391-86cc-303dba6bab2e))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 25 "/IO35") (pinfunction "Pin_6") (pintype "passive") (tstamp 05928217-0629-4bf5-9c93-194d3b224bb4))
(pad "7" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 26 "/IO32") (pinfunction "Pin_7") (pintype "passive") (tstamp 714429fa-df5e-4160-9916-b1dc48e5ff1c))
(pad "8" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 27 "/IO33") (pinfunction "Pin_8") (pintype "passive") (tstamp d5733afb-6f41-4315-ab79-26311826fbc8))
(pad "9" thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 28 "/IO25") (pinfunction "Pin_9") (pintype "passive") (tstamp c980c34b-9313-4149-8f51-7627d8293e2b))
(pad "10" thru_hole oval (at 0 22.86) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 29 "/IO26") (pinfunction "Pin_10") (pintype "passive") (tstamp da207965-1245-4ddd-8819-1eea60ef2100))
(pad "11" thru_hole oval (at 0 25.4) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 30 "/IO27") (pinfunction "Pin_11") (pintype "passive") (tstamp 2f296755-76b4-4074-a58d-f57a86d56470))
(pad "12" thru_hole oval (at 0 27.94) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "/IO14") (pinfunction "Pin_12") (pintype "passive") (tstamp ac208357-1757-4ab5-b85d-8e81692cf755))
(pad "13" thru_hole oval (at 0 30.48) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 16 "/IO12") (pinfunction "Pin_13") (pintype "passive") (tstamp 934b3fad-8805-4404-9b67-a9ab3950bde5))
(pad "14" thru_hole oval (at 0 33.02) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_14") (pintype "passive") (tstamp ac331f9a-9084-4978-b4ef-c7dbcaa1cf55))
(pad "15" thru_hole oval (at 0 35.56) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "/IO13") (pinfunction "Pin_15") (pintype "passive") (tstamp 6a7979bc-8629-4170-9ba0-efc23c44bbcc))
(pad "16" thru_hole oval (at 0 38.1) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 31 "unconnected-(J4-Pin_16-Pad16)") (pinfunction "Pin_16") (pintype "passive+no_connect") (tstamp 695201e5-6f94-47be-8125-1384b19e7a51))
(pad "17" thru_hole oval (at 0 40.64) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 32 "unconnected-(J4-Pin_17-Pad17)") (pinfunction "Pin_17") (pintype "passive+no_connect") (tstamp 92c2a6d5-9a60-4f00-9c02-575db97ae0a8))
(pad "18" thru_hole oval (at 0 43.18) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 33 "unconnected-(J4-Pin_18-Pad18)") (pinfunction "Pin_18") (pintype "passive+no_connect") (tstamp 1bd16b85-a294-4879-bd78-bd547b9cad59))
(pad "19" thru_hole oval (at 0 45.72) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "+5V") (pinfunction "Pin_19") (pintype "passive") (tstamp b390c7b5-f968-401d-9e41-da4ae659c3e5))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x19_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Adam_Custom_Footprints:Fuse_1812_4532Metric" (layer "F.Cu")
(tstamp 7091f07c-08b2-42d5-bb5e-6a044ca5ae35)
(at 119.4375 68.8)
(descr "Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator")
(tags "fuse")
(property "LCSC" "C12559")
(property "Sheetfile" "ESP Breadboard Expander.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resettable fuse, polymeric positive temperature coefficient, small symbol")
(property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch")
(path "/67b811fa-a351-451c-8673-fd73c9d844bd")
(attr smd)
(fp_text reference "F1" (at -3.6375 0.89 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7b8c67c4-31e5-4728-8f48-b1088dea04c7)
)
(fp_text value "Polyfuse 30V 1A" (at 0 2.65) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3cd5931e-8862-4766-bad0-780c528ed233)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 36587527-b30c-4235-bb0d-80084a38f625)
)
(fp_line (start -1.386252 -1.71) (end 1.386252 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a0253b82-434b-45fa-9c2f-facb93622b9d))
(fp_line (start -1.386252 1.71) (end 1.386252 1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4bcf056c-b3d5-4080-9711-dad57bcf98cb))
(fp_line (start -2.95 -1.95) (end 2.95 -1.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 16c6da36-3095-465d-acaa-6258d2e9806a))
(fp_line (start -2.95 1.95) (end -2.95 -1.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 596b8cb2-166e-4190-886c-8c8b9d4b17a6))
(fp_line (start 2.95 -1.95) (end 2.95 1.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ce852dbf-9d95-4583-987c-8d2732b93b42))
(fp_line (start 2.95 1.95) (end -2.95 1.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 72063351-225b-438d-a71c-aea857d87247))
(fp_line (start -2.25 -1.6) (end 2.25 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c294fda8-c892-4be8-873b-bd6bfab793e7))
(fp_line (start -2.25 1.6) (end -2.25 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6b7bc4fa-9515-4eb3-80c8-8bfdaa3e65c2))
(fp_line (start 2.25 -1.6) (end 2.25 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9431f262-0768-4550-a88c-f1b30f1f1d74))
(fp_line (start 2.25 1.6) (end -2.25 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 38c76861-af21-4f64-8d68-9d97e1c3644b))
(pad "1" smd roundrect (at -2.1375 0) (size 1.125 3.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222222222)
(net 9 "Net-(F1-Pad1)") (pintype "passive") (tstamp 6be168c4-987c-4740-8137-2c955fe05ead))
(pad "2" smd roundrect (at 2.1375 0) (size 1.125 3.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222222222)
(net 1 "+5V") (pintype "passive") (tstamp 4d83f0ca-e32c-4aab-a89e-42e8269d00b8))
(model "${KICAD6_3DMODEL_DIR}/Fuse.3dshapes/Fuse_1812_4532Metric.wrl" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KICAD_ADAM_LIBRARY_DIR}/3dmodels/MF-MSMF050-2.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x19_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 73dc4aa1-beb8-4479-9cd4-c459f0096f3b)
(at 110.775 45.65)
(descr "Through hole straight socket strip, 1x19, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x19 2.54mm single row")
(property "LCSC" "")
(property "Sheetfile" "ESP Breadboard Expander.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x19, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/2e4b78e6-8d9e-4992-9419-138058d0ccf5")
(attr through_hole)
(fp_text reference "J5" (at -2.675 46.55 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 47e0556f-9555-4c9d-b19c-e0dba3a4884d)
)
(fp_text value "Conn_01x19_Socket" (at 0 48.49) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp af12ac3f-c550-4673-8651-1a51acdba234)
)
(fp_text user "${REFERENCE}" (at 0 22.86 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 34d8a129-1b37-4568-a657-8353611263bf)
)
(fp_line (start -1.33 1.27) (end -1.33 47.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1aa7ced0-791a-4b80-882e-cd3948badfce))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5de745af-5c77-45a5-b825-c6b96c466fef))
(fp_line (start -1.33 47.05) (end 1.33 47.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a64aaaf3-332e-4586-a73b-367d3ea6e1c9))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4931c523-35f3-4390-8a14-643c70ca1ff4))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 77c2a641-d7e2-4fd4-814a-dab99e640c40))
(fp_line (start 1.33 1.27) (end 1.33 47.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b37cc51a-e299-43f5-990d-34c9386c2623))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1e477f55-1f35-4e70-8625-eb0a422e5719))
(fp_line (start -1.8 47.5) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 198533b9-dd2c-4c5e-85e1-e990625fb806))
(fp_line (start 1.75 -1.8) (end 1.75 47.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 85d89267-1a65-4650-8b55-882c0d69c3bf))
(fp_line (start 1.75 47.5) (end -1.8 47.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6fefe0a7-e221-40fd-a885-b731a2522240))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8bbc6fe6-9f6a-438e-b4d2-e9256e422a10))
(fp_line (start -1.27 46.99) (end -1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e391617a-ff9a-4b0e-9464-42637363116f))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5c68f0f2-6292-4665-8459-b187d3251589))
(fp_line (start 1.27 -0.635) (end 1.27 46.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c5003451-dec9-450f-9148-a6a95e7c6720))
(fp_line (start 1.27 46.99) (end -1.27 46.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8369283d-6db0-4c17-8e58-c6542b729220))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 8c2c7993-c4d2-452d-80c0-195d4c62165e))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 34 "/IO23") (pinfunction "Pin_2") (pintype "passive") (tstamp 1c7904b0-bb4d-48d5-b6da-1a2a37a8896d))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 35 "/IO22") (pinfunction "Pin_3") (pintype "passive") (tstamp 8a653862-54ab-4afb-8ab8-d4111314d7bb))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "/TX") (pinfunction "Pin_4") (pintype "passive") (tstamp 359fc395-6024-4d37-b9f0-db4cd8327ec3))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "/RX") (pinfunction "Pin_5") (pintype "passive") (tstamp aa6b3dbe-545d-476c-9bd6-59cb6b5f59f1))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 36 "/IO21") (pinfunction "Pin_6") (pintype "passive") (tstamp 766c0784-1f2a-465e-bae8-985b5461b999))
(pad "7" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_7") (pintype "passive") (tstamp a07264fa-778f-4c48-bde6-63378a8aefab))
(pad "8" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 37 "/IO19") (pinfunction "Pin_8") (pintype "passive") (tstamp 03eae0da-32c4-48aa-9e70-8527a2bad863))
(pad "9" thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 38 "/IO18") (pinfunction "Pin_9") (pintype "passive") (tstamp bfba1257-e5e9-443f-884b-f5944b082421))
(pad "10" thru_hole oval (at 0 22.86) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 19 "/IO5") (pinfunction "Pin_10") (pintype "passive") (tstamp 4fe9e515-0f6a-4eea-a368-5d13805ed449))
(pad "11" thru_hole oval (at 0 25.4) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 39 "/IO17") (pinfunction "Pin_11") (pintype "passive") (tstamp 3788dac9-0baf-45eb-be1b-73bbb0e280a1))
(pad "12" thru_hole oval (at 0 27.94) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "/IO16") (pinfunction "Pin_12") (pintype "passive") (tstamp 53a61523-2115-451a-ab62-f6f182a196a5))
(pad "13" thru_hole oval (at 0 30.48) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 20 "/IO4") (pinfunction "Pin_13") (pintype "passive") (tstamp 6b1eecb9-a997-4990-8446-6576e7710b12))
(pad "14" thru_hole oval (at 0 33.02) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "/IO0") (pinfunction "Pin_14") (pintype "passive") (tstamp 83780788-dedb-457b-9e35-e85a0d89001a))
(pad "15" thru_hole oval (at 0 35.56) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "/IO2") (pinfunction "Pin_15") (pintype "passive") (tstamp 0d586eb4-4a8e-4153-9733-7212e8344a62))
(pad "16" thru_hole oval (at 0 38.1) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 18 "/IO15") (pinfunction "Pin_16") (pintype "passive") (tstamp 1cd362ff-9e4a-474a-825b-b82184a61a3f))
(pad "17" thru_hole oval (at 0 40.64) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 40 "unconnected-(J5-Pin_17-Pad17)") (pinfunction "Pin_17") (pintype "passive+no_connect") (tstamp b73af9a1-23e2-406a-a2fc-9b455b58e00c))
(pad "18" thru_hole oval (at 0 43.18) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 41 "unconnected-(J5-Pin_18-Pad18)") (pinfunction "Pin_18") (pintype "passive+no_connect") (tstamp 2191c9de-7688-428f-9f16-8ce16364b5f0))
(pad "19" thru_hole oval (at 0 45.72) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 42 "unconnected-(J5-Pin_19-Pad19)") (pinfunction "Pin_19") (pintype "passive+no_connect") (tstamp fb0f9fd8-98a3-460f-8e9a-41613c064227))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x19_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_Array_Convex_4x0603" (layer "F.Cu")
(tstamp 7e295406-7380-49e9-8a78-f29185e0061a)
(at 120.2 86 90)
(descr "Chip Resistor Network, ROHM MNR14 (see mnr_g.pdf)")
(tags "resistor array")