-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathesp_programmer.kicad_pcb
More file actions
12434 lines (12398 loc) · 474 KB
/
esp_programmer.kicad_pcb
File metadata and controls
12434 lines (12398 loc) · 474 KB
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 20210824) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Green") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Green") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "HAL SnPb")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "output/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+3V3")
(net 3 "/BOOT")
(net 4 "unconnected-(U2-Pad4)")
(net 5 "unconnected-(U1-Pad24)")
(net 6 "unconnected-(U1-Pad22)")
(net 7 "unconnected-(U1-Pad18)")
(net 8 "unconnected-(U1-Pad17)")
(net 9 "unconnected-(U1-Pad16)")
(net 10 "unconnected-(U1-Pad15)")
(net 11 "unconnected-(U1-Pad12)")
(net 12 "unconnected-(U1-Pad11)")
(net 13 "unconnected-(U1-Pad10)")
(net 14 "unconnected-(U1-Pad1)")
(net 15 "unconnected-(J2-PadB8)")
(net 16 "unconnected-(J2-PadA8)")
(net 17 "Net-(Q1-Pad1)")
(net 18 "Net-(Q2-Pad1)")
(net 19 "Net-(R5-Pad2)")
(net 20 "Net-(R3-Pad2)")
(net 21 "Net-(J2-PadB5)")
(net 22 "Net-(J2-PadA5)")
(net 23 "Net-(F1-Pad1)")
(net 24 "Net-(D4-Pad1)")
(net 25 "Net-(D3-Pad1)")
(net 26 "Net-(D2-Pad1)")
(net 27 "/TXT")
(net 28 "/RX")
(net 29 "/RXT")
(net 30 "/TX")
(net 31 "/RTS")
(net 32 "/EN")
(net 33 "/DTR")
(net 34 "/D-")
(net 35 "/D+")
(net 36 "+5V")
(net 37 "/CONN_D+")
(net 38 "/CONN_D-")
(footprint "Package_DFN_QFN:QFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm" (layer "F.Cu")
(tedit 5DC5F6A3) (tstamp 045db8e4-5a63-4f81-94b3-92a9f48b6c1d)
(at 53.3 80.2)
(descr "QFN, 24 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=278), generated with kicad-footprint-generator ipc_noLead_generator.py")
(tags "QFN NoLead")
(property "Sheetfile" "esp_programmer.kicad_sch")
(property "Sheetname" "")
(path "/4f2290ab-bd14-4052-9c88-e1bf0e287af3")
(attr smd)
(fp_text reference "U1" (at -2.3 -3 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd7bd0ac-adf0-475f-9b13-30eac0d8c899)
)
(fp_text value "CP2102N-Axx-xQFN24" (at -0.7498 3.3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cccd52ea-53d5-46fb-97e7-04113ee1bf08)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86d28ba5-6ee4-462b-a7be-4e05a4e2ae08)
)
(fp_line (start -2.11 2.11) (end -2.11 1.635) (layer "F.SilkS") (width 0.12) (tstamp 29ecf87e-2c4d-4314-9efd-68aa322dd1f2))
(fp_line (start 2.11 -2.11) (end 2.11 -1.635) (layer "F.SilkS") (width 0.12) (tstamp 31631697-0892-4f19-9cb0-3531e755e1af))
(fp_line (start 1.635 2.11) (end 2.11 2.11) (layer "F.SilkS") (width 0.12) (tstamp 8ecb6b89-1d29-480a-ac02-a3ff0ad437ef))
(fp_line (start 2.11 2.11) (end 2.11 1.635) (layer "F.SilkS") (width 0.12) (tstamp 93619b8d-e734-4ffe-917d-a1f85928a4a8))
(fp_line (start -1.635 2.11) (end -2.11 2.11) (layer "F.SilkS") (width 0.12) (tstamp 93737974-951f-4abe-8219-d9dc4e365db1))
(fp_line (start 1.635 -2.11) (end 2.11 -2.11) (layer "F.SilkS") (width 0.12) (tstamp a27a0070-e9d6-48ff-a42b-9da7c5e4ca13))
(fp_line (start -1.635 -2.11) (end -2.11 -2.11) (layer "F.SilkS") (width 0.12) (tstamp b9992744-17da-4e9d-b388-ecae28247de1))
(fp_line (start 2.6 -2.6) (end -2.6 -2.6) (layer "F.CrtYd") (width 0.05) (tstamp 31c9236d-a76e-491e-9b37-b7432dededcd))
(fp_line (start 2.6 2.6) (end 2.6 -2.6) (layer "F.CrtYd") (width 0.05) (tstamp 3abf9c03-3e50-4138-85e8-42588a2b8d5b))
(fp_line (start -2.6 2.6) (end 2.6 2.6) (layer "F.CrtYd") (width 0.05) (tstamp a01ec895-4cbb-4d45-9ed7-d006f0903357))
(fp_line (start -2.6 -2.6) (end -2.6 2.6) (layer "F.CrtYd") (width 0.05) (tstamp c1c88c13-7dd8-4ea2-b14a-4436a22ee76a))
(fp_line (start 2 -2) (end 2 2) (layer "F.Fab") (width 0.1) (tstamp 19bdafeb-e19e-480d-a252-a0237e0c2406))
(fp_line (start 2 2) (end -2 2) (layer "F.Fab") (width 0.1) (tstamp 1c0a6e1b-b402-4443-9379-e9746211db3d))
(fp_line (start -1 -2) (end 2 -2) (layer "F.Fab") (width 0.1) (tstamp 49eb6272-8088-40bd-9bdb-f4770a3e3b2c))
(fp_line (start -2 2) (end -2 -1) (layer "F.Fab") (width 0.1) (tstamp 5d892942-7fea-4aa2-b95d-53e34f1e761d))
(fp_line (start -2 -1) (end -1 -2) (layer "F.Fab") (width 0.1) (tstamp 96e588ac-9a20-477f-80f6-4f7ff3c40780))
(pad "" smd roundrect locked (at -0.65 0.65) (size 1.05 1.05) (layers "F.Paste") (roundrect_rratio 0.2380952381) (tstamp 10b8811d-6435-4f74-b6c9-d3ced0b064c8))
(pad "" smd roundrect locked (at 0.65 -0.65) (size 1.05 1.05) (layers "F.Paste") (roundrect_rratio 0.2380952381) (tstamp 1f16c56d-fb9b-4bc7-ab8c-12e5d753d0a7))
(pad "" smd roundrect locked (at 0.65 0.65) (size 1.05 1.05) (layers "F.Paste") (roundrect_rratio 0.2380952381) (tstamp 612505d7-14aa-4b65-a2c0-bcd9957ebc33))
(pad "" smd roundrect locked (at -0.65 -0.65) (size 1.05 1.05) (layers "F.Paste") (roundrect_rratio 0.2380952381) (tstamp ad0876cd-cc18-4ebc-a41c-9280af5181ae))
(pad "1" smd roundrect locked (at -1.9375 -1.25) (size 0.825 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "unconnected-(U1-Pad1)") (pinfunction "~{RI}/CLK") (pintype "bidirectional+no_connect") (tstamp 4ac8a3ff-d646-457b-8c76-026e3bea68ca))
(pad "2" smd roundrect locked (at -1.9375 -0.75) (size 0.825 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 3859d366-18bf-40e4-823b-ebfab1dcabd0))
(pad "3" smd roundrect locked (at -1.9375 -0.25) (size 0.825 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "/D+") (pinfunction "D+") (pintype "bidirectional") (tstamp a9de0b11-4fdb-45f7-b2be-31c7b945825b))
(pad "4" smd roundrect locked (at -1.9375 0.25) (size 0.825 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "/D-") (pinfunction "D-") (pintype "bidirectional") (tstamp be841348-67dd-4b7b-b8e3-9ccf4896cf7e))
(pad "5" smd roundrect locked (at -1.9375 0.75) (size 0.825 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pinfunction "VIO") (pintype "power_in") (tstamp 0390313f-2759-400d-b966-003aa25b9417))
(pad "6" smd roundrect locked (at -1.9375 1.25) (size 0.825 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp e15dd4be-d913-4b8e-be24-10deb89a0261))
(pad "7" smd roundrect locked (at -1.25 1.9375) (size 0.25 0.825) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pinfunction "VREGIN") (pintype "power_in") (tstamp 448e4f80-2aae-45d8-bf0d-8c175e6bb23e))
(pad "8" smd roundrect locked (at -0.75 1.9375) (size 0.25 0.825) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "Net-(R3-Pad2)") (pinfunction "VBUS") (pintype "input") (tstamp c41d8680-9843-4a6c-a156-d65e99b457c4))
(pad "9" smd roundrect locked (at -0.25 1.9375) (size 0.25 0.825) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "Net-(R5-Pad2)") (pinfunction "~{RST}") (pintype "input") (tstamp 7edb9fb6-f6a4-41db-9ec0-f130fd0893ae))
(pad "10" smd roundrect locked (at 0.25 1.9375) (size 0.25 0.825) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "unconnected-(U1-Pad10)") (pinfunction "NC") (pintype "no_connect") (tstamp ed263823-8fe6-4777-ab72-eb33fd06184e))
(pad "11" smd roundrect locked (at 0.75 1.9375) (size 0.25 0.825) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "unconnected-(U1-Pad11)") (pinfunction "~{WAKEUP}/GPIO.3") (pintype "bidirectional+no_connect") (tstamp a1463971-570c-4331-872b-478fdff8e15f))
(pad "12" smd roundrect locked (at 1.25 1.9375) (size 0.25 0.825) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "unconnected-(U1-Pad12)") (pinfunction "RS485/GPIO.2") (pintype "bidirectional+no_connect") (tstamp 60fa0827-5e6b-44a2-baf3-50f80aba55e5))
(pad "13" smd roundrect locked (at 1.9375 1.25) (size 0.825 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "/RXT") (pinfunction "~{RXT}/GPIO.1") (pintype "bidirectional") (tstamp 2a19d0e2-e26e-44d0-a8ff-8005657e4a5e))
(pad "14" smd roundrect locked (at 1.9375 0.75) (size 0.825 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "/TXT") (pinfunction "~{TXT}/GPIO.0") (pintype "bidirectional") (tstamp 3d584244-a4c7-48e3-bd09-61f2855103bb))
(pad "15" smd roundrect locked (at 1.9375 0.25) (size 0.825 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "unconnected-(U1-Pad15)") (pinfunction "~{SUSPEND}") (pintype "output+no_connect") (tstamp 4218e6bb-1918-4003-a38a-97e8c94a1f5a))
(pad "16" smd roundrect locked (at 1.9375 -0.25) (size 0.825 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "unconnected-(U1-Pad16)") (pinfunction "NC") (pintype "no_connect") (tstamp 685093f7-83c1-4722-a6ef-81f0eed0e613))
(pad "17" smd roundrect locked (at 1.9375 -0.75) (size 0.825 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "unconnected-(U1-Pad17)") (pinfunction "SUSPEND") (pintype "output+no_connect") (tstamp ced5e429-3d53-4d27-804d-f58bc177f1ed))
(pad "18" smd roundrect locked (at 1.9375 -1.25) (size 0.825 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "unconnected-(U1-Pad18)") (pinfunction "~{CTS}") (pintype "input+no_connect") (tstamp 763aa245-c7b5-4361-926b-48ec3419ac1f))
(pad "19" smd roundrect locked (at 1.25 -1.9375) (size 0.25 0.825) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "/RTS") (pinfunction "~{RTS}") (pintype "output") (tstamp 18c571f1-612a-4872-a80d-9a385d7b09ed))
(pad "20" smd roundrect locked (at 0.75 -1.9375) (size 0.25 0.825) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "/RX") (pinfunction "RXD") (pintype "input") (tstamp fa47cd26-c087-4ae3-a601-38c15694d85b))
(pad "21" smd roundrect locked (at 0.25 -1.9375) (size 0.25 0.825) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "/TX") (pinfunction "TXD") (pintype "output") (tstamp 0907d310-567a-447f-aaf1-a797c535b194))
(pad "22" smd roundrect locked (at -0.25 -1.9375) (size 0.25 0.825) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "unconnected-(U1-Pad22)") (pinfunction "~{DSR}") (pintype "input+no_connect") (tstamp 675ddd4f-80e6-4e51-859b-eff9cb024143))
(pad "23" smd roundrect locked (at -0.75 -1.9375) (size 0.25 0.825) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "/DTR") (pinfunction "~{DTR}") (pintype "output") (tstamp b52406bf-003d-47dd-8c4f-f980065de3c9))
(pad "24" smd roundrect locked (at -1.25 -1.9375) (size 0.25 0.825) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "unconnected-(U1-Pad24)") (pinfunction "~{DCD}") (pintype "input+no_connect") (tstamp e5a2be08-e22f-4be3-a2c7-f1df7b3151f4))
(pad "25" smd rect locked (at 0 0) (size 2.6 2.6) (layers "F.Cu" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 499b16ca-65bc-4531-a157-06b4f21b487b))
(model "${KICAD6_3DMODEL_DIR}/Package_DFN_QFN.3dshapes/QFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 1663e84f-37d4-4a9c-a3bc-fc3a52abf08e)
(at 58.2 78.4)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "esp_programmer.kicad_sch")
(property "Sheetname" "")
(path "/b101eac0-44e2-4d3b-92ee-3a39dbe0d3aa")
(attr smd)
(fp_text reference "R8" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1ca14d2b-77df-45a8-9180-7b61420d7d85)
)
(fp_text value "1k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 999d351b-fb6a-4295-8c5c-db2c940b680d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp e14bf4a9-c61b-4948-8bb8-d968211352b5)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 8fdaf91f-5c37-4890-becb-712cf9e42e9c))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 9f44de73-6584-42bf-be1b-b01c37625704))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 800f8a83-a2ed-4884-8f81-968dfb31b5de))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f3f2454a-2061-48d6-ab97-7537ad72dbd8))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f9f5cbf4-107a-4243-81cb-568e44f7ed67))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp faf1ea93-e698-4407-9893-533d635b215c))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 13a43af2-a71d-4ca0-a41f-ae94a2f122b5))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 58674036-f92c-46c5-8baa-7a75e04b4868))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 91921b71-e860-4e74-83e6-c60e520f46a5))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp de261d6c-e52c-4cc1-b5ff-61f940a41e39))
(pad "1" smd roundrect locked (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp adeeef7a-2e66-4a23-9f80-cf46ab67503f))
(pad "2" smd roundrect locked (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "Net-(D2-Pad1)") (pintype "passive") (tstamp 23598377-db99-4982-a759-33755946f488))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 1929ee27-a469-4e69-8407-7acd600ebe79)
(at 53 84.8 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "esp_programmer.kicad_sch")
(property "Sheetname" "")
(path "/92071287-1264-486c-9f37-7d24868d2f0f")
(attr smd)
(fp_text reference "R4" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b681ddec-4723-40e9-9f8b-32333b469a9d)
)
(fp_text value "47.5k" (at 0.127 1.524 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bd394dfb-06e5-4995-96fa-3da5e9ab1d18)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 24b2f72d-41bd-4dbe-9e17-67fd2103a991)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp c734285b-36b0-499b-aa5e-fe803ae90974))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp e5a9d3bb-b9c8-4e3d-b8ef-34d384b06a03))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3397012d-c109-4956-aff2-59ad65eb8143))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 360ccce4-f7c7-4b9c-8a92-7bc5f6799bb4))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a552cd1b-874b-456d-98d6-502d46da42c0))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b311a5c8-794d-41aa-992c-c574f9c517f1))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 2bb105a5-e6c2-4493-a273-513c3d3e9159))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 7c077f65-d0bf-4237-9445-c8e57a2caa0d))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 8580972e-3563-4964-8e0d-1a38003f7e43))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp cff1a6a7-5d84-4380-97d6-e357326359a8))
(pad "1" smd roundrect locked (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "Net-(R3-Pad2)") (pintype "passive") (tstamp d8678e67-2784-4dd4-a519-01437b6176c1))
(pad "2" smd roundrect locked (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 382965f6-ffa3-40d8-af66-c6bee6e5c10b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_C_Receptacle_HRO_TYPE-C-31-M-12" (layer "F.Cu")
(tedit 61176A80) (tstamp 3192eb49-27eb-4161-87f7-5fea475464f0)
(at 40.5 78.5 -90)
(descr "USB Type-C receptacle for USB 2.0 and PD, http://www.krhro.com/uploads/soft/180320/1-1P320120243.pdf")
(tags "usb usb-c 2.0 pd")
(property "Field4" "C2760486")
(property "Sheetfile" "esp_programmer.kicad_sch")
(property "Sheetname" "")
(path "/9cf20d0e-06ee-40df-ab97-4612a085ed1f")
(attr smd)
(fp_text reference "J2" (at 0 -0.1 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 953e7e55-69a9-4e0a-8627-a6220ef6182f)
)
(fp_text value "USB_C_Receptacle_USB2.0" (at 0 5.1 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 39811f28-4e59-453d-939a-5ff5da7da2e1)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2b214fbe-0184-447c-ad5b-af37fd5fdf70)
)
(fp_line (start 4.7 -1.9) (end 4.7 0.1) (layer "F.SilkS") (width 0.12) (tstamp 1ebeac22-b67d-4120-8d52-5010c4d09a34))
(fp_line (start -4.7 -1.9) (end -4.7 0.1) (layer "F.SilkS") (width 0.12) (tstamp 279dbc5d-a74f-483c-9862-915e2464b25b))
(fp_line (start -4.7 2.5) (end 4.7 2.5) (layer "F.SilkS") (width 0.12) (tstamp ccdc135c-eb28-44fb-b4f8-d21676d4cfe0))
(fp_line (start -4.7 2) (end -4.7 2.5) (layer "F.SilkS") (width 0.12) (tstamp f273a320-893b-46a3-8069-5e35609d918c))
(fp_line (start 4.7 2) (end 4.7 2.5) (layer "F.SilkS") (width 0.12) (tstamp fe98b711-e9e3-49e3-b235-e1fc17c43ef6))
(fp_line (start 5.32 -5.27) (end 5.32 4.15) (layer "F.CrtYd") (width 0.05) (tstamp 2a83e71e-0873-44c7-a67e-f78ca39d9118))
(fp_line (start -5.32 -5.27) (end 5.32 -5.27) (layer "F.CrtYd") (width 0.05) (tstamp 67e6ee44-a52a-44ff-9293-4e3d6cd7f80d))
(fp_line (start -5.32 4.15) (end 5.32 4.15) (layer "F.CrtYd") (width 0.05) (tstamp a45c8424-9ef1-4b7d-949e-669129300e46))
(fp_line (start -5.32 -5.27) (end -5.32 4.15) (layer "F.CrtYd") (width 0.05) (tstamp fad145e8-6d0a-455f-b641-83a2cc1e1114))
(fp_line (start -4.47 -3.65) (end -4.47 2.25) (layer "F.Fab") (width 0.1) (tstamp 78de56f0-0d02-45b7-bfd6-5346b6e0d9e3))
(fp_line (start 4.47 -3.65) (end 4.47 2.25) (layer "F.Fab") (width 0.1) (tstamp 9ce098ea-fb5f-4a55-9f60-f8a25ae6f74e))
(fp_line (start -4.47 -3.65) (end 4.47 -3.65) (layer "F.Fab") (width 0.1) (tstamp cf08f4f5-1611-4495-bdbd-c73713179b97))
(fp_line (start -4.47 2.25) (end 4.47 2.25) (layer "F.Fab") (width 0.1) (tstamp f204ce8e-5131-4825-ac48-9bac2bc630d9))
(pad "" np_thru_hole circle locked (at 2.89 -2.6 270) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp 459a7824-9359-4119-8cd0-c376a91b782c))
(pad "" np_thru_hole circle locked (at -2.89 -2.6 270) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp da6e7b8c-9070-4e49-945d-a490c89cc088))
(pad "A1" smd rect locked (at -3.25 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp f5029c5e-6c99-47f3-8012-38d4f8da741c))
(pad "A4" smd rect locked (at -2.45 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "Net-(F1-Pad1)") (pinfunction "VBUS") (pintype "passive") (tstamp 257b2ca7-fb17-4b36-96a3-87accc51310a))
(pad "A5" smd rect locked (at -1.25 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "Net-(J2-PadA5)") (pinfunction "CC1") (pintype "bidirectional") (tstamp bf2a43e4-6b5e-4cfb-a9a1-881d2970b4a2))
(pad "A6" smd rect locked (at -0.25 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "/CONN_D+") (pinfunction "D+") (pintype "bidirectional") (tstamp d7ab69a8-8a83-421b-8f77-2ac4e373f9ee))
(pad "A7" smd rect locked (at 0.25 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "/CONN_D-") (pinfunction "D-") (pintype "bidirectional") (tstamp ce464d61-9ace-4c81-aede-24c006df5ca7))
(pad "A8" smd rect locked (at 1.25 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "unconnected-(J2-PadA8)") (pinfunction "SBU1") (pintype "bidirectional+no_connect") (tstamp 8715a64f-0926-4dc6-8594-e27873b962a3))
(pad "A9" smd rect locked (at 2.45 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "Net-(F1-Pad1)") (pinfunction "VBUS") (pintype "passive") (tstamp c72f7e9d-7976-4a52-8c92-ba1a349d726c))
(pad "A12" smd rect locked (at 3.25 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 57aac3b7-c15f-4732-87c3-ea1d54705d23))
(pad "B1" smd rect locked (at 3.25 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp b8ae82c0-d83b-4c2c-88df-a43fda69de94))
(pad "B4" smd rect locked (at 2.45 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "Net-(F1-Pad1)") (pinfunction "VBUS") (pintype "passive") (tstamp 06c0151b-9947-4be8-9279-fa9f7435a7b7))
(pad "B5" smd rect locked (at 1.75 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "Net-(J2-PadB5)") (pinfunction "CC2") (pintype "bidirectional") (tstamp 75622e8c-6d05-4b87-ba51-d8b11ccef48a))
(pad "B6" smd rect locked (at 0.75 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "/CONN_D+") (pinfunction "D+") (pintype "bidirectional") (tstamp 53aab627-dfd3-4bf7-a04a-9fe3ebb91e36))
(pad "B7" smd rect locked (at -0.75 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "/CONN_D-") (pinfunction "D-") (pintype "bidirectional") (tstamp c32babd4-deaa-4583-9221-e0b09224e0ec))
(pad "B8" smd rect locked (at -1.75 -4.045 270) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "unconnected-(J2-PadB8)") (pinfunction "SBU2") (pintype "bidirectional+no_connect") (tstamp 5918f666-47aa-422c-a9ec-04eb00b07d1b))
(pad "B9" smd rect locked (at -2.45 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "Net-(F1-Pad1)") (pinfunction "VBUS") (pintype "passive") (tstamp 98655f2d-23af-4459-8795-60ff92253188))
(pad "B12" smd rect locked (at -3.25 -4.045 270) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp ec01270d-d048-422d-99ec-fe0930a4f33b))
(pad "S1" thru_hole oval locked (at -4.32 -3.13 270) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 04e2cd6b-a044-4608-a5ec-7ae98ff3b835))
(pad "S1" thru_hole oval locked (at -4.32 1.05 270) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 58b7e64d-5214-4b56-b41f-c1f6145aa1c5))
(pad "S1" thru_hole oval locked (at 4.32 -3.13 270) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp bb3a5b9e-94ec-44ae-a8e3-e13cfd8618ad))
(pad "S1" thru_hole oval locked (at 4.32 1.05 270) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp c02ffea7-8cd0-4476-b74e-ae93f2108d97))
(model "${KICAD_USER_LIBRARY}/user-3dmodels/TYPE-C-31-M-12--3DModel-STEP-56544.STEP"
(offset (xyz 0 -1.05 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 49c2fb1b-92e0-4e80-a8f0-c47c45aac467)
(at 64.2 76.7)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "esp_programmer.kicad_sch")
(property "Sheetname" "")
(path "/9694bea9-c911-4858-90ef-cd05319566fd")
(attr smd)
(fp_text reference "D4" (at -3 0) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 39862f1b-2d83-41d2-9301-efb613e3d018)
)
(fp_text value "LED" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aebe3f6c-ac1a-4f22-862e-cef7e279e88f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 3719d37f-4084-4748-ae7f-9ac57e569c46)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 41e29125-3982-4e90-b4b0-3fa6d986f9a2))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp e35fff98-26fc-49ca-bc60-092655f6b389))
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp fdc9757c-8cc0-4467-a6a7-8245c53f484f))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 011b5f52-5e34-491b-90f8-392fd9c9d3bd))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0d561aab-ce1b-4277-abb1-4cd87c0803bf))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 48cf3205-cb0b-4438-948a-518177125b6a))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7f8abd26-2b4e-470c-9b68-91bfb641334d))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 1fd67e94-478a-42aa-98c0-8506f4a11647))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 93b50207-44eb-493d-ba51-19ec9851311e))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 9537bc39-0605-4a71-969b-71705fe6881f))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp a2a82981-7014-4bd1-a27c-400a7378aac8))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp bea79351-6cfa-4656-aaab-ca46daa84725))
(pad "1" smd roundrect locked (at -0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "Net-(D4-Pad1)") (pinfunction "K") (pintype "passive") (tstamp d69fc1d1-87da-4137-b5ad-0f643e97d51c))
(pad "2" smd roundrect locked (at 0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pinfunction "A") (pintype "passive") (tstamp a191cea9-a871-49c1-96ce-d5d96c2d47ba))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Fuse:Fuse_1206_3216Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 5b1f5ccb-5339-47f7-9478-d06584452bd8)
(at 48.1 73.9)
(descr "Fuse SMD 1206 (3216 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 "fuse")
(property "Sheetfile" "esp_programmer.kicad_sch")
(property "Sheetname" "")
(path "/72981417-8c52-40b6-916e-adfc6836474f")
(attr smd)
(fp_text reference "F1" (at -0.1 0.1) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 63eb5eaa-7dea-4d73-90f8-0156417615b7)
)
(fp_text value "500mA" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 74a0e6c8-5598-41c4-9332-e861bf465626)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp a874dde0-c7df-4cc2-94e1-814455c02d54)
)
(fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 280d4825-9870-4ac6-a66c-1310dafb9763))
(fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer "F.SilkS") (width 0.12) (tstamp 89844f59-3dcb-4cfa-bcb4-2ba76719f754))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 0af6b087-c71a-4339-a1f9-c7c820d650d6))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 327baca9-8cb7-4cd1-a9aa-ba8623b28426))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 5ce51038-a64e-4461-97cf-f3cdc7d7eb7b))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp ce4623c4-e238-4ee4-ad06-18ff1181d462))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 3a538bf3-f938-489e-9100-254792ad0e2b))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 94d7d5e7-0b34-48e9-9930-6906860d3bb9))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp cce50990-0975-409d-8772-1c5359417578))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp f485e1b0-3fa9-4554-bc29-417b197d55ed))
(pad "1" smd roundrect locked (at -1.4 0) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 23 "Net-(F1-Pad1)") (pintype "passive") (tstamp 3295d54b-9068-466d-941b-a9bdba0aaa6b))
(pad "2" smd roundrect locked (at 1.4 0) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 36 "+5V") (pintype "passive") (tstamp 6cf1aa97-069e-49f7-903e-a82ace799eed))
(model "${KICAD6_3DMODEL_DIR}/Fuse.3dshapes/Fuse_1206_3216Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 60b6c17c-06ef-4ad6-ab3b-9e7aba8bb6e2)
(at 47.7 82.4)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "esp_programmer.kicad_sch")
(property "Sheetname" "")
(path "/45d3cdea-e3fd-4e81-82a7-d0f3b8823d09")
(attr smd)
(fp_text reference "R2" (at -0.025 0.05) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4b32400a-1fce-409c-a44c-4b8840fea1ca)
)
(fp_text value "5.1K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 516e411f-a5ef-4426-b2e4-3f7db8a34bd3)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 7195c1fc-be4a-4b60-b993-e5a9c401926a)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 8211cf68-763e-4ab6-89aa-fce2a1974f39))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp d254fdbe-7d55-4dbe-b035-b6e6e9eb6719))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 44294f62-81c2-40b6-8beb-d57b47e15c15))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 44622ca8-3dc4-47be-ad6c-d2d974b26887))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp dd16ed2b-440d-4fb8-9a6d-dbf35300b799))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ecd1dc20-ff90-42f8-8920-e2065706f81f))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 1b6c2275-f7bd-4e9e-b156-8b8d83981371))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 51e56075-efb6-4c44-be1c-05a663be736d))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 70c03637-4382-4537-a9ec-115b0cca7c11))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 77016e94-aad8-4548-a108-e5ec65660f83))
(pad "1" smd roundrect locked (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "Net-(J2-PadB5)") (pintype "passive") (tstamp 506e70ed-d20a-4fde-b202-a06cf74b0ad2))
(pad "2" smd roundrect locked (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 91a6cf26-142c-4782-8e32-9b73df94b9ed))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 6106d646-c293-447b-ac9c-a5c63017114e)
(at 58.6 75 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "esp_programmer.kicad_sch")
(property "Sheetname" "")
(path "/4976c6a2-8db2-4773-b34e-b6b1f366dec5")
(attr smd)
(fp_text reference "C4" (at 0 -0.1 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ce574daf-85a0-4683-8298-9d2b7c71e9ab)
)
(fp_text value "10u" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c33987ee-a153-412a-8370-20eea7790b32)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 14f827a2-279b-43cc-a0ed-27f01c1cea01)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 58dfe78f-2b5e-4a5b-b497-a79cfd35b603))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp e833cc8d-63df-4b5a-8ae6-74dfb68fc902))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7af2c131-ed72-4e5e-8546-a777d43a30bd))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 909a1508-a23c-4291-a14f-bc418d2ef6d2))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 96f2cf2b-39c9-4be6-999d-74dd859613bf))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f665b75b-32fb-4b08-8c65-0f371d1c7ec6))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 4939f565-2871-4377-8e10-859c8eb31272))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 5fb14f4d-3ada-410b-bff7-216552399832))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 9ed57161-0189-49e8-80f2-ab2b3a0ded28))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp a3656c2a-6968-4033-8d2d-756e4300b91a))
(pad "1" smd roundrect locked (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pintype "passive") (tstamp 40026dcb-176b-44fe-a946-50d1b230cd70))
(pad "2" smd roundrect locked (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 5e48ee2b-1db8-4d7c-8d3a-29ab5702b66b))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-666" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 666fab82-4f47-41a8-b9b0-7e753df29ecd)
(at 48.3 79 180)
(descr "SOT666")
(tags "SOT-666")
(property "Sheetfile" "esp_programmer.kicad_sch")
(property "Sheetname" "")
(path "/d79c503b-d091-48a6-b7f7-5be2ffa4cbc7")
(attr smd)
(fp_text reference "U3" (at 0 -1.75) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d02aaff7-b3e6-425b-a4fe-e2e53df0c8c3)
)
(fp_text value "USBLC6-2P6" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8cda3938-86cc-4d83-9138-d5fbb4c8df4a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 1b9b9f62-c710-4319-87fb-3e217018fbc7)
)
(fp_line (start -0.8 0.9) (end 0.8 0.9) (layer "F.SilkS") (width 0.12) (tstamp 36ea4bce-6f09-420d-a694-954ea2e40ffa))
(fp_line (start 0.8 -0.9) (end -1.1 -0.9) (layer "F.SilkS") (width 0.12) (tstamp 83362d94-58cc-40dc-97a5-3c8686d859f8))
(fp_line (start -1.5 -1.1) (end 1.5 -1.1) (layer "F.CrtYd") (width 0.05) (tstamp 4ee427e2-59b3-4e9b-a110-53c7bb4d11c5))
(fp_line (start -1.5 1.1) (end 1.5 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 7e2a9cfa-85a3-48e5-9302-2c9a540c692c))
(fp_line (start 1.5 1.1) (end 1.5 -1.1) (layer "F.CrtYd") (width 0.05) (tstamp 80c9f690-e1ad-4fc7-abdf-ff5b9cb68373))
(fp_line (start -1.5 -1.1) (end -1.5 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 90223311-9f93-4575-bc03-ee196f15878c))
(fp_line (start -0.65 -0.53) (end -0.33 -0.85) (layer "F.Fab") (width 0.1) (tstamp 1a67f637-097a-4f50-9906-3b40fa14544c))
(fp_line (start 0.65 -0.85) (end 0.65 0.85) (layer "F.Fab") (width 0.1) (tstamp 75b803f2-5cb1-48f9-9ac4-4e168a0cffc7))
(fp_line (start 0.65 -0.85) (end -0.33 -0.85) (layer "F.Fab") (width 0.1) (tstamp a24dfa18-9254-4ad4-b288-61d897b5b385))
(fp_line (start -0.65 -0.53) (end -0.65 0.85) (layer "F.Fab") (width 0.1) (tstamp c5adf6cb-6d3c-411d-9396-d1166901a915))
(fp_line (start 0.65 0.85) (end -0.65 0.85) (layer "F.Fab") (width 0.1) (tstamp e187eb64-358d-45f1-8566-031b50135fa7))
(pad "1" smd rect locked (at -0.85 -0.5375 180) (size 0.5 0.375) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "/D+") (pinfunction "I/O1") (pintype "passive") (tstamp 781dc9bc-c87e-42e6-9ee0-2b36d114fc66))
(pad "2" smd rect locked (at -0.925 0 180) (size 0.65 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp b6f8afe1-b25f-4877-b319-69a14da637ef))
(pad "3" smd rect locked (at -0.85 0.5375 180) (size 0.5 0.375) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "/D-") (pinfunction "I/O2") (pintype "passive") (tstamp 01c090ee-2039-4e40-aa1d-52b4c17b6eb4))
(pad "4" smd rect locked (at 0.85 0.5375 180) (size 0.5 0.375) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "/CONN_D-") (pinfunction "I/O2") (pintype "passive") (tstamp dcc9f120-c941-43d5-984f-986de6f85756))
(pad "5" smd rect locked (at 0.925 0 180) (size 0.65 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 36 "+5V") (pinfunction "VBUS") (pintype "passive") (tstamp 86047f19-bc4e-47ad-956c-e13923b50b63))
(pad "6" smd rect locked (at 0.85 -0.5375 180) (size 0.5 0.375) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "/CONN_D+") (pinfunction "I/O1") (pintype "passive") (tstamp 678665c9-5c84-4f8d-92d6-a8d105f692bd))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-666.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 747b961b-3600-4c0c-9eee-da6d4de71b9b)
(at 62 82.2 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "esp_programmer.kicad_sch")
(property "Sheetname" "")
(path "/edf13f8f-6f0e-4174-bf19-7c3c38421f61")
(attr smd)
(fp_text reference "R7" (at 0 -0.1) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e358ff9f-6e89-4e31-ae58-e8437537cf8b)
)
(fp_text value "10k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e8ebd52-67d5-4dac-af3b-5e218ca549c4)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp ef83c0ee-db6f-4284-a389-a6b4c52e9a75)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 680c4fac-7dad-4995-b5d5-c874ddf74097))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp a525e2e9-dada-4972-9d29-b1a5ada6c116))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2c8815c2-324c-44d9-834d-ccb0edcc6a50))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 702ad929-dddb-4a83-a9b1-286383e48200))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9c476e9d-7a1b-4ece-9c32-c9e8d76450d9))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp be741b55-612e-4c08-a3c0-96d8089f205d))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 3d4958a7-852d-4971-9594-3cfd4d577165))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 7d18bf8d-0993-43f8-bcef-5d7bdc362c03))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 8380148d-c1d3-4879-8be9-9afdb99118a3))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp a5075734-0dfc-4646-b7bf-4cf3557878bb))
(pad "1" smd roundrect locked (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "Net-(Q2-Pad1)") (pintype "passive") (tstamp 7547b549-84c3-43d1-a488-ada6fe79edaf))
(pad "2" smd roundrect locked (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "/RTS") (pintype "passive") (tstamp c71ec96e-e0ab-4454-848b-085d0af3b2c8))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 7c0aa6f5-c2f3-4f33-b398-7fd9bbb4961b)
(at 57.3 84.8 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "esp_programmer.kicad_sch")
(property "Sheetname" "")
(path "/ecb7cf3e-2961-42d2-ad68-a2e2258b0e8d")
(attr smd)
(fp_text reference "R5" (at 0 0.1 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 372c8d1e-b3bd-4d4e-ba32-d080ddf4d607)
)
(fp_text value "1k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4768145d-fa31-4bbc-97ab-02760c6591d9)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 8e52cf61-128c-4722-a34c-f26ab38d131c)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 7c2b6104-691f-4c0e-9851-45782724a0c5))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp e452b902-cb38-4bc9-8973-b1415574aa8a))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 21e7dbb3-d3aa-4708-8ea2-681c5e2f0428))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3908448a-9f1b-4860-baf0-a71843390377))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a74caa06-c708-4881-b728-94dee6fd079b))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp dcdde042-4c6a-477c-906e-bcf5fd87828e))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 18fca2b4-5f6c-45f4-88b9-9228c684c26c))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 2e8caa2a-addc-4025-8ed5-79ac641d6844))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 44f8d320-bbe0-493c-8b85-7e401b63f3d5))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 8c495b94-254e-4955-8b18-826dddc1e113))
(pad "1" smd roundrect locked (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pintype "passive") (tstamp 243c3949-0939-4dbe-a078-90be13548692))
(pad "2" smd roundrect locked (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "Net-(R5-Pad2)") (pintype "passive") (tstamp 482a3d55-cc57-438b-a322-df718b34baa2))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-323_SC-70" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 8cab0bca-d403-4f40-8cd6-616127a5bf17)
(at 61.975 84.8 -90)
(descr "SOT-323, SC-70")
(tags "SOT-323 SC-70")
(property "Sheetfile" "esp_programmer.kicad_sch")
(property "Sheetname" "")
(path "/ec4b6d24-221e-4af9-9c08-33ee2f3df325")
(attr smd)
(fp_text reference "Q1" (at 0.15 -0.05 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 48cf80d3-aa55-4c09-967b-99efc76918d5)
)
(fp_text value "BC847W" (at -0.05 2.05 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a9daff76-55b5-4193-8ee0-225261bf4510)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 4a6a4b1e-414c-41d1-8028-bac381fd2d8f)
)
(fp_line (start 0.73 -1.16) (end -1.3 -1.16) (layer "F.SilkS") (width 0.12) (tstamp 40037a2a-1853-4d0a-ba97-3d4d2895716b))
(fp_line (start 0.73 -1.16) (end 0.73 -0.5) (layer "F.SilkS") (width 0.12) (tstamp 44b670d8-bf26-4b15-99f9-a0a5e72af83c))
(fp_line (start -0.68 1.16) (end 0.73 1.16) (layer "F.SilkS") (width 0.12) (tstamp 6c710f25-c5a9-4bac-8efb-61513098f1b2))
(fp_line (start 0.73 0.5) (end 0.73 1.16) (layer "F.SilkS") (width 0.12) (tstamp eafeb0a0-3fd7-42e9-b59c-83708f2356a5))
(fp_line (start 1.7 1.3) (end -1.7 1.3) (layer "F.CrtYd") (width 0.05) (tstamp 386eb294-3d97-48c6-8aec-755eaae047eb))
(fp_line (start 1.7 -1.3) (end 1.7 1.3) (layer "F.CrtYd") (width 0.05) (tstamp 51a73e7d-fe2e-4c12-b65b-a33c7b44aaed))
(fp_line (start -1.7 1.3) (end -1.7 -1.3) (layer "F.CrtYd") (width 0.05) (tstamp 6045e105-a868-4aa6-8441-76f3b8d7764b))
(fp_line (start -1.7 -1.3) (end 1.7 -1.3) (layer "F.CrtYd") (width 0.05) (tstamp d972abe2-0daf-4536-ba46-ea7421318a8d))
(fp_line (start 0.67 1.1) (end -0.68 1.1) (layer "F.Fab") (width 0.1) (tstamp 1173026b-b0a9-40bd-8cb7-fe0653cc36e9))
(fp_line (start -0.18 -1.1) (end -0.68 -0.6) (layer "F.Fab") (width 0.1) (tstamp 15069654-7baf-4de0-b956-d5e26da14699))
(fp_line (start -0.68 -0.6) (end -0.68 1.1) (layer "F.Fab") (width 0.1) (tstamp 72a064a9-a94a-40a7-bf55-1aab99afa897))
(fp_line (start 0.67 -1.1) (end 0.67 1.1) (layer "F.Fab") (width 0.1) (tstamp a052f6a9-23f9-4e8b-9e0c-01d3e66b83c6))
(fp_line (start 0.67 -1.1) (end -0.18 -1.1) (layer "F.Fab") (width 0.1) (tstamp ec255873-2bb3-45f0-827a-ad4baeac787a))
(pad "1" smd rect locked (at -1 -0.65 180) (size 0.45 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "Net-(Q1-Pad1)") (pinfunction "B") (pintype "input") (tstamp 70fa31e3-1e43-40cc-b143-a7900a114369))
(pad "2" smd rect locked (at -1 0.65 180) (size 0.45 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "/RTS") (pinfunction "E") (pintype "passive") (tstamp 3963198a-ca5c-48d3-8f15-3c3f1f16845e))
(pad "3" smd rect locked (at 1 0 180) (size 0.45 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "/EN") (pinfunction "C") (pintype "passive") (tstamp 0229f54c-19ca-42ad-8058-587badee862d))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-323_SC-70.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23-5" (layer "F.Cu")
(tedit 5F6F9B37) (tstamp acb63881-477d-4573-9294-a0fba6f05106)
(at 55.6 75.1)
(descr "SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "esp_programmer.kicad_sch")
(property "Sheetname" "")
(path "/b1cb93ea-3b01-4e73-ba1c-9683cfa7af9d")
(attr smd)
(fp_text reference "U2" (at -0.0625 -0.05) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 39482b28-5022-4635-afc8-e101918d1c9e)
)
(fp_text value "AP2112K-3.3" (at 0 2.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9cb40288-75c5-4a96-afac-382257264862)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 526a667f-bb1b-4b25-9e9f-e819c46d2f59)
)
(fp_line (start 0 -1.56) (end 0.8 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 95800997-3888-4ff7-90cc-c552c9643cbb))
(fp_line (start 0 -1.56) (end -1.8 -1.56) (layer "F.SilkS") (width 0.12) (tstamp e4c0463d-30f0-4de9-98ae-c446dcda208a))
(fp_line (start 0 1.56) (end 0.8 1.56) (layer "F.SilkS") (width 0.12) (tstamp f2e49687-966a-4925-94de-808045294181))
(fp_line (start 0 1.56) (end -0.8 1.56) (layer "F.SilkS") (width 0.12) (tstamp f6703b12-2937-43fe-b082-b625b78bc6c8))
(fp_line (start 2.05 1.7) (end 2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 6b132ea1-bafa-45c7-b37f-b94718616f44))
(fp_line (start -2.05 1.7) (end 2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp a27830e5-c07d-4e4c-81eb-76bfcefa83f4))
(fp_line (start 2.05 -1.7) (end -2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp ded33172-2edb-4cd9-bca1-b8ef75bca9ff))
(fp_line (start -2.05 -1.7) (end -2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp f4ad151e-f219-41e5-8b57-05eee22abeb5))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45) (layer "F.Fab") (width 0.1) (tstamp 27abca78-1ad0-40b2-930d-4cfc8a209ec2))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45) (layer "F.Fab") (width 0.1) (tstamp 51a4e613-668e-4980-acd0-eef45e3f15c8))
(fp_line (start 0.8 1.45) (end -0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp 641a7c3d-307c-455b-8685-4cd8f4d57dfa))
(fp_line (start -0.8 1.45) (end -0.8 -1.05) (layer "F.Fab") (width 0.1) (tstamp a1c5cb84-aaf6-456b-b06f-86fe876e4375))
(fp_line (start 0.8 -1.45) (end 0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp ac7d4e4f-f475-4502-8108-4a8b3a350a76))
(pad "1" smd roundrect locked (at -1.1375 -0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "+5V") (pinfunction "VIN") (pintype "power_in") (tstamp 98dfc1b1-5077-4ebc-82a8-00bbb6bc19bf))
(pad "2" smd roundrect locked (at -1.1375 0) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp eb99d128-4c4d-4357-addf-1243751297e5))
(pad "3" smd roundrect locked (at -1.1375 0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "+5V") (pinfunction "EN") (pintype "input") (tstamp f77bce42-45a0-4bc8-bb0b-03c51ac35213))
(pad "4" smd roundrect locked (at 1.1375 0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "unconnected-(U2-Pad4)") (pinfunction "NC") (pintype "no_connect") (tstamp d622ef52-1704-4995-945a-0bddacb43622))
(pad "5" smd roundrect locked (at 1.1375 -0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pinfunction "VOUT") (pintype "power_out") (tstamp 7dd7c0a7-4ab4-4933-82b9-3c0638c88bd0))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp add08129-32b6-404f-b126-60e4ef7ae458)
(at 48 75.9)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "esp_programmer.kicad_sch")
(property "Sheetname" "")
(path "/10820ec5-2730-493a-ac4b-12df3d2c5a93")
(attr smd)
(fp_text reference "R1" (at -0.025 0.1) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp edc14e8d-3ea5-4319-b579-a78d57b1d960)
)
(fp_text value "5.1K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e97e1519-48eb-4904-97d2-e08249f8204e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 7182411c-3615-454c-9f95-28a93763e9d2)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 3b187db3-3625-4edf-aec7-8eddf7d51a10))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 662c835a-54a8-4161-af8a-d7c6f059b79a))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1a8b684c-a9ff-4036-b733-c180cfccdc7d))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 65e5971a-1251-46b2-bc26-bbd502f660d9))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 941d8621-8346-47b3-a59d-632f44c86768))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e9a47840-8d93-4999-850a-42d0091a95bf))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 954ff0ac-e2d9-46a0-a246-4087fb77e3ea))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp c9164615-303f-4675-aeae-bce447360b7f))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp c956406c-65fb-4a49-80c1-c71b621f072b))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e9a7e9d5-f49a-42be-82b0-83371da6598c))
(pad "1" smd roundrect locked (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "Net-(J2-PadA5)") (pintype "passive") (tstamp e0539002-f342-45d6-af34-80ef187fe0cc))
(pad "2" smd roundrect locked (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp cd7769ca-96c4-4628-9ef6-cffdf4c44031))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp b0e87f60-88dc-4cf8-88bf-cdae0433f2aa)
(at 52.6 75.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 "Sheetfile" "esp_programmer.kicad_sch")
(property "Sheetname" "")
(path "/33621352-ec86-4700-8763-da2b91e91570")
(attr smd)
(fp_text reference "C3" (at 0 0.05 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6209f72f-772b-4b3d-9b39-303a65029d87)
)
(fp_text value "10u" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fec78bfa-6bb6-4e71-aaeb-913208d669c3)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp cd57274a-c760-4af4-bf18-7a6313e91a2b)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 51253fda-ef0d-4cae-b778-ed085fb53af8))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp efe1bece-2ab3-4b8d-ae4d-776c4ebbceb6))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 39fa80c0-4439-4207-9e16-44836fe17359))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5b25da72-58d9-4469-b647-bcd983685da0))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp adcd09d3-52bd-42a6-a2cf-127f9fccc886))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ddd66ef0-3a06-48aa-a50a-48f7b54f5679))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 45aac57c-c88a-4e48-a46e-a59654257a99))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6dbbfa0c-0daa-4283-b469-ae4441799561))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp bad5b85e-865f-4138-83e2-c0873cb25749))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp f9a59d1c-9cbf-4274-8183-45dedd55c4c9))
(pad "1" smd roundrect locked (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "+5V") (pintype "passive") (tstamp dbb6a301-77f7-400e-b7dd-9d790559611e))
(pad "2" smd roundrect locked (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp d8d01920-634e-4c1e-9a0f-ad07841b7cf3))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp b21647c5-029e-4a45-858c-46f29808f414)
(at 65.075 82.2)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "esp_programmer.kicad_sch")
(property "Sheetname" "")
(path "/af0e64a9-4ca8-4246-80c5-4619dc274365")
(attr smd)
(fp_text reference "R6" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7710c0de-c735-4509-84ac-ebcbae22a058)
)
(fp_text value "10k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c3c974a7-28ee-441f-8318-a83a257ccf12)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 0e59b69c-e443-458f-9b2d-a46aa341a830)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 5f9ef928-9e8e-4985-b479-c2788802a687))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 693aecdb-cb51-4843-97ed-3f417baec303))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 39ca7ca0-ef1e-454f-a027-4673a84de6be))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp bd752e1d-4dc3-41a2-a4a7-75632e68e4ac))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp dab41ded-746c-4eab-b888-0d47988cd87b))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ea3a3795-a98d-4162-8e62-ad9eb545b8a5))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 0b1ec3b2-6026-452c-b8bf-3313275c5d63))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 1ddf2d16-9610-4ed2-bd51-f8c298609ce5))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 765cdad4-c26f-43c1-a98c-65eda38ce29f))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp a1656aa2-4381-46a2-95ff-858cdfae77ac))
(pad "1" smd roundrect locked (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "Net-(Q1-Pad1)") (pintype "passive") (tstamp 4ef7d43f-36f9-46a2-b41b-3b7a0a859477))
(pad "2" smd roundrect locked (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "/DTR") (pintype "passive") (tstamp 62de239c-082b-466e-997a-8d09beaa367c))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp b31db390-fc3f-4a23-b68d-065edb8cae4e)
(at 58.2 82)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "esp_programmer.kicad_sch")
(property "Sheetname" "")
(path "/52238e51-a8b8-414b-b63c-e4d8d196947d")
(attr smd)
(fp_text reference "R9" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f322e226-38bd-433d-8cf7-e682f5182aea)
)
(fp_text value "1k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5b3dc2d2-44db-4474-b393-cf199207e43b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 188b729b-c082-4438-a3f7-6d33537c4e99)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 51797ab9-787c-410b-beb3-71e49d669a37))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp b0fe0dd8-5bf4-45c7-a1b4-6d19793841a1))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3c1aee5f-8d3e-432e-9d40-5ff7b04aa564))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 93c95fa3-db8d-43f8-b2d6-d666375305cc))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d73eaed1-d82e-40c4-be28-4255c0d0c1d0))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp eabb4ea0-a863-4fff-ab8c-224c6e16d0ea))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 1093f3ef-8741-4231-bd6e-0f2ce0468444))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 567172b6-3191-4075-8fc1-0856fe12b941))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 6caf6f62-1851-4473-8007-dfbfe973a2c7))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e400b4a7-9354-42dc-a9db-00623891901f))
(pad "1" smd roundrect locked (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "/RXT") (pintype "passive") (tstamp 8338daec-851c-4da5-ac80-13b620f756ed))
(pad "2" smd roundrect locked (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "Net-(D3-Pad1)") (pintype "passive") (tstamp f12ed119-52c8-429e-b339-2eb691aa37c5))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-323_SC-70" (layer "F.Cu")
(tedit 5A02FF57) (tstamp ba705e61-41bf-4d7e-b303-f933fafdae12)
(at 65.05 84.8 -90)
(descr "SOT-323, SC-70")
(tags "SOT-323 SC-70")
(property "Sheetfile" "esp_programmer.kicad_sch")
(property "Sheetname" "")
(path "/0cb38619-6c4b-499c-b436-3b1924cef5d5")
(attr smd)
(fp_text reference "Q2" (at 0.05 0) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9398fc2a-9145-4a57-a163-a708d89f2739)
)
(fp_text value "BC847W" (at -0.05 2.05 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f97f558-a2e1-4d51-a10d-337b0f2068d4)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 6d471cdd-e8ee-48ba-aa47-988049962a8a)
)
(fp_line (start 0.73 0.5) (end 0.73 1.16) (layer "F.SilkS") (width 0.12) (tstamp 40305d81-1ba2-452d-8a22-f70856506419))
(fp_line (start 0.73 -1.16) (end 0.73 -0.5) (layer "F.SilkS") (width 0.12) (tstamp 4b643896-177d-4ed1-baf7-363ffdbc7f69))
(fp_line (start -0.68 1.16) (end 0.73 1.16) (layer "F.SilkS") (width 0.12) (tstamp b9691d28-1d1b-448a-b9eb-b11a2682bd60))
(fp_line (start 0.73 -1.16) (end -1.3 -1.16) (layer "F.SilkS") (width 0.12) (tstamp bec9eb60-878e-4339-8112-7a52abc7f7f5))
(fp_line (start -1.7 1.3) (end -1.7 -1.3) (layer "F.CrtYd") (width 0.05) (tstamp 628eb1c4-fb02-406f-b687-8122647ce6c5))
(fp_line (start 1.7 -1.3) (end 1.7 1.3) (layer "F.CrtYd") (width 0.05) (tstamp 64f7c1f8-a297-4594-9c48-08b2800b1a84))
(fp_line (start 1.7 1.3) (end -1.7 1.3) (layer "F.CrtYd") (width 0.05) (tstamp c3b8ea96-45d2-43f8-830b-30f29f68f5da))
(fp_line (start -1.7 -1.3) (end 1.7 -1.3) (layer "F.CrtYd") (width 0.05) (tstamp d3acf39b-7b26-4143-b665-ef36b991d9a9))
(fp_line (start -0.18 -1.1) (end -0.68 -0.6) (layer "F.Fab") (width 0.1) (tstamp 85f4b6e6-327a-4c1e-9701-cb43d599ff7f))
(fp_line (start 0.67 -1.1) (end 0.67 1.1) (layer "F.Fab") (width 0.1) (tstamp 89b62526-f50d-4cb0-964b-a5c9609ce4a3))
(fp_line (start 0.67 1.1) (end -0.68 1.1) (layer "F.Fab") (width 0.1) (tstamp c634174e-a754-4b8d-aa38-3b74bdd06302))
(fp_line (start -0.68 -0.6) (end -0.68 1.1) (layer "F.Fab") (width 0.1) (tstamp d266af9d-fcc2-4e44-a63d-f02bffabfb93))
(fp_line (start 0.67 -1.1) (end -0.18 -1.1) (layer "F.Fab") (width 0.1) (tstamp dba24b99-3847-4097-8a18-6dfcb6d8b453))