-
Notifications
You must be signed in to change notification settings - Fork 1
/
USB-UART-BRIDGE.kicad_pcb
7831 lines (7802 loc) · 308 KB
/
USB-UART-BRIDGE.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 0x00010fc_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 false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "VBUS")
(net 3 "Net-(C4-Pad2)")
(net 4 "Net-(C5-Pad1)")
(net 5 "V3")
(net 6 "Net-(D1-Pad1)")
(net 7 "Net-(J1-PadB5)")
(net 8 "unconnected-(J1-PadA8)")
(net 9 "D+")
(net 10 "D-")
(net 11 "Net-(J1-PadA5)")
(net 12 "unconnected-(J1-PadB8)")
(net 13 "EN")
(net 14 "TXD")
(net 15 "RXD")
(net 16 "IO0")
(net 17 "unconnected-(J2-Pad1)")
(net 18 "unconnected-(J3-Pad1)")
(net 19 "Net-(Q1-Pad1)")
(net 20 "unconnected-(U1-Pad3)")
(net 21 "Net-(Q1-Pad2)")
(net 22 "Net-(Q2-Pad1)")
(net 23 "unconnected-(U1-Pad4)")
(net 24 "unconnected-(U2-Pad9)")
(net 25 "unconnected-(U2-Pad10)")
(net 26 "unconnected-(U2-Pad11)")
(net 27 "unconnected-(U2-Pad12)")
(net 28 "unconnected-(U2-Pad15)")
(net 29 "Net-(Q2-Pad2)")
(footprint "otter:C_0402" (layer "F.Cu")
(tedit 5E580EF6) (tstamp 00000000-0000-0000-0000-00005e6d848e)
(at 110.9 96.9 90)
(descr "Capacitor 0402")
(tags "C Capacitor 0402")
(property "Sheetfile" "ESP-TC-PROG.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e7ace44")
(attr smd)
(fp_text reference "C2" (at 0 -0.8 90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 4632212f-13ce-4392-bc68-ccb9ba333770)
)
(fp_text value "100n" (at 0 -1.325 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb16d05e-318b-4e51-867b-70d791d75bea)
)
(fp_line (start 0 0.15) (end 0 -0.15) (layer "F.SilkS") (width 0.12) (tstamp 057af6bb-cf6f-4bfb-b0c0-2e92a2c09a47))
(pad "1" smd rect locked (at -0.47 0 90) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VBUS") (pintype "passive") (tstamp 0325ec43-0390-4ae2-b055-b1ec6ce17b1c))
(pad "2" smd rect locked (at 0.47 0 90) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp 935f462d-8b1e-4005-9f1e-17f537ab1756))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:C_0402" (layer "F.Cu")
(tedit 5E580EF6) (tstamp 00000000-0000-0000-0000-00005e6d84a3)
(at 108.46 104.23 -90)
(descr "Capacitor 0402")
(tags "C Capacitor 0402")
(property "Sheetfile" "ESP-TC-PROG.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e7c58f5")
(attr smd)
(fp_text reference "C5" (at 1.47 -3.74 180) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp a6b7df29-bcf8-46a9-b623-7eaac47f5110)
)
(fp_text value "22p" (at 0 -1.325 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a9b3f6e4-7a6d-4ae8-ad28-3d8458e0ca1a)
)
(fp_line (start 0 0.15) (end 0 -0.15) (layer "F.SilkS") (width 0.12) (tstamp 7a4ce4b3-518a-4819-b8b2-5127b3347c64))
(pad "1" smd rect locked (at -0.47 0 270) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(C5-Pad1)") (pintype "passive") (tstamp 7e0a03ae-d054-4f76-a131-5c09b8dc1636))
(pad "2" smd rect locked (at 0.47 0 270) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp 20c315f4-1e4f-49aa-8d61-778a7389df7e))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:C_0402" (layer "F.Cu")
(tedit 5E580EF6) (tstamp 00000000-0000-0000-0000-00005e6d84aa)
(at 112.6 96.9 90)
(descr "Capacitor 0402")
(tags "C Capacitor 0402")
(property "Sheetfile" "ESP-TC-PROG.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e7bf13a")
(attr smd)
(fp_text reference "C6" (at 0 -0.8 90) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 35a9f71f-ba35-47f6-814e-4106ac36c51e)
)
(fp_text value "100n" (at 0 -1.325 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c094494a-f6f7-43fc-a007-4951484ddf3a)
)
(fp_line (start 0 0.15) (end 0 -0.15) (layer "F.SilkS") (width 0.12) (tstamp 9b3c58a7-a9b9-4498-abc0-f9f43e4f0292))
(pad "1" smd rect locked (at -0.47 0 90) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "V3") (pintype "passive") (tstamp 15fe8f3d-6077-4e0e-81d0-8ec3f4538981))
(pad "2" smd rect locked (at 0.47 0 90) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp e40e8cef-4fb0-4fc3-be09-3875b2cc8469))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e6d84bd)
(at 111.3 94.9 8.5)
(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 "diode")
(property "Sheetfile" "ESP-TC-PROG.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e85bde8")
(attr smd)
(fp_text reference "D1" (at 1.464178 1.027708 1) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp a13ab237-8f8d-4e16-8c47-4440653b8534)
)
(fp_text value "PWR" (at 0 1.43 8.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 099096e4-8c2a-4d84-a16f-06b4b6330e7a)
)
(fp_text user "${REFERENCE}" (at 0 0 8.5) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 87d7448e-e139-4209-ae0b-372f805267da)
)
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 3a52f112-cb97-43db-aaeb-20afe27664d7))
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 41acfe41-fac7-432a-a7a3-946566e2d504))
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 644ae9fc-3c8e-4089-866e-a12bf371c3e9))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 34a74736-156e-4bf3-9200-cd137cfa59da))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ee41cb8e-512d-41d2-81e1-3c50fff32aeb))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 65134029-dbd2-409a-85a8-13c2a33ff019))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 7f2301df-e4bc-479e-a681-cc59c9a2dbbb))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 8087f566-a94d-4bbc-985b-e49ee7762296))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 98c78427-acd5-4f90-9ad6-9f61c4809aec))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp f4eb0267-179f-46c9-b516-9bfb06bac1ba))
(pad "1" smd roundrect locked (at -0.7875 0 8.5) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(D1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 7f52d787-caa3-4a92-b1b2-19d554dc29a4))
(pad "2" smd roundrect locked (at 0.7875 0 8.5) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VBUS") (pinfunction "A") (pintype "passive") (tstamp a8447faf-e0a0-4c4a-ae53-4d4b28669151))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:USB-C 16Pin" (layer "F.Cu")
(tedit 63103A7A) (tstamp 00000000-0000-0000-0000-00005e6d84de)
(at 107 100 -90)
(property "Sheetfile" "ESP-TC-PROG.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e790c67")
(attr through_hole)
(fp_text reference "J1" (at 0 1.5 90) (layer "F.SilkS") hide
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 2a7d0547-396b-4e9b-863b-84ed8ad3b98a)
)
(fp_text value "USB" (at 0 8.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c276a66-03e7-4a19-a44f-91f5718e7937)
)
(fp_line (start 4 -0.5) (end 4.5 -0.5) (layer "F.SilkS") (width 0.15) (tstamp 1edb0f9c-cfbd-4b8a-9d25-20425905b4e8))
(fp_line (start -4.5 -0.5) (end -4 -0.5) (layer "F.SilkS") (width 0.15) (tstamp 58cc7be8-3e05-4fa8-9617-5c2c9a7cb63a))
(fp_line (start -4.5 2.54) (end -4.5 4) (layer "F.SilkS") (width 0.15) (tstamp 93d5bf66-febf-405b-86e4-0071c2707603))
(fp_line (start 4.5 4) (end 4.5 2.54) (layer "F.SilkS") (width 0.15) (tstamp e4a9659f-1822-401c-b497-9d589623b41d))
(fp_line (start -4.5 7.695) (end -4.5 6) (layer "Eco1.User") (width 0.15) (tstamp 5c9aa413-b666-48d1-891f-dbf31f3906c2))
(fp_line (start 4.5 6) (end 4.5 7.695) (layer "Eco1.User") (width 0.15) (tstamp 76b96339-3466-40c2-b454-0a4507df3d45))
(fp_line (start 4.5 7.695) (end -4.5 7.695) (layer "Eco1.User") (width 0.15) (tstamp aea0124e-eff1-4bf0-9962-aa233c46d81a))
(pad "" np_thru_hole circle (at 2.89 1.445 270) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp 12cb7b29-a1b4-4fbd-9412-df1edfece48b))
(pad "" np_thru_hole circle (at -2.89 1.445 270) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp 16036ce3-76b7-4225-a095-250668692379))
(pad "A1" smd rect (at -3.2 0 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 83ca708d-765e-4a1c-aa6f-8e1c09a73e2b))
(pad "A4" smd rect (at -2.4 0 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VBUS") (pinfunction "VBUS") (pintype "power_in") (tstamp 7dd999ff-d6e5-4d41-8c52-a5d9db2b0873))
(pad "A5" smd rect (at -1.25 0 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "Net-(J1-PadA5)") (pinfunction "CC1") (pintype "bidirectional") (tstamp 04af210d-bd44-478f-953a-b0ebe4da1fbf))
(pad "A6" smd rect (at -0.25 0 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "D+") (pinfunction "D+") (pintype "bidirectional") (tstamp de4886f7-26bc-4859-8d97-31f6d01a0cce))
(pad "A7" smd rect (at 0.25 0 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "D-") (pinfunction "D-") (pintype "bidirectional") (tstamp 37f452c8-0c71-434b-a10b-715ac0cbf105))
(pad "A8" smd rect (at 1.25 0 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "unconnected-(J1-PadA8)") (pinfunction "SBU1") (pintype "bidirectional+no_connect") (tstamp bc7cff44-657f-486c-8d5b-8aae73539247))
(pad "A9" smd rect (at -2.4 0 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 287a21f6-9b32-44f2-abc4-50080bd40bcc))
(pad "A12" smd rect (at -3.2 0 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 174ef894-f850-4d87-b9b5-5570cf1b2934))
(pad "B1" smd rect (at 3.2 0 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp f86a42d2-773d-4551-b871-f615f0cae58c))
(pad "B4" smd rect (at 2.4 0 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp a9a60d60-4d6d-4c87-bb56-c488271dcff5))
(pad "B5" smd rect (at 1.75 0 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(J1-PadB5)") (pinfunction "CC2") (pintype "bidirectional") (tstamp 489a3036-9fd5-47fc-be8b-57babb17c701))
(pad "B6" smd rect (at 0.75 0 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "D+") (pinfunction "D+") (pintype "bidirectional") (tstamp 2760700e-45ea-4e2c-bd9a-c7c8efb99273))
(pad "B7" smd rect (at -0.75 0 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "D-") (pinfunction "D-") (pintype "bidirectional") (tstamp 256c33ce-7f03-4997-bca9-51b17fbb00ec))
(pad "B8" smd rect (at -1.75 0 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "unconnected-(J1-PadB8)") (pinfunction "SBU2") (pintype "bidirectional+no_connect") (tstamp 89f72272-6755-45dc-8b94-c2415e29a434))
(pad "B9" smd rect (at 2.4 0 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 2a855294-ea21-4b09-b9d2-72b6efc4352c))
(pad "B12" smd rect (at 3.2 0 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 71e67cca-abc0-4434-897d-ce60c6586183))
(pad "S1" thru_hole oval (at 4.32 0.915 270) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 43226f66-a442-4737-ad4f-5492fd291113))
(pad "S1" thru_hole oval (at 4.32 5.095 270) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp b1a18afe-4486-4c34-bd0f-d4cdef7fa2e1))
(pad "S1" thru_hole oval (at -4.32 5.095 270) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp cd6f78d0-0fba-41dd-8d23-d5065f37840d))
(pad "S1" thru_hole oval (at -4.32 0.915 270) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp eaef0126-d378-4479-8005-1e912b01807f))
(model "/home/jana/kicad/stepfiles/HRO_TYPE-C-31-M-12(1).step"
(offset (xyz -4.5 -7.6 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:IDC-Header_2x03_P2.54mm_Vertical_center" (layer "F.Cu")
(tedit 5E6D3623) (tstamp 00000000-0000-0000-0000-00005e6d8502)
(at 129.3 100 180)
(descr "Through hole straight IDC box header, 2x03, 2.54mm pitch, double rows")
(tags "Through hole IDC box header THT 2x03 2.54mm double row")
(property "Sheetfile" "ESP-TC-PROG.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e82bb67")
(attr through_hole)
(fp_text reference "J2" (at -0.03 -9.144 180) (layer "F.SilkS") hide
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp c801d42e-dd94-493e-bd2f-6c3ddad43f55)
)
(fp_text value "TC" (at -0.03 9.144 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3172f2e2-18d2-4a80-ae30-5707b3409798)
)
(fp_text user "${REFERENCE}" (at -0.03 0 180) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp c70d9ef3-bfeb-47e0-a1e1-9aeba3da7864)
)
(fp_line (start -4.7 -2.25) (end -3.9 -2.25) (layer "F.SilkS") (width 0.12) (tstamp 4e3d7c0d-12e3-42f2-b944-e4bcdbbcac2a))
(fp_line (start -3.9 2.25) (end -4.7 2.25) (layer "F.SilkS") (width 0.12) (tstamp 6a44418c-7bb4-4e99-8836-57f153c19721))
(fp_line (start -4.705 -7.89) (end 4.645 -7.89) (layer "F.SilkS") (width 0.12) (tstamp 712d6a7d-2b62-464f-b745-fd2a6b0187f6))
(fp_line (start 4.645 -7.89) (end 4.645 7.89) (layer "F.SilkS") (width 0.12) (tstamp 842e430f-0c35-45f3-a0b5-95ae7b7ae388))
(fp_line (start 4.645 7.89) (end -4.705 7.89) (layer "F.SilkS") (width 0.12) (tstamp 98e81e80-1f85-4152-be3f-99785ea97751))
(fp_line (start -3.9 -2.25) (end -3.9 2.25) (layer "F.SilkS") (width 0.12) (tstamp aa02e544-13f5-4cf8-a5f4-3e6cda006090))
(fp_line (start -4.705 7.89) (end -4.705 -7.89) (layer "F.SilkS") (width 0.12) (tstamp b3d08afa-f296-4e3b-8825-73b6331d35bf))
(fp_line (start -4.71 7.89) (end -4.71 -7.89) (layer "F.CrtYd") (width 0.05) (tstamp 03d88a85-11fd-47aa-954c-c318bb15294a))
(fp_line (start 4.65 -7.89) (end 4.65 7.89) (layer "F.CrtYd") (width 0.05) (tstamp 0dcdf1b8-13c6-48b4-bd94-5d26038ff231))
(fp_line (start 4.65 7.89) (end -4.71 7.89) (layer "F.CrtYd") (width 0.05) (tstamp 1a2f72d1-0b36-4610-afc4-4ad1660d5d3b))
(fp_line (start -4.71 -7.89) (end 4.65 -7.89) (layer "F.CrtYd") (width 0.05) (tstamp 51c4dc0a-5b9f-4edf-a83f-4a12881e42ef))
(fp_line (start 4.395 -7.64) (end -4.455 -7.64) (layer "F.Fab") (width 0.1) (tstamp 120a7b0f-ddfd-4447-85c1-35665465acdb))
(fp_line (start 3.845 7.08) (end -3.905 7.08) (layer "F.Fab") (width 0.1) (tstamp 13475e15-f37c-4de8-857e-1722b0c39513))
(fp_line (start 4.395 7.64) (end -4.455 7.64) (layer "F.Fab") (width 0.1) (tstamp 2732632c-4768-42b6-bf7f-14643424019e))
(fp_line (start -3.905 -2.25) (end -4.455 -2.25) (layer "F.Fab") (width 0.1) (tstamp 48f827a8-6e22-4a2e-abdc-c2a03098d883))
(fp_line (start -4.455 -7.64) (end -3.905 -7.1) (layer "F.Fab") (width 0.1) (tstamp 58dc14f9-c158-4824-a84e-24a6a482a7a4))
(fp_line (start 4.395 -7.64) (end 4.395 7.64) (layer "F.Fab") (width 0.1) (tstamp 5b2b5c7d-f943-4634-9f0a-e9561705c49d))
(fp_line (start 3.845 -7.1) (end -3.905 -7.1) (layer "F.Fab") (width 0.1) (tstamp 854dd5d4-5fd2-4730-bd49-a9cd8299a065))
(fp_line (start -3.905 2.25) (end -4.455 2.25) (layer "F.Fab") (width 0.1) (tstamp 8d55e186-3e11-40e8-a65e-b36a8a00069e))
(fp_line (start -4.455 -7.64) (end -4.455 7.64) (layer "F.Fab") (width 0.1) (tstamp 9c8ccb2a-b1e9-4f2c-94fe-301b5975277e))
(fp_line (start 3.845 -7.1) (end 3.845 7.08) (layer "F.Fab") (width 0.1) (tstamp a03e565f-d8cd-4032-aae3-b7327d4143dd))
(fp_line (start 4.395 -7.64) (end 3.845 -7.1) (layer "F.Fab") (width 0.1) (tstamp b635b16e-60bb-4b3e-9fc3-47d34eef8381))
(fp_line (start -3.905 -7.1) (end -3.905 -2.25) (layer "F.Fab") (width 0.1) (tstamp cef6f603-8a0b-4dd0-af99-ebfbef7d1b4b))
(fp_line (start -4.455 7.64) (end -3.905 7.08) (layer "F.Fab") (width 0.1) (tstamp dde3dba8-1b81-466c-93a3-c284ff4da1ef))
(fp_line (start -3.905 2.25) (end -3.905 7.08) (layer "F.Fab") (width 0.1) (tstamp e877bf4a-4210-4bd3-b7b0-806eb4affc5b))
(fp_line (start 4.395 7.64) (end 3.845 7.08) (layer "F.Fab") (width 0.1) (tstamp f976e2cc-36f9-4479-a816-2c74d1d5da6f))
(pad "1" thru_hole rect locked (at -1.3 -2.54 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 17 "unconnected-(J2-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 81bbc3ff-3938-49ac-8297-ce2bcc9a42bd))
(pad "2" thru_hole oval locked (at 1.24 -2.54 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 16 "IO0") (pinfunction "Pin_2") (pintype "passive") (tstamp b1169a2d-8998-4b50-a48d-c520bcc1b8e1))
(pad "3" thru_hole oval locked (at -1.3 0 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 15 "RXD") (pinfunction "Pin_3") (pintype "passive") (tstamp 0d0bb7b2-a6e5-46d2-9492-a1aa6e5a7b2f))
(pad "4" thru_hole oval locked (at 1.24 0 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 14 "TXD") (pinfunction "Pin_4") (pintype "passive") (tstamp d22e95aa-f3db-4fbc-a331-048a2523233e))
(pad "5" thru_hole oval locked (at -1.3 2.54 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp d1262c4d-2245-4c4f-8f35-7bb32cd9e21e))
(pad "6" thru_hole oval locked (at 1.24 2.54 180) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 13 "EN") (pinfunction "Pin_6") (pintype "passive") (tstamp 0147f16a-c952-4891-8f53-a9fb8cddeb8d))
(model "${KISYS3DMOD}/Connector_IDC.3dshapes/IDC-Header_2x03_P2.54mm_Vertical.wrl"
(offset (xyz -1.25 2.5 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-00005e6d8546)
(at 122.5 98.425 90)
(descr "SOT-23, Standard")
(tags "SOT-23")
(property "Sheetfile" "ESP-TC-PROG.kicad_sch")
(property "Sheetname" "")
(path "/7513e428-73d4-4ba4-8feb-8d1e352ab5d3")
(attr smd)
(fp_text reference "Q2" (at 1.25 1.15 180) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp ffd175d1-912a-4224-be1e-a8198680f46b)
)
(fp_text value "S8050-J3Y" (at 0 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8412992d-8754-44de-9e08-115cec1a3eff)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 4a21e717-d46d-4d9e-8b98-af4ecb02d3ec)
)
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp 6d26d68f-1ca7-4ff3-b058-272f1c399047))
(fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp c332fa55-4168-4f55-88a5-f82c7c21040b))
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a))
(fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp df32840e-2912-4088-b54c-9a85f64c0265))
(fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 68877d35-b796-44db-9124-b8e744e7412e))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 911bdcbe-493f-4e21-a506-7cbc636e2c17))
(fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 9f8381e9-3077-4453-a480-a01ad9c1a940))
(fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp b96fe6ac-3535-4455-ab88-ed77f5e46d6e))
(fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer "F.Fab") (width 0.1) (tstamp 0755aee5-bc01-4cb5-b830-583289df50a3))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp 4fb21471-41be-4be8-9687-66030f97befc))
(fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 70e15522-1572-4451-9c0d-6d36ac70d8c6))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer "F.Fab") (width 0.1) (tstamp 7599133e-c681-4202-85d9-c20dac196c64))
(fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp dde51ae5-b215-445e-92bb-4a12ec410531))
(pad "1" smd rect locked (at -1 -0.95 90) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "Net-(Q2-Pad1)") (pinfunction "B") (pintype "input") (tstamp c5eb1e4c-ce83-470e-8f32-e20ff1f886a3))
(pad "2" smd rect locked (at -1 0.95 90) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "Net-(Q2-Pad2)") (pinfunction "E") (pintype "passive") (tstamp 60dcd1fe-7079-4cb8-b509-04558ccf5097))
(pad "3" smd rect locked (at 1 0 90) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "IO0") (pinfunction "C") (pintype "passive") (tstamp ec31c074-17b2-48e1-ab01-071acad3fa04))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:R_0402" (layer "F.Cu")
(tedit 5E580E9C) (tstamp 00000000-0000-0000-0000-00005e6d8570)
(at 108.85 95.3 -171.5)
(descr "Resistor 0402")
(tags "R Resistor 0805")
(property "Sheetfile" "ESP-TC-PROG.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e867fbf")
(attr smd)
(fp_text reference "R3" (at 0.083578 -0.897505 181) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 12422a89-3d0c-485c-9386-f77121fd68fd)
)
(fp_text value "5k1" (at 0 -1.325 8.5) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8e06ba1f-e3ba-4eb9-a10e-887dffd566d6)
)
(fp_line (start 0 0.15) (end 0 -0.15) (layer "F.SilkS") (width 0.12) (tstamp 40165eda-4ba6-4565-9bb4-b9df6dbb08da))
(pad "1" smd rect locked (at -0.47 0 188.5) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(D1-Pad1)") (pintype "passive") (tstamp 4780a290-d25c-4459-9579-eba3f7678762))
(pad "2" smd rect locked (at 0.47 0 188.5) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp 7e023245-2c2b-4e2b-bfb9-5d35176e88f2))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:R_0402" (layer "F.Cu")
(tedit 5E580E9C) (tstamp 00000000-0000-0000-0000-00005e6d8577)
(at 123.575 100.625)
(descr "Resistor 0402")
(tags "R Resistor 0805")
(property "Sheetfile" "ESP-TC-PROG.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e79fa63")
(attr smd)
(fp_text reference "R4" (at 1.625 -0.275) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 3a7648d8-121a-4921-9b92-9b35b76ce39b)
)
(fp_text value "5k1" (at 0 -1.325) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 24f7628d-681d-4f0e-8409-40a129e929d9)
)
(fp_line (start 0 0.15) (end 0 -0.15) (layer "F.SilkS") (width 0.12) (tstamp 3e903008-0276-4a73-8edb-5d9dfde6297c))
(pad "1" smd rect locked (at -0.47 0) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "Net-(Q1-Pad1)") (pintype "passive") (tstamp 6475547d-3216-45a4-a15c-48314f1dd0f9))
(pad "2" smd rect locked (at 0.47 0) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "Net-(Q2-Pad2)") (pintype "passive") (tstamp 75ffc65c-7132-4411-9f2a-ae0c73d79338))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:R_0402" (layer "F.Cu")
(tedit 5E580E9C) (tstamp 00000000-0000-0000-0000-00005e6d857e)
(at 121.675 100.625 180)
(descr "Resistor 0402")
(tags "R Resistor 0805")
(property "Sheetfile" "ESP-TC-PROG.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e79fe39")
(attr smd)
(fp_text reference "R5" (at -3.525 -0.375) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 63ff1c93-3f96-4c33-b498-5dd8c33bccc0)
)
(fp_text value "5k1" (at 0 -1.325) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b88717bd-086f-46cd-9d3f-0396009d0996)
)
(fp_line (start 0 0.15) (end 0 -0.15) (layer "F.SilkS") (width 0.12) (tstamp 61fe293f-6808-4b7f-9340-9aaac7054a97))
(pad "1" smd rect locked (at -0.47 0 180) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "Net-(Q2-Pad1)") (pintype "passive") (tstamp 8da933a9-35f8-42e6-8504-d1bab7264306))
(pad "2" smd rect locked (at 0.47 0 180) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "Net-(Q1-Pad2)") (pintype "passive") (tstamp 2f215f15-3d52-4c91-93e6-3ea03a95622f))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:R_0402" (layer "F.Cu")
(tedit 5E580E9C) (tstamp 00000000-0000-0000-0000-00005e6d8585)
(at 122.6 105.1)
(descr "Resistor 0402")
(tags "R Resistor 0805")
(property "Sheetfile" "ESP-TC-PROG.kicad_sch")
(property "Sheetname" "")
(path "/d7c04334-87c3-4b4f-8bcc-835e908e4c2d")
(attr smd)
(fp_text reference "R6" (at 1.4 0) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 08a7c925-7fae-4530-b0c9-120e185cb318)
)
(fp_text value "5k1" (at 0 -1.325) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4a4ec8d9-3d72-4952-83d4-808f65849a2b)
)
(fp_line (start 0 0.15) (end 0 -0.15) (layer "F.SilkS") (width 0.12) (tstamp cbd8faed-e1f8-4406-87c8-58b2c504a5d4))
(pad "1" smd rect locked (at -0.47 0) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "V3") (pintype "passive") (tstamp 240e07e1-770b-4b27-894f-29fd601c924d))
(pad "2" smd rect locked (at 0.47 0) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "EN") (pintype "passive") (tstamp f2c93195-af12-4d3e-acdf-bdd0ff675c24))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23-6" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-00005e6d859b)
(at 110.9 99.8 90)
(descr "6-pin SOT-23 package")
(tags "SOT-23-6")
(property "Sheetfile" "ESP-TC-PROG.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e7cb1f0")
(attr smd)
(fp_text reference "U1" (at 0 -2.3 180) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 666713b0-70f4-42df-8761-f65bc212d03b)
)
(fp_text value "USBLC6-4" (at 0 2.9 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 80094b70-85ab-4ff6-934b-60d5ee65023a)
)
(fp_line (start -0.9 1.61) (end 0.9 1.61) (layer "F.SilkS") (width 0.12) (tstamp 0f54db53-a272-4955-88fb-d7ab00657bb0))
(fp_line (start 0.9 -1.61) (end -1.55 -1.61) (layer "F.SilkS") (width 0.12) (tstamp 922058ca-d09a-45fd-8394-05f3e2c1e03a))
(fp_line (start -1.9 -1.8) (end -1.9 1.8) (layer "F.CrtYd") (width 0.05) (tstamp 1bf544e3-5940-4576-9291-2464e95c0ee2))
(fp_line (start -1.9 1.8) (end 1.9 1.8) (layer "F.CrtYd") (width 0.05) (tstamp 3aaee4c4-dbf7-49a5-a620-9465d8cc3ae7))
(fp_line (start 1.9 -1.8) (end -1.9 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 97fe9c60-586f-4895-8504-4d3729f5f81a))
(fp_line (start 1.9 1.8) (end 1.9 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp bdc7face-9f7c-4701-80bb-4cc144448db1))
(fp_line (start -0.9 -0.9) (end -0.9 1.55) (layer "F.Fab") (width 0.1) (tstamp 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2))
(fp_line (start 0.9 -1.55) (end -0.25 -1.55) (layer "F.Fab") (width 0.1) (tstamp 42713045-fffd-4b2d-ae1e-7232d705fb12))
(fp_line (start 0.9 1.55) (end -0.9 1.55) (layer "F.Fab") (width 0.1) (tstamp 7aed3a71-054b-4aaa-9c0a-030523c32827))
(fp_line (start 0.9 -1.55) (end 0.9 1.55) (layer "F.Fab") (width 0.1) (tstamp 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280))
(fp_line (start -0.9 -0.9) (end -0.25 -1.55) (layer "F.Fab") (width 0.1) (tstamp c0515cd2-cdaa-467e-8354-0f6eadfa35c9))
(pad "1" smd rect locked (at -1.1 -0.95 90) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "D-") (pinfunction "IO1") (pintype "input") (tstamp 852dabbf-de45-4470-8176-59d37a754407))
(pad "2" smd rect locked (at -1.1 0 90) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp b5352a33-563a-4ffe-a231-2e68fb54afa3))
(pad "3" smd rect locked (at -1.1 0.95 90) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "unconnected-(U1-Pad3)") (pinfunction "IO2") (pintype "input") (tstamp 31e08896-1992-4725-96d9-9d2728bca7a3))
(pad "4" smd rect locked (at 1.1 0.95 90) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "unconnected-(U1-Pad4)") (pinfunction "IO3") (pintype "input") (tstamp 6441b183-b8f2-458f-a23d-60e2b1f66dd6))
(pad "5" smd rect locked (at 1.1 0 90) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VBUS") (pinfunction "VBUS") (pintype "input") (tstamp d4a1d3c4-b315-4bec-9220-d12a9eab51e0))
(pad "6" smd rect locked (at 1.1 -0.95 90) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "D+") (pinfunction "IO4") (pintype "input") (tstamp bfc0aadc-38cf-466e-a642-68fdc3138c78))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23-6.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:SOIC-16_3.9x9.9mm_P1.27mm" (layer "F.Cu")
(tedit 5E581410) (tstamp 00000000-0000-0000-0000-00005e6d85bd)
(at 117 100)
(descr "SOIC, 16 Pin (JEDEC MS-012AC, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOIC SO")
(property "Sheetfile" "ESP-TC-PROG.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e795164")
(attr smd)
(fp_text reference "U2" (at 4.2 -4.6) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 54365317-1355-4216-bb75-829375abc4ec)
)
(fp_text value "CH340G/C" (at 0 5.9) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a3e4f0ae-9f86-49e9-b386-ed8b42e012fb)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp a690fc6c-55d9-47e6-b533-faa4b67e20f3)
)
(fp_line (start 0 5.06) (end 1.95 5.06) (layer "F.SilkS") (width 0.12) (tstamp 704d6d51-bb34-4cbf-83d8-841e208048d8))
(fp_line (start 0 5.06) (end -1.95 5.06) (layer "F.SilkS") (width 0.12) (tstamp 8174b4de-74b1-48db-ab8e-c8432251095b))
(fp_line (start 0 -5.06) (end -3.45 -5.06) (layer "F.SilkS") (width 0.12) (tstamp f71da641-16e6-4257-80c3-0b9d804fee4f))
(fp_line (start 0 -5.06) (end 1.95 -5.06) (layer "F.SilkS") (width 0.12) (tstamp fd470e95-4861-44fe-b1e4-6d8a7c66e144))
(fp_line (start -3.7 5.2) (end 3.7 5.2) (layer "F.CrtYd") (width 0.05) (tstamp 5fc27c35-3e1c-4f96-817c-93b5570858a6))
(fp_line (start -3.7 -5.2) (end -3.7 5.2) (layer "F.CrtYd") (width 0.05) (tstamp 6c9b793c-e74d-4754-a2c0-901e73b26f1c))
(fp_line (start 3.7 -5.2) (end -3.7 -5.2) (layer "F.CrtYd") (width 0.05) (tstamp c144caa5-b0d4-4cef-840a-d4ad178a2102))
(fp_line (start 3.7 5.2) (end 3.7 -5.2) (layer "F.CrtYd") (width 0.05) (tstamp efeac2a2-7682-4dc7-83ee-f6f1b23da506))
(fp_line (start 1.95 -4.95) (end 1.95 4.95) (layer "F.Fab") (width 0.1) (tstamp 127679a9-3981-4934-815e-896a4e3ff56e))
(fp_line (start -0.975 -4.95) (end 1.95 -4.95) (layer "F.Fab") (width 0.1) (tstamp 48ab88d7-7084-4d02-b109-3ad55a30bb11))
(fp_line (start -1.95 -3.975) (end -0.975 -4.95) (layer "F.Fab") (width 0.1) (tstamp 6a45789b-3855-401f-8139-3c734f7f52f9))
(fp_line (start 1.95 4.95) (end -1.95 4.95) (layer "F.Fab") (width 0.1) (tstamp 716e31c5-485f-40b5-88e3-a75900da9811))
(fp_line (start -1.95 4.95) (end -1.95 -3.975) (layer "F.Fab") (width 0.1) (tstamp b1086f75-01ba-4188-8d36-75a9e2828ca9))
(pad "1" smd rect locked (at -2.475 -4.445) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 4c8eb964-bdf4-44de-90e9-e2ab82dd5313))
(pad "2" smd rect locked (at -2.475 -3.175) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "TXD") (pinfunction "TXD") (pintype "output") (tstamp 94a873dc-af67-4ef9-8159-1f7c93eeb3d7))
(pad "3" smd rect locked (at -2.475 -1.905) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "RXD") (pinfunction "RXD") (pintype "input") (tstamp 29e78086-2175-405e-9ba3-c48766d2f50c))
(pad "4" smd rect locked (at -2.475 -0.635) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "V3") (pinfunction "V3") (pintype "passive") (tstamp a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5))
(pad "5" smd rect locked (at -2.475 0.635) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "D+") (pinfunction "UD+") (pintype "bidirectional") (tstamp 03c52831-5dc5-43c5-a442-8d23643b46fb))
(pad "6" smd rect locked (at -2.475 1.905) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "D-") (pinfunction "UD-") (pintype "bidirectional") (tstamp d57dcfee-5058-4fc2-a68b-05f9a48f685b))
(pad "7" smd rect locked (at -2.475 3.175) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(C4-Pad2)") (pinfunction "XI") (pintype "input") (tstamp 3cd1bda0-18db-417d-b581-a0c50623df68))
(pad "8" smd rect locked (at -2.475 4.445) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(C5-Pad1)") (pinfunction "XO") (pintype "output") (tstamp 0b21a65d-d20b-411e-920a-75c343ac5136))
(pad "9" smd rect locked (at 2.475 4.445) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "unconnected-(U2-Pad9)") (pinfunction "~{CTS}") (pintype "input+no_connect") (tstamp fe8d9267-7834-48d6-a191-c8724b2ee78d))
(pad "10" smd rect locked (at 2.475 3.175) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "unconnected-(U2-Pad10)") (pinfunction "~{DSR}") (pintype "input+no_connect") (tstamp 0f22151c-f260-4674-b486-4710a2c42a55))
(pad "11" smd rect locked (at 2.475 1.905) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "unconnected-(U2-Pad11)") (pinfunction "~{RI}") (pintype "input+no_connect") (tstamp 1831fb37-1c5d-42c4-b898-151be6fca9dc))
(pad "12" smd rect locked (at 2.475 0.635) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "unconnected-(U2-Pad12)") (pinfunction "~{DCD}") (pintype "input+no_connect") (tstamp 9340c285-5767-42d5-8b6d-63fe2a40ddf3))
(pad "13" smd rect locked (at 2.475 -0.635) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "Net-(Q2-Pad2)") (pinfunction "~{DTR}") (pintype "output") (tstamp c41b3c8b-634e-435a-b582-96b83bbd4032))
(pad "14" smd rect locked (at 2.475 -1.905) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "Net-(Q1-Pad2)") (pinfunction "~{RTS}") (pintype "output") (tstamp ce83728b-bebd-48c2-8734-b6a50d837931))
(pad "15" smd rect locked (at 2.475 -3.175) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "unconnected-(U2-Pad15)") (pinfunction "R232") (pintype "input+no_connect") (tstamp 181abe7a-f941-42b6-bd46-aaa3131f90fb))
(pad "16" smd rect locked (at 2.475 -4.445) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VBUS") (pinfunction "VCC") (pintype "power_in") (tstamp 0eaa98f0-9565-4637-ace3-42a5231b07f7))
(model "${KISYS3DMOD}/Package_SO.3dshapes/SOIC-16_3.9x9.9mm_P1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:PinHeader_1x06_P2.54mm_Vertical_center" locked (layer "F.Cu")
(tedit 5E6D3030) (tstamp 00000000-0000-0000-0000-00005e6daae8)
(at 135.45 100 180)
(descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x06 2.54mm single row")
(property "Sheetfile" "ESP-TC-PROG.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e7d8a56")
(attr through_hole)
(fp_text reference "J3" (at -0.03 -8.72) (layer "F.SilkS") hide
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp f3490fa5-5a27-423b-af60-53609669542c)
)
(fp_text value "PINH" (at -0.03 8.64) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1860e030-7a36-4298-b7fc-a16d48ab15ba)
)
(fp_text user "${REFERENCE}" (at -0.03 -0.04 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 3dcc657b-55a1-48e0-9667-e01e7b6b08b5)
)
(fp_line (start -1.36 7.64) (end 1.3 7.64) (layer "F.SilkS") (width 0.12) (tstamp 23bb2798-d93a-4696-a962-c305c4298a0c))
(fp_line (start -1.36 -5.12) (end 1.3 -5.12) (layer "F.SilkS") (width 0.12) (tstamp 46918595-4a45-48e8-84c0-961b4db7f35f))
(fp_line (start -1.36 -5.12) (end -1.36 7.64) (layer "F.SilkS") (width 0.12) (tstamp 94c158d1-8503-4553-b511-bf42f506c2a8))
(fp_line (start 1.3 -5.12) (end 1.3 7.64) (layer "F.SilkS") (width 0.12) (tstamp 9ccf03e8-755a-4cd9-96fc-30e1d08fa253))
(fp_line (start -1.36 -7.72) (end -0.03 -7.72) (layer "F.SilkS") (width 0.12) (tstamp a7520ad3-0f8b-4788-92d4-8ffb277041e6))
(fp_line (start -1.36 -6.39) (end -1.36 -7.72) (layer "F.SilkS") (width 0.12) (tstamp a795f1ba-cdd5-4cc5-9a52-08586e982934))
(fp_line (start -1.83 -8.19) (end -1.83 8.11) (layer "F.CrtYd") (width 0.05) (tstamp 13abf99d-5265-4779-8973-e94370fd18ff))
(fp_line (start 1.77 8.11) (end 1.77 -8.19) (layer "F.CrtYd") (width 0.05) (tstamp 32667662-ae86-4904-b198-3e95f11851bf))
(fp_line (start 1.77 -8.19) (end -1.83 -8.19) (layer "F.CrtYd") (width 0.05) (tstamp 67f6e996-3c99-493c-8f6f-e739e2ed5d7a))
(fp_line (start -1.83 8.11) (end 1.77 8.11) (layer "F.CrtYd") (width 0.05) (tstamp a05d7640-f2f6-4ba7-8c51-5a4af431fc13))
(fp_line (start -1.3 7.58) (end -1.3 -7.025) (layer "F.Fab") (width 0.1) (tstamp 6e105729-aba0-497c-a99e-c32d2b3ddb6d))
(fp_line (start -1.3 -7.025) (end -0.665 -7.66) (layer "F.Fab") (width 0.1) (tstamp 78cbdd6c-4878-4cc5-9a58-0e506478e37d))
(fp_line (start 1.24 7.58) (end -1.3 7.58) (layer "F.Fab") (width 0.1) (tstamp 983c426c-24e0-4c65-ab69-1f1824adc5c6))
(fp_line (start 1.24 -7.66) (end 1.24 7.58) (layer "F.Fab") (width 0.1) (tstamp c1d83899-e380-49f9-a87d-8e78bc089ebf))
(fp_line (start -0.665 -7.66) (end 1.24 -7.66) (layer "F.Fab") (width 0.1) (tstamp e9bb29b2-2bb9-4ea2-acd9-2bb3ca677a12))
(pad "1" thru_hole rect locked (at -0.03 -6.39 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 "unconnected-(J3-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp bb7f0588-d4d8-44bf-9ebf-3c533fe4d6ae))
(pad "2" thru_hole oval locked (at -0.03 -3.85 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 "IO0") (pinfunction "Pin_2") (pintype "passive") (tstamp 3f5fe6b7-98fc-4d3e-9567-f9f7202d1455))
(pad "3" thru_hole oval locked (at -0.03 -1.31 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "EN") (pinfunction "Pin_3") (pintype "passive") (tstamp 5cbb5968-dbb5-4b84-864a-ead1cacf75b9))
(pad "4" thru_hole oval locked (at -0.03 1.23 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "RXD") (pinfunction "Pin_4") (pintype "passive") (tstamp afb8e687-4a13-41a1-b8c0-89a749e897fe))
(pad "5" thru_hole oval locked (at -0.03 3.77 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "TXD") (pinfunction "Pin_5") (pintype "passive") (tstamp da469d11-a8a4-414b-9449-d151eeaf4853))
(pad "6" thru_hole oval locked (at -0.03 6.31 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_6") (pintype "passive") (tstamp 62c076a3-d618-44a2-9042-9a08b3576787))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical.wrl"
(offset (xyz 0 6.4 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm" (layer "F.Cu")
(tedit 5A0FD1B2) (tstamp 00000000-0000-0000-0000-00005e6dc0a1)
(at 111.19 103.5)
(descr "SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, 3.2x2.5mm^2 package")
(tags "SMD SMT crystal")
(property "Sheetfile" "ESP-TC-PROG.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e87d1f2")
(attr smd)
(fp_text reference "Y1" (at 5.11 1.1) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 71c31975-2c45-4d18-a25a-18e07a55d11e)
)
(fp_text value "12Mhz" (at 0 2.45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 10109f84-4940-47f8-8640-91f185ac9bc1)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 749dfe75-c0d6-4872-9330-29c5bbcb8ff8)
)
(fp_line (start -2 1.65) (end 2 1.65) (layer "F.SilkS") (width 0.12) (tstamp 77ed3941-d133-4aef-a9af-5a39322d14eb))
(fp_line (start -2 -1.65) (end -2 1.65) (layer "F.SilkS") (width 0.12) (tstamp e615f7aa-337e-474d-9615-2ad82b1c44ca))
(fp_line (start -2.1 -1.7) (end -2.1 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 47baf4b1-0938-497d-88f9-671136aa8be7))
(fp_line (start 2.1 -1.7) (end -2.1 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 55e740a3-0735-4744-896e-2bf5437093b9))
(fp_line (start -2.1 1.7) (end 2.1 1.7) (layer "F.CrtYd") (width 0.05) (tstamp c022004a-c968-410e-b59e-fbab0e561e9d))
(fp_line (start 2.1 1.7) (end 2.1 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp f4f99e3d-7269-4f6a-a759-16ad2a258779))
(fp_line (start 1.6 1.25) (end 1.6 -1.25) (layer "F.Fab") (width 0.1) (tstamp 44d8279a-9cd1-4db6-856f-0363131605fc))
(fp_line (start -1.6 0.25) (end -0.6 1.25) (layer "F.Fab") (width 0.1) (tstamp 4fb02e58-160a-4a39-9f22-d0c75e82ee72))
(fp_line (start -1.6 -1.25) (end -1.6 1.25) (layer "F.Fab") (width 0.1) (tstamp 66116376-6967-4178-9f23-a26cdeafc400))
(fp_line (start -1.6 1.25) (end 1.6 1.25) (layer "F.Fab") (width 0.1) (tstamp eb667eea-300e-4ca7-8a6f-4b00de80cd45))
(fp_line (start 1.6 -1.25) (end -1.6 -1.25) (layer "F.Fab") (width 0.1) (tstamp ef8fe2ac-6a7f-4682-9418-b801a1b10a3b))
(pad "1" smd rect locked (at -1.1 0.85) (size 1.4 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(C5-Pad1)") (pinfunction "1") (pintype "passive") (tstamp d8603679-3e7b-4337-8dbc-1827f5f54d8a))
(pad "2" smd rect locked (at 1.1 0.85) (size 1.4 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp 1e1b062d-fad0-427c-a622-c5b8a80b5268))
(pad "3" smd rect locked (at 1.1 -0.85) (size 1.4 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(C4-Pad2)") (pinfunction "3") (pintype "passive") (tstamp cbdcaa78-3bbc-413f-91bf-2709119373ce))
(pad "4" smd rect locked (at -1.1 -0.85) (size 1.4 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "4") (pintype "passive") (tstamp 3b838d52-596d-4e4d-a6ac-e4c8e7621137))
(model "${KISYS3DMOD}/Crystal.3dshapes/Crystal_SMD_3225-4Pin_3.2x2.5mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:R_0402" (layer "F.Cu")
(tedit 5E580E9C) (tstamp 00000000-0000-0000-0000-00005e6dc38f)
(at 108.5 102.3 90)
(descr "Resistor 0402")
(tags "R Resistor 0805")
(property "Sheetfile" "ESP-TC-PROG.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e792f20")
(attr smd)
(fp_text reference "R2" (at 1.25 0 180) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp c43663ee-9a0d-4f27-a292-89ba89964065)
)
(fp_text value "5k1" (at 0 -1.325 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c830e3bc-dc64-4f65-8f47-3b106bae2807)
)
(fp_line (start 0 0.15) (end 0 -0.15) (layer "F.SilkS") (width 0.12) (tstamp 25d545dc-8f50-4573-922c-35ef5a2a3a19))
(pad "1" smd rect locked (at -0.47 0 90) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp d5641ac9-9be7-46bf-90b3-6c83d852b5ba))
(pad "2" smd rect locked (at 0.47 0 90) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(J1-PadB5)") (pintype "passive") (tstamp 1e8701fc-ad24-40ea-846a-e3db538d6077))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-00005e6dc543)
(at 122.6 102.825 -90)
(descr "SOT-23, Standard")
(tags "SOT-23")
(property "Sheetfile" "ESP-TC-PROG.kicad_sch")
(property "Sheetname" "")
(path "/ec6d32a5-1b15-453d-932c-026caf0d0882")
(attr smd)
(fp_text reference "Q1" (at 1.2 -1.15 180) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp ca87f11b-5f48-4b57-8535-68d3ec2fe5a9)
)
(fp_text value "S8050-J3Y" (at 0 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7d928d56-093a-4ca8-aed1-414b7e703b45)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 789ca812-3e0c-4a3f-97bc-a916dd9bce80)
)
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "F.SilkS") (width 0.12) (tstamp 6595b9c7-02ee-4647-bde5-6b566e35163e))
(fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer "F.SilkS") (width 0.12) (tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955))
(fp_line (start 0.76 1.58) (end -0.7 1.58) (layer "F.SilkS") (width 0.12) (tstamp 8a650ebf-3f78-4ca4-a26b-a5028693e36d))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "F.SilkS") (width 0.12) (tstamp f3628265-0155-43e2-a467-c40ff783e265))
(fp_line (start 1.7 1.75) (end -1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 0c3dceba-7c95-4b3d-b590-0eb581444beb))
(fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 965308c8-e014-459a-b9db-b8493a601c62))
(fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp abe07c9a-17c3-43b5-b7a6-ae867ac27ea7))
(fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp b1c649b1-f44d-46c7-9dea-818e75a1b87e))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer "F.Fab") (width 0.1) (tstamp 16a9ae8c-3ad2-439b-8efe-377c994670c7))
(fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp 770ad51a-7219-4633-b24a-bd20feb0a6c5))
(fp_line (start -0.7 1.52) (end 0.7 1.52) (layer "F.Fab") (width 0.1) (tstamp b7199d9b-bebb-4100-9ad3-c2bd31e21d65))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer "F.Fab") (width 0.1) (tstamp db36f6e3-e72a-487f-bda9-88cc84536f62))
(fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer "F.Fab") (width 0.1) (tstamp e4c6fdbb-fdc7-4ad4-a516-240d84cdc120))
(pad "1" smd rect locked (at -1 -0.95 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "Net-(Q1-Pad1)") (pinfunction "B") (pintype "input") (tstamp a17904b9-135e-4dae-ae20-401c7787de72))
(pad "2" smd rect locked (at -1 0.95 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "Net-(Q1-Pad2)") (pinfunction "E") (pintype "passive") (tstamp cdfb07af-801b-44ba-8c30-d021a6ad3039))
(pad "3" smd rect locked (at 1 0 270) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "EN") (pinfunction "C") (pintype "passive") (tstamp e6b860cc-cb76-4220-acfb-68f1eb348bfa))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:C_0402" (layer "F.Cu")
(tedit 5E580EF6) (tstamp 00000000-0000-0000-0000-00005e6dcb84)
(at 120.7 94 90)
(descr "Capacitor 0402")
(tags "C Capacitor 0402")
(property "Sheetfile" "ESP-TC-PROG.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e7a7f8e")
(attr smd)
(fp_text reference "C3" (at 0 1 180) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp cff34251-839c-4da9-a0ad-85d0fc4e32af)
)
(fp_text value "100n" (at 0 -1.325 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d5b800ca-1ab6-4b66-b5f7-2dda5658b504)
)
(fp_line (start 0 0.15) (end 0 -0.15) (layer "F.SilkS") (width 0.12) (tstamp c9667181-b3c7-4b01-b8b4-baa29a9aea63))
(pad "1" smd rect locked (at -0.47 0 90) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VBUS") (pintype "passive") (tstamp be645d0f-8568-47a0-a152-e3ddd33563eb))
(pad "2" smd rect locked (at 0.47 0 90) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp ebd06df3-d52b-4cff-99a2-a771df6d3733))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:C_0805" (layer "F.Cu")
(tedit 5E580ED0) (tstamp 00000000-0000-0000-0000-00005e6dd38d)
(at 118.6 94.1 180)
(descr "Capacitor 0805")
(tags "C Capacitor 0805")
(property "Sheetfile" "ESP-TC-PROG.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e7ad40f")
(attr smd)
(fp_text reference "C1" (at 2 -0.4 180) (layer "F.SilkS")
(effects (font (size 0.45 0.45) (thickness 0.1)))
(tstamp 1f817199-06d7-4e05-a7d3-eee274d6cf95)
)
(fp_text value "4u7" (at 0 -2.55 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 794e8c26-53e7-49ae-9d55-cbfe4ad5f40a)
)
(fp_line (start 0 0.5) (end 0 -0.5) (layer "F.SilkS") (width 0.12) (tstamp fbeaeb38-eb42-4fdd-a884-1b897d4abaef))
(pad "1" smd rect locked (at -0.95 0 180) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VBUS") (pintype "passive") (tstamp 2a78269f-5283-4914-96bf-604b95e8eacc))
(pad "2" smd rect locked (at 0.95 0 180) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp d15dd58e-76a8-4a86-bf2e-7e1c057889fe))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:C_0402" (layer "F.Cu")
(tedit 5E580EF6) (tstamp 00000000-0000-0000-0000-00005e6dd706)
(at 114.78 105.79)
(descr "Capacitor 0402")
(tags "C Capacitor 0402")
(property "Sheetfile" "ESP-TC-PROG.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e7c6116")
(attr smd)
(fp_text reference "C4" (at -1.48 -0.09) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 3fd54105-4b7e-4004-9801-76ec66108a22)
)
(fp_text value "22p" (at 0 -1.325) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 29e058a7-50a3-43e5-81c3-bfee53da08be)
)
(fp_line (start 0 0.15) (end 0 -0.15) (layer "F.SilkS") (width 0.12) (tstamp 5cf2db29-f7ab-499a-9907-cdeba64bf0f3))
(pad "1" smd rect locked (at -0.47 0) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp 382ca670-6ae8-4de6-90f9-f241d1337171))
(pad "2" smd rect locked (at 0.47 0) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(C4-Pad2)") (pintype "passive") (tstamp feb26ecb-9193-46ea-a41b-d09305bf0a3e))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:R_0402" (layer "F.Cu")
(tedit 5E580E9C) (tstamp 00000000-0000-0000-0000-00005e6de00f)
(at 108.6 98.15 -90)
(descr "Resistor 0402")
(tags "R Resistor 0805")
(property "Sheetfile" "ESP-TC-PROG.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e7927b4")
(attr smd)
(fp_text reference "R1" (at -1.25 0 180) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp a15a7506-eae4-4933-84da-9ad754258706)
)
(fp_text value "5k1" (at 0 -1.325 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d3c11c8f-a73d-4211-934b-a6da255728ad)
)
(fp_line (start 0 0.15) (end 0 -0.15) (layer "F.SilkS") (width 0.12) (tstamp 639c0e59-e95c-4114-bccd-2e7277505454))
(pad "1" smd rect locked (at -0.47 0 270) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp 03caada9-9e22-4e2d-9035-b15433dfbb17))
(pad "2" smd rect locked (at 0.47 0 270) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "Net-(J1-PadA5)") (pintype "passive") (tstamp 8ca3e20d-bcc7-4c5e-9deb-562dfed9fecb))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "otter:R_0402" (layer "F.Cu")
(tedit 5E580E9C) (tstamp ef0f473a-aa49-4a7f-9490-416cac6f154b)
(at 122.5 96.2 180)
(descr "Resistor 0402")
(tags "R Resistor 0805")
(property "Sheetfile" "ESP-TC-PROG.kicad_sch")
(property "Sheetname" "")
(path "/377817d1-84c7-444b-b966-48eb3b02923d")
(attr smd)
(fp_text reference "R7" (at -1.4 0) (layer "F.SilkS")
(effects (font (size 0.45 0.45) (thickness 0.1)))
(tstamp 47c866b0-44b1-4e64-8797-9ed33e27890d)
)
(fp_text value "5k1" (at 0 -1.325) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d26d3249-d5b6-4733-bc95-df0d5361ef00)
)
(fp_line (start 0 0.15) (end 0 -0.15) (layer "F.SilkS") (width 0.12) (tstamp b5bc6bfa-d8fc-40d0-a969-81d843e2c8c9))
(pad "1" smd rect locked (at -0.47 0 180) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "IO0") (pintype "passive") (tstamp 0c6d5dde-23d0-4c89-bdb2-366e90a4a81a))
(pad "2" smd rect locked (at 0.47 0 180) (size 0.5 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "V3") (pintype "passive") (tstamp 2cd5705e-095f-4123-8b46-67e7de9b4297))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_line (start 113.55 94.3) (end 112.8 94.6) (layer "F.SilkS") (width 0.12) (tstamp eee16674-2d21-45b6-ab5e-d669125df26c))
(gr_line (start 124.5 91.95) (end 107 94.5) (layer "Eco1.User") (width 0.05) (tstamp 00000000-0000-0000-0000-00005e6d932f))
(gr_line (start 124.5 108.05) (end 107 105.5) (layer "Eco1.User") (width 0.05) (tstamp 00000000-0000-0000-0000-00005e6d9332))
(gr_line (start 100 94.5) (end 107 94.5) (layer "Eco1.User") (width 0.15) (tstamp 065b9982-55f2-4822-977e-07e8a06e7b35))
(gr_line (start 137.05 108.05) (end 124.5 108.05) (layer "Eco1.User") (width 0.15) (tstamp 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf))
(gr_line (start 100 90) (end 100 110) (layer "Eco1.User") (width 0.15) (tstamp 970e0f64-111f-41e3-9f5a-fb0d0f6fa101))
(gr_line (start 137.05 91.95) (end 124.5 91.95) (layer "Eco1.User") (width 0.15) (tstamp a24ddb4f-c217-42ca-b6cb-d12da84fb2b9))
(gr_line (start 107 105.5) (end 100 105.5) (layer "Eco1.User") (width 0.15) (tstamp a6ccc556-da88-4006-ae1a-cc35733efef3))
(gr_line (start 93.95 100) (end 133.95 100) (layer "Eco1.User") (width 0.15) (tstamp b6135480-ace6-42b2-9c47-856ef57cded1))
(gr_line (start 137.05 90) (end 137.05 111) (layer "Eco1.User") (width 0.15) (tstamp dc2801a1-d539-4721-b31f-fe196b9f13df))
(gr_line (start 105.275 105.25) (end 101.425 105.25) (layer "Edge.Cuts") (width 0.05) (tstamp 00000000-0000-0000-0000-00005e6d9a57))
(gr_arc (start 138.23 107.3) (mid 138.01033 107.83033) (end 137.48 108.05) (layer "Edge.Cuts") (width 0.05) (tstamp 00000000-0000-0000-0000-00005e6dcdab))
(gr_arc (start 101.425 105.25) (mid 100.89467 105.03033) (end 100.675 104.5) (layer "Edge.Cuts") (width 0.05) (tstamp 00000000-0000-0000-0000-00005e6dd5f9))
(gr_line (start 100.675 104.5) (end 100.675 95.5) (layer "Edge.Cuts") (width 0.05) (tstamp 00000000-0000-0000-0000-00005e6dd605))
(gr_line (start 124.5 108.05) (end 105.275 105.25) (layer "Edge.Cuts") (width 0.05) (tstamp 009a4fb4-fcc0-4623-ae5d-c1bae3219583))
(gr_line (start 138.23 92.7) (end 138.23 107.3) (layer "Edge.Cuts") (width 0.05) (tstamp 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea))
(gr_arc (start 100.675 95.5) (mid 100.89467 94.96967) (end 101.425 94.75) (layer "Edge.Cuts") (width 0.05) (tstamp 5701b80f-f006-4814-81c9-0c7f006088a9))
(gr_line (start 105.3 94.75) (end 124.45 91.95) (layer "Edge.Cuts") (width 0.05) (tstamp 70fb572d-d5ec-41e7-9482-63d4578b4f47))
(gr_line (start 101.425 94.75) (end 105.3 94.75) (layer "Edge.Cuts") (width 0.05) (tstamp 7afa54c4-2181-41d3-81f7-39efc497ecae))
(gr_arc (start 137.48 91.95) (mid 138.01033 92.16967) (end 138.23 92.7) (layer "Edge.Cuts") (width 0.05) (tstamp 88668202-3f0b-4d07-84d4-dcd790f57272))
(gr_line (start 137.48 108.05) (end 124.5 108.05) (layer "Edge.Cuts") (width 0.05) (tstamp cf386a39-fc62-49dd-8ec5-e044f6bd67ce))
(gr_line (start 124.45 91.95) (end 137.48 91.95) (layer "Edge.Cuts") (width 0.05) (tstamp eae0ab9f-65b2-44d3-aba7-873c3227fba7))
(gr_text "IO0" (at 137.6 103.85 90) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00005e6dd486)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify mirror))