-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathesp32_basic_led_controller.kicad_pcb
7056 lines (7026 loc) · 285 KB
/
esp32_basic_led_controller.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "ESP32 Basic LED Controller")
(date "2023-08-30")
(rev "v01 Rev1.0")
(comment 2 "https://spdx.org/licenses/CERN-OHL-S-2.0.html")
(comment 3 "License: CERN-OHL-S-2.0")
(comment 4 "Author: Brian Ramirez")
)
(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") (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") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "ENIG")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0.0508)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers/")
)
)
(net 0 "")
(net 1 "+12V")
(net 2 "GND")
(net 3 "+3.3V")
(net 4 "Net-(D1-A)")
(net 5 "/RESET")
(net 6 "Net-(J2-Pin_2)")
(net 7 "/TX")
(net 8 "Net-(Q1-G)")
(net 9 "/RX")
(net 10 "/GPIO8")
(net 11 "/GPIO2")
(net 12 "/GPIO9")
(net 13 "unconnected-(U2-NC-Pad4)")
(net 14 "/GPIO3")
(net 15 "unconnected-(U2-NC-Pad7)")
(net 16 "unconnected-(U2-NC-Pad9)")
(net 17 "unconnected-(U2-NC-Pad10)")
(net 18 "/GPIO0")
(net 19 "/GPIO1")
(net 20 "unconnected-(U2-NC-Pad15)")
(net 21 "/GPIO10")
(net 22 "unconnected-(U2-NC-Pad17)")
(net 23 "/GPIO4")
(net 24 "/GPIO5")
(net 25 "/GPIO6")
(net 26 "/GPIO7")
(net 27 "unconnected-(U2-NC-Pad24)")
(net 28 "unconnected-(U2-NC-Pad25)")
(net 29 "/D-")
(net 30 "/D+")
(net 31 "unconnected-(U2-NC-Pad28)")
(net 32 "unconnected-(U2-NC-Pad29)")
(net 33 "unconnected-(U2-NC-Pad32)")
(net 34 "unconnected-(U2-NC-Pad33)")
(net 35 "unconnected-(U2-NC-Pad34)")
(net 36 "unconnected-(U2-NC-Pad35)")
(footprint "Connector_PinSocket_1.27mm:PinSocket_1x04_P1.27mm_Vertical" (layer "F.Cu")
(tstamp 083810ee-59cd-4122-bd3b-74c903bec88f)
(at 120.396 98.298)
(descr "Through hole straight socket strip, 1x04, 1.27mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x04 1.27mm single row")
(property "Sheetfile" "esp32_basic_led_controller.kicad_sch")
(property "Sheetname" "")
(path "/31db66a9-18ad-4128-8cf0-3c2b29416b77")
(attr through_hole)
(fp_text reference "U3" (at 0 -2.135) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da4542e8-f038-4e49-b891-2977a4f3e44e)
)
(fp_text value "I2C_SENS_1" (at 0 5.945) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d9b90d05-2682-4d6f-a5bf-7265123203e5)
)
(fp_text user "${REFERENCE}" (at 0 1.905 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7f3a48dd-5ca6-405e-b548-787d60a7f951)
)
(fp_line (start -1.33 0.635) (end -1.33 4.505)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ace4369f-518d-4d8b-85d4-7e3c06aa2cd0))
(fp_line (start -1.33 0.635) (end -0.76 0.635)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6f35cd55-92e0-42e1-9cdf-0f83270eb8d2))
(fp_line (start -1.33 4.505) (end -0.30753 4.505)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp deb0f4e9-9285-4a2a-8512-aa4e9cdaf573))
(fp_line (start 0 -0.76) (end 1.33 -0.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3b84f7c1-721c-41e2-8701-cd9fc767bd9a))
(fp_line (start 0.30753 4.505) (end 1.33 4.505)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c3f56cea-2600-4345-8d57-7f26dc595a4a))
(fp_line (start 0.76 0.635) (end 1.33 0.635)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0e477a5d-563c-4418-97c0-c29dd50b4dd3))
(fp_line (start 1.33 -0.76) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f6b3d67-5bf3-4134-9530-38ded0b55c6e))
(fp_line (start 1.33 0.635) (end 1.33 4.505)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 593e9d59-131d-4ad6-9ad6-d8428dbcea1d))
(fp_line (start -1.8 -1.15) (end 1.75 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 403851a8-96db-4e8e-8bd9-7fb110dde524))
(fp_line (start -1.8 4.95) (end -1.8 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f10fb5e1-66c9-44ce-9212-5cf583deba22))
(fp_line (start 1.75 -1.15) (end 1.75 4.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 29da6ee0-0cd7-41ef-b5e8-a5903e9931bc))
(fp_line (start 1.75 4.95) (end -1.8 4.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5cb42fc9-a3c7-4ced-862e-456dfdfefdbe))
(fp_line (start -1.27 -0.635) (end 0.635 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 91540e0a-0278-49ed-8eff-e6fd6a203203))
(fp_line (start -1.27 4.445) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d384b521-c064-4650-a69f-200887e49721))
(fp_line (start 0.635 -0.635) (end 1.27 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2633be5a-cc14-4e61-b0d3-ee6425a8b0ba))
(fp_line (start 1.27 0) (end 1.27 4.445)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4d7de1ea-bef7-4d36-83e0-2df46fdd5235))
(fp_line (start 1.27 4.445) (end -1.27 4.445)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3d29a36a-43e0-4fd0-98ef-3d1255927900))
(pad "1" thru_hole rect (at 0 0) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 3 "+3.3V") (pinfunction "VIN") (pintype "power_in") (tstamp 93e7d3c4-f3b7-4cfc-adb2-b609b49e9fea))
(pad "2" thru_hole oval (at 0 1.27) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 89412404-bff8-4de7-bdde-015cd9eab924))
(pad "3" thru_hole oval (at 0 2.54) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 9 "/RX") (pinfunction "SCL") (pintype "bidirectional") (tstamp 03b8909d-78c4-4cdb-8aa5-ee735bf8a93e))
(pad "4" thru_hole oval (at 0 3.81) (size 1 1) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 7 "/TX") (pinfunction "SDA") (pintype "bidirectional") (tstamp 794ee373-b2e7-4893-83bf-9b26e0dc48d5))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_1.27mm.3dshapes/PinSocket_1x04_P1.27mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 117ad2e4-8961-4c83-9d60-5f6d5b9a1c34)
(at 119.3 95.275 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "esp32_basic_led_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/b278e808-af00-419c-9362-13c1280314c5")
(attr smd)
(fp_text reference "R5" (at -0.0175 -1.655 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d959766-8d14-4712-9772-39e8ba76b1be)
)
(fp_text value "5.1K" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 80e1fa41-912d-4882-9477-9693e08bd119)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp a02135cb-f136-420e-9b43-88717e18db1e)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12c2b3b7-1199-44ca-a6f2-cba6a2c36041))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7afa03b3-59f2-4d7e-9ff5-6e7c7dcc453a))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 49634c27-9ed3-4f36-86b7-d6e066c35fd7))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f30cf143-57c2-4367-9d74-6ce51ceca9f9))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 449bcf90-8b83-477f-a342-ec5ec708ce9e))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dcc3549f-6a04-4d38-93c1-30a23e8f507c))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 08336445-cc81-4371-aa5f-cb9877cfa377))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c73dbca6-65c2-42fa-b447-9eed203187db))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d99fc980-8577-4d75-a8a3-d4841e90775c))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0795848c-aa23-4210-8cb0-356811782800))
(pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/GPIO1") (pintype "passive") (tstamp 949655f9-999d-48d0-9351-e7f98c0786c2))
(pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(D1-A)") (pintype "passive") (tstamp 974e5103-49b3-4e5d-9fe9-8510b8340742))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 1a3195c4-82d8-4d21-bd57-6b70c510c84b)
(at 117 105.6 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "esp32_basic_led_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/82185d72-ff0e-4cb6-92c1-4562159bd857")
(attr smd)
(fp_text reference "C2" (at 2.9475 0 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e86b1f4a-3578-4336-af89-ba64f2e4c5b8)
)
(fp_text value "100nF" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8c939e4f-0113-4382-9635-d88446eaa877)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d01564a1-2a2e-4256-8fc7-8bf03749af30)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 20e58b4d-68ab-4bce-96e3-fa894becdd59))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ed164c35-455a-433f-beca-cdb5eb2192fb))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a8bab5e-5acd-4053-a078-160367d6d3e0))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d44a3d7a-e761-45b0-9de9-4944cd431af0))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 74b54187-6025-4d2a-bf2b-f52e6949708f))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1ac05563-c8c1-491c-9d43-cf4acce1c478))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ceea7617-9f41-480a-b070-1cdcfcac862b))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ee04166d-4d31-4201-b2f5-7b52fb39edc1))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 95170a65-f64a-4244-b75b-07cefd9cf94e))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9d510598-f4d6-45fa-8b4e-a68bf1f601d4))
(pad "1" smd roundrect (at -0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+12V") (pintype "passive") (tstamp 21b167c0-9c1d-40a2-a382-0b06973d3dbe))
(pad "2" smd roundrect (at 0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp d9cd2ff3-2bc8-412f-9b43-ef1eda3fd464))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 23345ade-d7cb-4a30-a1a8-c044a1cbce8e)
(at 117 110.8375 -90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "esp32_basic_led_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/d2e724b7-f4c7-4881-af23-93c4415bde23")
(attr smd)
(fp_text reference "C3" (at 0 1.782 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d2e7eed5-3d3c-4875-a840-e97fbc89a262)
)
(fp_text value "10uF" (at 0 1.68 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7cb352f4-0442-4b8c-9e21-619e697c64f1)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 9a9df5cc-e214-4419-b89d-3564297dea3a)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd59579e-637b-4557-8c7e-66efbc2edb8e))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5283b35-1c95-4b72-95d2-e9b697b516e3))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 65e5ffe4-9bd2-460e-beaa-690f2b1fe088))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c3d11f4b-33dd-4ed9-afb7-debee430773b))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 318f176b-a5e3-4242-a37f-ed76efda3aac))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a0c48544-1ce4-4097-a0bc-f705dd35296b))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c9f48ecf-12cf-4882-a6fc-f6b23cdfb74c))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f8c9995c-7ce3-40e7-9e44-ab266c58f3e0))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a3c060e5-afde-470a-9cc9-6ca6f9875609))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 733eb726-7e34-4481-8aad-f9b565a479b9))
(pad "1" smd roundrect (at -1.0375 0 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 3 "+3.3V") (pintype "passive") (tstamp 02c8e749-0bd2-432b-a7ff-d49fa155fc22))
(pad "2" smd roundrect (at 1.0375 0 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 2 "GND") (pintype "passive") (tstamp b7ce7c7c-e930-4885-bf93-08b8c29229ee))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 3487165c-bcd3-451e-969b-5a807e93261c)
(at 117.094 98.044 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "esp32_basic_led_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/32630858-3d5f-4b1a-badf-d545de04ec74")
(attr smd)
(fp_text reference "R4" (at -2.667 0 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e16070b3-7aa6-4361-8082-74f73f16e08c)
)
(fp_text value "4.7K" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp adb799af-5c98-4a1e-aa21-c9b1bedb364a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp f1503ca2-9182-4e61-b823-80901aad26c5)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7be63fcc-2c94-4f6e-a525-e35af98837a9))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fa6e099e-533f-405f-bec4-10b2dce37907))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 40f76ded-1dca-458d-8484-5cc1eaa308b5))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 78cff404-551b-4aaa-8103-f1619d3ebc96))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 476d60af-7c9a-4416-9cb5-28b83a026350))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ef017de3-5b04-4852-a3c2-606ef355da07))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 026a77f6-5bbc-4117-90a6-a1599b4f35aa))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bd4cdcd4-96a9-4072-be5c-f31c0185baf3))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9829fbfd-979e-48b4-8e09-f736b5cf22f0))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bd628109-2f54-4946-be00-5ff941973b3b))
(pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3.3V") (pintype "passive") (tstamp 9ecb96d4-ebbe-48ae-8c66-4562ebb5d49c))
(pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/RX") (pintype "passive") (tstamp e62d476a-2b44-4558-8ad3-3145eb73a48d))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 5aebeb21-f775-4cd0-8e19-9f8a24b50e4a)
(at 113.8 90.6 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "esp32_basic_led_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/3f3f90e1-234b-4a9b-ad67-f58d278e88fc")
(attr smd)
(fp_text reference "C1" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d54e6a7-52eb-438a-b2d5-512b0a47f89e)
)
(fp_text value "1μF" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bb963c18-8816-4e4b-8b30-b136be1f2b6e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp def8f0ff-ce6a-4c26-a8ef-dc0b11b531b5)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 655eb4d0-de31-48a5-ab18-083594bf1c36))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 310807da-2ae4-4e54-a7db-707f5340878b))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d0ce4e44-1738-4ff4-a8a7-cdf5e7f6b4bd))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 54f6bb7c-a314-4f6b-8ff2-7bc428086f5d))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ab375654-7851-4e4c-baa2-332197223a07))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 23cd0375-4587-4ee2-9d57-2800110850a8))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ecf9fcdb-0421-4cf4-9126-04349f1d3783))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 898dbb50-f6fd-4446-a639-00c350f2cd3e))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ad2a5cf1-bbcc-4e88-af61-82882863f2c9))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7ad30e19-6eee-47fa-98d3-1ecd7e0e77d4))
(pad "1" smd roundrect (at -0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/RESET") (pintype "passive") (tstamp 605ef845-03b0-4f61-8bb0-ec97b9d751b4))
(pad "2" smd roundrect (at 0.8625 0 90) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp b983982d-6aaf-4c49-8ddc-93e3e760231a))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 669ee3ab-237d-496d-835e-e08f16f18da1)
(at 128.4 98.8 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "esp32_basic_led_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/03898edc-e5a4-4982-9c58-3c8888a18006")
(attr smd)
(fp_text reference "R1" (at 0 1.778 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d5a6f136-9895-4749-bea3-aafef8aa05cc)
)
(fp_text value "220K" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd092d41-d322-495b-9a7d-a73818cbaae6)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 84043cf6-519c-4f54-b505-48ee097e2479)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4500eb9-6519-4a95-95ec-51e169b81a7b))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 158531f0-8462-4c64-bdef-92c9fa22d58f))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 42b636eb-892f-48c8-99c1-19ce71110939))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a1c12f37-3ff5-433b-8816-04fd5c496eef))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 86a3b137-6ca0-4d2c-8209-fb8ba5635ea3))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a8290db8-2a22-42c1-b28f-5ab35b8ca97b))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b66de414-5135-485c-b4c4-6381b81ec6ef))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 03fa9ede-44d1-4226-91e2-69004a4d4a20))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4d8bbf7b-8dfa-4393-a0b9-a6ba46c563b1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 34c4a355-ae4f-454e-a15b-6e3a1d64e740))
(pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/GPIO8") (pintype "passive") (tstamp 3add16cc-47d1-466c-bc3d-503e1a9ca3db))
(pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(Q1-G)") (pintype "passive") (tstamp dfbc7efa-e50d-4163-9e1f-01193854f1c4))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.2mm_M2_DIN965" (layer "F.Cu")
(tstamp 7ad245ee-984f-4407-a3fb-597a8a1949d4)
(at 139.7 80.01)
(descr "Mounting Hole 2.2mm, no annular, M2, DIN965")
(tags "mounting hole 2.2mm no annular m2 din965")
(property "Sheetfile" "esp32_basic_led_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/c40a2e29-d1b9-4549-8790-51de9a345899")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0 -2.9) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 11255503-b57f-4cbe-a56b-703d25aa8c19)
)
(fp_text value "MountingHole" (at 0 2.9) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa63a783-710a-48d2-9502-2c2975c66a44)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 83fff46d-748b-4b4d-8771-83676865d29b)
)
(fp_circle (center 0 0) (end 1.9 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 3f76fafc-07a3-47c1-8c23-4a1fee955f7c))
(fp_circle (center 0 0) (end 2.15 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp be9e4a2a-1ea8-4144-992f-e77fcbc41bc3))
(pad "" np_thru_hole circle (at 0 0) (size 2.2 2.2) (drill 2.2) (layers "*.Cu" "*.Mask") (tstamp 7b4ecbef-2663-41f7-aa85-fc8cb5e8148c))
)
(footprint "User:TSA343G00-250J2" (layer "F.Cu")
(tstamp 8076f78d-c8a1-4342-824c-8dee4157c8ce)
(at 110.75 101.15 90)
(property "Sheetfile" "esp32_basic_led_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Single Pole Single Throw (SPST) switch")
(property "ki_keywords" "switch lever")
(path "/e3e303cf-d2de-4e99-a528-9647074a05c6")
(attr smd)
(fp_text reference "SW1" (at 1.95 0.85 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 7d09f0c9-5914-453a-b0ad-5720cbb69812)
)
(fp_text value "TSA343G00-250J2" (at 1.95 0.936 90 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bacc16cb-3072-418d-afb0-936b41cf6b96)
)
(fp_text user "${REFERENCE}" (at 2.032 -3.81 90 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8240bd16-83b4-4cc0-b312-ea897c3e78ef)
)
(fp_line (start 0 -2.9) (end 0 0)
(stroke (width 0.1) (type default)) (layer "Dwgs.User") (tstamp 0c60d716-b024-413a-82d7-91417c148ea8))
(fp_line (start 0 0) (end 3.95 0)
(stroke (width 0.1) (type default)) (layer "Dwgs.User") (tstamp 82b4603e-80fb-486a-8db8-c731ca726085))
(fp_line (start 3.95 -2.9) (end 0 -2.9)
(stroke (width 0.1) (type default)) (layer "Dwgs.User") (tstamp a6832ddf-0b3a-434a-8e34-1437ea647558))
(fp_line (start 3.95 0) (end 3.95 -2.9)
(stroke (width 0.1) (type default)) (layer "Dwgs.User") (tstamp 4d4e6815-6b92-461c-9b9b-39e0ddccdea8))
(pad "1" smd roundrect (at -0.3 -1.45 180) (size 2 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "A") (pintype "passive") (thermal_bridge_angle 45) (tstamp f061a364-6f65-4145-acf4-7bac33aa6b68))
(pad "2" smd roundrect (at 4.2 -1.45 180) (size 2 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/RESET") (pinfunction "B") (pintype "passive") (thermal_bridge_angle 45) (tstamp 4a873dd6-7843-4667-9e43-9c69be188d36))
)
(footprint "Connector_BarrelJack:BarrelJack_Horizontal" (layer "F.Cu")
(tstamp 8715cb24-c2df-4d28-93a1-06c0a0745c6d)
(at 123.316 106.22 90)
(descr "DC Barrel Jack")
(tags "Power Jack")
(property "Sheetfile" "esp32_basic_led_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "DC Barrel Jack with an internal switch")
(property "ki_keywords" "DC power barrel jack connector")
(path "/52150ef9-0190-4027-91f4-cac4426737ca")
(attr through_hole)
(fp_text reference "J1" (at -8.45 5.75 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f4674c80-72f8-4241-9fb2-dc598dade2e6)
)
(fp_text value "Barrel_Jack_Switch_Pin3Ring" (at -6.2 -5.5 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b870a875-afa5-4f4d-9da7-e813442f122f)
)
(fp_text user "${REFERENCE}" (at -3 -2.95 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3475fe23-71bf-439a-a5f4-0e46b56da9bf)
)
(fp_line (start -13.8 -4.6) (end 0.9 -4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ba35003-3289-4dfe-a419-363a7daf5807))
(fp_line (start -13.8 4.6) (end -13.8 -4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 476cf0d3-5ec3-4891-9030-df5517ae3802))
(fp_line (start -5 4.6) (end -13.8 4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2af55aef-aa62-4dd7-bd0a-88ad5d7c6f9f))
(fp_line (start 0.05 -4.8) (end 1.1 -4.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 82e37bdf-ff95-4557-9ee0-23fc85d5a652))
(fp_line (start 0.9 -4.6) (end 0.9 -2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp de8e09f4-f6d5-4201-ae93-747045c3d5ad))
(fp_line (start 0.9 1.9) (end 0.9 4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c8879865-a977-4920-94da-ee075e44f0ba))
(fp_line (start 0.9 4.6) (end -1 4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0dfbaa64-9996-4739-a5c4-18a2a92bbb2f))
(fp_line (start 1.1 -3.75) (end 1.1 -4.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b27f63f7-27ba-43c3-9639-b476fe3c1ece))
(fp_line (start -14 4.75) (end -14 -4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1e58e9c0-37ad-4e9e-bbed-4d9f327e3036))
(fp_line (start -5 4.75) (end -14 4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 06f29f77-9026-4e10-8bcb-9f5ff44d5eb7))
(fp_line (start -5 6.75) (end -5 4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 21d6d1f7-424e-4477-9157-1b1325b8d052))
(fp_line (start -1 4.75) (end -1 6.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 27cc3f34-feec-4e36-b246-bbf892a568e7))
(fp_line (start -1 6.75) (end -5 6.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a28738c4-8f04-4fec-aecc-69b7ac549258))
(fp_line (start 1 -4.75) (end -14 -4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83d00aa0-5967-4ea6-8c1e-51be2ba1073a))
(fp_line (start 1 -4.5) (end 1 -4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4c2f31f3-bf08-407b-9e29-c586614d3446))
(fp_line (start 1 -4.5) (end 1 -2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 780bdd19-b59b-4101-bd78-de9efc86e37b))
(fp_line (start 1 -2) (end 2 -2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 47898c3e-c40e-46ea-bd83-f358b3f02ce2))
(fp_line (start 1 2) (end 1 4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4ed56ada-d2c2-47d4-940a-a3547f8f7844))
(fp_line (start 1 4.75) (end -1 4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eeca0791-7921-40ef-95ca-2ec87d22184a))
(fp_line (start 2 -2) (end 2 2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 120fab4e-18b6-450d-b3ca-192073cf6a02))
(fp_line (start 2 2) (end 1 2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 678b0a93-6070-4049-9831-8d0e48b16335))
(fp_line (start -13.7 -4.5) (end -13.7 4.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9739fdf4-8190-485f-8d71-3cf078d3cff3))
(fp_line (start -13.7 4.5) (end 0.8 4.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0127a31f-e7fc-4bf6-9479-e662e8cbeadd))
(fp_line (start -10.2 -4.5) (end -10.2 4.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dd5b8ba5-b733-4952-bbae-444d91016486))
(fp_line (start -0.003213 -4.505425) (end 0.8 -3.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 491658a7-2f34-4c87-9bf4-f55357ebc2a0))
(fp_line (start 0 -4.5) (end -13.7 -4.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3508be69-dcfe-484d-b54d-97f4e7061435))
(fp_line (start 0.8 4.5) (end 0.8 -3.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b25077d1-b101-48cd-bba7-2e4199ac5c22))
(pad "1" thru_hole rect (at 0 0 90) (size 3.5 3.5) (drill oval 1 3) (layers "*.Cu" "*.Mask")
(net 1 "+12V") (pintype "passive") (tstamp 69a3f53e-d16d-46c3-aa41-19e2e54a2407))
(pad "2" thru_hole roundrect (at -6 0 90) (size 3 3.5) (drill oval 1 3) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 6be9fa6e-d167-421c-926d-22cff97c29ee))
(pad "3" thru_hole roundrect (at -3 4.7 90) (size 3.5 3.5) (drill oval 3 1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp a718b158-ee0e-4e14-88fd-9178b3262c49))
(model "${KICAD6_3DMODEL_DIR}/Connector_BarrelJack.3dshapes/BarrelJack_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.2mm_M2_DIN965" (layer "F.Cu")
(tstamp b65d11f1-761d-40dd-a687-105a2319c223)
(at 106.68 80.01)
(descr "Mounting Hole 2.2mm, no annular, M2, DIN965")
(tags "mounting hole 2.2mm no annular m2 din965")
(property "Sheetfile" "esp32_basic_led_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/fe95f281-5d41-4419-af42-0c407e78811b")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -2.9) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e6f2bae5-cb03-4df1-b487-e68642c33d21)
)
(fp_text value "MountingHole" (at 0 2.9) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8b454eb0-eb95-4a9d-bd95-53006003a751)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 78f9c68e-75c0-4e51-8f20-63bd8ee77b63)
)
(fp_circle (center 0 0) (end 1.9 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 1f2a42bb-3de9-4786-9c87-c201b9121b23))
(fp_circle (center 0 0) (end 2.15 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp ce4a7aa1-67c0-4a9c-a693-68f771d645b9))
(pad "" np_thru_hole circle (at 0 0) (size 2.2 2.2) (drill 2.2) (layers "*.Cu" "*.Mask") (tstamp e64b41aa-305c-4b09-89b9-0e919a1ac310))
)
(footprint "User:TSA343G00-250J2" (layer "F.Cu")
(tstamp b846b804-02ee-4c8a-9649-2c7056717967)
(at 136.25 85.45 -90)
(property "Sheetfile" "esp32_basic_led_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Single Pole Single Throw (SPST) switch")
(property "ki_keywords" "switch lever")
(path "/8cbc7095-e8d2-4035-bff7-e25c19f45a63")
(attr smd)
(fp_text reference "SW2" (at 0 -12.7 -90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 9d6c262e-e04f-49e0-8afa-56e971438acb)
)
(fp_text value "TSA343G00-250J2" (at 1.86 0.842 -90 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a2c56d7c-91c2-45ae-aad9-1c844ec967ea)
)
(fp_text user "${REFERENCE}" (at 1.86 -3.73 -90 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 68786fac-4832-41d2-9f45-98a84b09d1df)
)
(fp_line (start 0 -2.9) (end 0 0)
(stroke (width 0.1) (type default)) (layer "Dwgs.User") (tstamp aeb8cd5e-abf2-462f-b12b-261fd2b00567))
(fp_line (start 0 0) (end 3.95 0)
(stroke (width 0.1) (type default)) (layer "Dwgs.User") (tstamp 21136978-f189-4511-ad7a-42d79e428454))
(fp_line (start 3.95 -2.9) (end 0 -2.9)
(stroke (width 0.1) (type default)) (layer "Dwgs.User") (tstamp 95a734de-5e57-44a5-8397-fba520e35113))
(fp_line (start 3.95 0) (end 3.95 -2.9)
(stroke (width 0.1) (type default)) (layer "Dwgs.User") (tstamp 7d04f1fb-64e3-43b2-bf3b-18dc5010f37a))
(pad "1" smd roundrect (at -0.3 -1.45) (size 2 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "A") (pintype "passive") (thermal_bridge_angle 45) (tstamp 4784ea89-82a3-4187-bdc1-e68577c4a8f1))
(pad "2" smd roundrect (at 4.2 -1.45) (size 2 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/GPIO9") (pinfunction "B") (pintype "passive") (thermal_bridge_angle 45) (tstamp 2d01ce9f-f70b-410d-a3ed-155ef332fd9b))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_DIN965" (layer "F.Cu")
(tstamp b9a1e459-b502-4dea-9ff0-0087d85c93ca)
(at 139.7 116.84)
(descr "Mounting Hole 2.2mm, no annular, M2, DIN965")
(tags "mounting hole 2.2mm no annular m2 din965")
(property "Sheetfile" "esp32_basic_led_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/090c7d7c-2a83-4c2a-8772-f00670f1646c")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 0 -2.9) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c530a7db-86e0-42fb-9321-facde625dd67)
)
(fp_text value "MountingHole" (at 0 2.9) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 65db538c-3c76-452c-9ea4-4b4cec95a7de)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 07ede056-244a-46ba-a8fb-7adb89ea1a8f)
)
(fp_circle (center 0 0) (end 1.9 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp de022430-7fa5-471f-8086-157df3426b95))
(fp_circle (center 0 0) (end 2.15 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 0619dcbd-34bb-45a9-8e33-c02168bb9ed3))
(pad "" np_thru_hole circle (at 0 0) (size 2.2 2.2) (drill 2.2) (layers "*.Cu" "*.Mask") (tstamp 29b101b0-ed4f-4199-8665-7b008ff2d59b))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_DIN965" (layer "F.Cu")
(tstamp c18f916e-5f11-4fa7-bc1e-a403107d4cb5)
(at 106.68 116.84)
(descr "Mounting Hole 2.2mm, no annular, M2, DIN965")
(tags "mounting hole 2.2mm no annular m2 din965")
(property "Sheetfile" "esp32_basic_led_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/e419c804-43c8-434b-bfc4-ffa7e7b092a3")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at 0 -2.9) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f16ede6e-0781-4507-a5bb-5c18c81e9e75)
)
(fp_text value "MountingHole" (at 0 2.9) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 42a58e4a-b799-4169-9248-db796c1162ab)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fbdb5cc8-20be-447f-94c9-f3bffe9e057e)
)
(fp_circle (center 0 0) (end 1.9 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp d2f3da4f-54f2-4ef9-b321-b22a132f434a))
(fp_circle (center 0 0) (end 2.15 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 6289cafb-6cd0-4994-ab42-57c818d5d4ff))
(pad "" np_thru_hole circle (at 0 0) (size 2.2 2.2) (drill 2.2) (layers "*.Cu" "*.Mask") (tstamp eaa23e7b-c88a-4fd5-8d16-d6c2a061581e))
)
(footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (layer "F.Cu")
(tstamp c47197bf-16e2-4c33-8e2d-9e2661aa111e)
(at 109.65 108.8 180)
(descr "module CMS SOT223 4 pins")
(tags "CMS SOT")
(property "Sheetfile" "esp32_basic_led_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "800mA Fixed Low Drop Positive Voltage Regulator, Fixed Output 3.3V, SOT-223")
(property "ki_keywords" "REGULATOR LDO 3.3V")
(path "/f8dbd392-fce5-491b-8077-39682c8a3ad2")
(attr smd)
(fp_text reference "U1" (at 5.584 0.041 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 810dbde8-85c9-4135-b7ae-2d843d8fb1e3)
)
(fp_text value "LD1117S33TR_SOT223" (at 0 4.5) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d45007c7-032e-4b0a-b025-7cc4b09796d3)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 1b6a0d91-6063-4fa6-82ad-81f32a135312)
)
(fp_line (start -4.1 -3.41) (end 1.91 -3.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e1857b7-e593-40e7-a667-0433a3ce77d0))
(fp_line (start -1.85 3.41) (end 1.91 3.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6299bca0-9c67-4c5a-b4f4-c33e82c47720))
(fp_line (start 1.91 -3.41) (end 1.91 -2.15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 130af19f-35f5-47f8-89c6-9b7c5a0afb2d))
(fp_line (start 1.91 3.41) (end 1.91 2.15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ac39555c-3c63-408a-9226-b522b9188fa3))
(fp_line (start -4.4 -3.6) (end -4.4 3.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 98fa3761-3f33-49f9-8d27-cd05bca7ab3e))
(fp_line (start -4.4 3.6) (end 4.4 3.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 948e3994-e392-4f83-a8f1-ad63588e5547))
(fp_line (start 4.4 -3.6) (end -4.4 -3.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 81f0b6f3-83e7-4ffc-9181-ec248d663464))
(fp_line (start 4.4 3.6) (end 4.4 -3.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4bafa7af-61f2-4bc9-b986-c259a73d0d02))
(fp_line (start -1.85 -2.35) (end -1.85 3.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 75f02de2-c539-48bd-aa0b-0aa27d626096))
(fp_line (start -1.85 -2.35) (end -0.85 -3.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c51999b9-3ab6-49f4-93bf-6d210cd3a838))
(fp_line (start -1.85 3.35) (end 1.85 3.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 83be59d7-f670-4433-8462-cc2912c25338))
(fp_line (start -0.85 -3.35) (end 1.85 -3.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f2809c79-502c-48a2-b993-0335f8d84026))
(fp_line (start 1.85 -3.35) (end 1.85 3.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp db5cdd1d-41fa-41a2-9659-4ec3787f206f))
(pad "1" smd rect (at -3.15 -2.3 180) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 02f93507-8a40-42c3-a27f-908e3bd44996))
(pad "2" smd rect (at -3.15 0 180) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+3.3V") (pinfunction "VO") (pintype "power_out") (tstamp eb5eafff-5e62-4d0d-83a3-b92f70c17c3c))
(pad "2" smd rect (at 3.15 0 180) (size 2 3.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+3.3V") (pinfunction "VO") (pintype "power_out") (tstamp cafa4412-90b4-4257-9c7d-e2befc3c1bba))
(pad "3" smd rect (at -3.15 2.3 180) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+12V") (pinfunction "VI") (pintype "power_in") (tstamp 04817247-3a38-4afc-bbf5-9c4bfc7f61cb))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tstamp c9414a64-b4e1-46f7-b9ec-30e553e53d6d)
(at 117.094 101.6 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "esp32_basic_led_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/c0bbb4e7-5ebe-49bf-b7ad-4ff0b98c9a97")
(attr smd)
(fp_text reference "R3" (at 2.794 0 -270) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eb5aa1da-e9a1-4835-984d-5047ee830ef6)
)
(fp_text value "4.7K" (at 0 1.43 -270) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2bbb05da-8195-48d2-8091-f21848c49706)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "F.Fab") hide
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 0e7777f1-23c8-486c-bf3b-80555e181685)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8ab19c80-d088-4999-a3b1-8c36976e521c))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4ffb66b8-f397-479f-93b0-98f96338d340))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2eee8187-ac86-4488-bee1-69c692f5cd7f))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e58a5d0a-e7db-46d4-981c-2ee37f5f1291))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cc2476d9-0420-4c91-8fd4-46edeea5dcd3))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c9ed0b45-3ec9-4460-943a-c2bb8c92cf2a))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 308a77a5-a44a-4bb3-a645-4326ccd435fe))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c071ca13-6277-400b-905a-6e4fae4dc3d3))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 93524c99-9a45-4e62-85f5-740b828450f0))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aa9f4d1d-d426-4b94-9491-f21b912c093a))
(pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3.3V") (pintype "passive") (tstamp 910dbe4e-147e-40b9-86bf-47d9646caef9))
(pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/TX") (pintype "passive") (tstamp 5cfd3b4a-4878-4035-b787-02e3db96a4dd))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "PCM_Espressif:ESP32-C3-MINI-1" (layer "F.Cu")
(tstamp d1699fb4-992e-4a71-9a6e-bfa36389e647)
(at 122.86 84.75)
(descr "ESP32-C3-MINI-1: https://www.espressif.com/sites/default/files/documentation/esp32-c3-mini-1_datasheet_en.pdf")
(tags "ESP32-C3")
(property "Sheetfile" "esp32_basic_led_controller.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "ESP32-C3-MINI-1 family is an ultra-low-power MCU-based SoC solution that supports 2.4 GHz Wi-Fi and Bluetooth®Low Energy (Bluetooth LE).")
(property "ki_keywords" "esp32-c3")
(path "/e487e7a6-7e8b-4e5e-ae56-2864277bc63d")
(attr smd)
(fp_text reference "U2" (at 0 -9.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f74d9bbd-07c2-4175-bf73-834d8691f95f)
)
(fp_text value "ESP32-C3-MINI-1" (at 0 9.85) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a3a0bb75-b62b-4d11-a99e-98734b489864)
)
(fp_text user "Antenna Area" (at 0 -5.85) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7025cd8a-b108-4dfb-8352-ce16608acdb3)
)
(fp_text user "${REFERENCE}" (at 0 2.7) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 83e38b58-3d90-4d4e-82a1-8aecec116c2f)
)
(fp_line (start -6.8 7.7) (end -6.8 8.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 46c5964b-5c0f-4169-829d-d8989d160b46))
(fp_line (start -6.8 8.5) (end -6 8.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2d252dff-b87d-4511-83ec-6fdfad937745))
(fp_line (start -6.6 -8.3) (end 6.6 -8.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fb93f4d7-fae8-4ae1-b370-5a6d801b2d45))
(fp_line (start -6.6 -2.9) (end 6.6 -2.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9edf92cc-eea3-4413-97e4-d59980cff585))
(fp_line (start -6.6 8.3) (end -6.6 -8.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f4bffea5-1ae1-4288-9ddd-6eb70e5fa8c3))
(fp_line (start -5.925 -8.5) (end -6.775 -8.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 23c90862-e289-4a4d-bcb2-dc88930bddec))
(fp_line (start 6.05 -8.5) (end 6.8 -8.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bac878b8-f7d1-4ec9-adab-c5ed4f08bccc))
(fp_line (start 6.6 -8.3) (end 6.6 8.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 598e1ed7-964e-4c4f-8ab4-8d05a509f3ed))
(fp_line (start 6.6 8.3) (end -6.6 8.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 03ebd498-908c-4f49-8d4f-c02aacffdef7))
(fp_line (start 6.8 -8.5) (end 6.8 -7.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4e1b9c50-d6f4-4edc-8c03-0b0662d34a0f))
(fp_line (start 6.8 7.7) (end 6.8 8.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fa519fa7-599d-4c32-bde7-cc73d3272ba5))
(fp_line (start 6.8 8.5) (end 6 8.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e8ac9f3d-5968-4341-8d36-16d8cb605b9a))
(fp_line (start -6.8 -8.5) (end 6.8 -8.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f55b9ae-dede-4470-aa46-62760fb2b9f2))
(fp_line (start -6.8 8.5) (end -6.8 -8.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ca835a55-ae72-4621-a7dc-15df24c8b291))
(fp_line (start 6.8 -8.5) (end 6.8 8.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 643ca4e7-bd72-4e99-8fef-19b9b3f75028))
(fp_line (start 6.8 8.5) (end -6.8 8.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7f6b330e-e717-4b03-ae00-6cf094a08121))
(fp_line (start -6.6 8.3) (end -6.6 -8.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dd1b742d-f87e-439e-8b4e-0ed9d8921c6e))
(fp_line (start -6.6 8.3) (end 6.6 8.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a482b5ea-5ca8-44d1-ad8c-a3767fc26e5c))
(fp_line (start -5.8 -2.9) (end -6.6 -2.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 69ac1724-cd0e-44d1-a44c-2c5bb4d05317))
(fp_line (start 6.6 -8.3) (end -6.6 -8.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4cae55cb-9f50-44f4-b6b0-6236a2d5bbd3))
(fp_line (start 6.6 -2.9) (end -6.6 -2.9)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6f590fc6-72f3-48af-88c4-0931c053c105))
(fp_line (start 6.6 8.3) (end 6.6 -8.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a7dbc614-788b-4117-9b9d-675c39ccc936))