-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathESP32_Wled_hub.kicad_pcb
13540 lines (13520 loc) · 504 KB
/
ESP32_Wled_hub.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(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 "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(grid_origin 86.36 63.5)
(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 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "Vbus")
(net 2 "GND")
(net 3 "HV1")
(net 4 "HV2")
(net 5 "HV3")
(net 6 "HV4")
(net 7 "LV4")
(net 8 "LV3")
(net 9 "LV2")
(net 10 "LV1")
(net 11 "unconnected-(U2-Pad1)")
(net 12 "unconnected-(U2-Pad2)")
(net 13 "unconnected-(U2-Pad3)")
(net 14 "unconnected-(U2-Pad11)")
(net 15 "unconnected-(U2-Pad15)")
(net 16 "unconnected-(U2-Pad25)")
(net 17 "unconnected-(U2-Pad30)")
(net 18 "unconnected-(U2-Pad31)")
(net 19 "unconnected-(U2-Pad4)")
(net 20 "unconnected-(U2-Pad5)")
(net 21 "unconnected-(U2-Pad6)")
(net 22 "unconnected-(U2-Pad7)")
(net 23 "unconnected-(U2-Pad8)")
(net 24 "unconnected-(U2-Pad34)")
(net 25 "unconnected-(U2-Pad12)")
(net 26 "unconnected-(U2-Pad13)")
(net 27 "unconnected-(U2-Pad35)")
(net 28 "unconnected-(U2-Pad16)")
(net 29 "unconnected-(U2-Pad17)")
(net 30 "unconnected-(U2-Pad18)")
(net 31 "unconnected-(U2-Pad38)")
(net 32 "unconnected-(U2-Pad21)")
(net 33 "unconnected-(U2-Pad22)")
(net 34 "unconnected-(U2-Pad23)")
(net 35 "unconnected-(U2-Pad24)")
(net 36 "unconnected-(U2-Pad29)")
(net 37 "unconnected-(U2-Pad32)")
(net 38 "unconnected-(U2-Pad33)")
(net 39 "unconnected-(U2-Pad36)")
(net 40 "unconnected-(U2-Pad37)")
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-3-5.08_1x03_P5.08mm_Horizontal" (layer "F.Cu")
(tedit 5B294EBC) (tstamp 07ec87d0-9e20-484a-a38f-d10918ecfd55)
(at 104.145 42.875 180)
(descr "Terminal Block Phoenix MKDS-1,5-3-5.08, 3 pins, pitch 5.08mm, size 15.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MKDS-1,5-3-5.08 pitch 5.08mm size 15.2x9.8mm^2 drill 1.3mm pad 2.6mm")
(property "Sheetfile" "ESP32_Wled_hub.kicad_sch")
(property "Sheetname" "")
(path "/4775a040-77d6-4388-bda9-91565210c2b7")
(attr through_hole)
(fp_text reference "J5" (at 5.185 -3.525) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a194d1a-1282-4094-9dcc-620cb8f217b0)
)
(fp_text value "OUT 3" (at 5.08 5.66) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb7a5af0-8d51-414d-8e4c-5f9db1141b2f)
)
(fp_text user "${REFERENCE}" (at 5.08 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f5eefedd-0db6-4b1a-9794-8335a9efcb3e)
)
(fp_line (start -2.84 4.16) (end -2.84 4.9) (layer "F.SilkS") (width 0.12) (tstamp 02255283-2707-4e92-96ff-96f5779d9534))
(fp_line (start -2.6 -2.301) (end 12.76 -2.301) (layer "F.SilkS") (width 0.12) (tstamp 2822bca8-30aa-4ab2-8bfe-35bd6bca2a80))
(fp_line (start -2.6 4.66) (end 12.76 4.66) (layer "F.SilkS") (width 0.12) (tstamp 320090ba-4f6a-4f98-be3a-019d4a87b84a))
(fp_line (start 11.435 -1.069) (end 11.388 -1.023) (layer "F.SilkS") (width 0.12) (tstamp 3e92d65f-aa92-43fa-b45b-e0f93a36117e))
(fp_line (start 4.046 1.239) (end 4.011 1.274) (layer "F.SilkS") (width 0.12) (tstamp 4efbfedb-0d6a-488e-863f-1beaaa36ba93))
(fp_line (start -2.6 -5.261) (end 12.76 -5.261) (layer "F.SilkS") (width 0.12) (tstamp 5bb1372f-fe7c-4101-958b-6333cd082f96))
(fp_line (start 6.15 -1.275) (end 6.115 -1.239) (layer "F.SilkS") (width 0.12) (tstamp 5e23b4fa-a8aa-48ee-a08a-839ee7f48d6d))
(fp_line (start 11.23 -1.275) (end 11.195 -1.239) (layer "F.SilkS") (width 0.12) (tstamp 6bb9413a-58a0-42a6-9775-749104cedd2f))
(fp_line (start -2.84 4.9) (end -2.34 4.9) (layer "F.SilkS") (width 0.12) (tstamp 70f7c4f2-cb44-4b27-a2c8-ae5fbeceaa95))
(fp_line (start -2.6 4.1) (end 12.76 4.1) (layer "F.SilkS") (width 0.12) (tstamp 7345a5a6-65ff-44a1-addd-120a34bb25dc))
(fp_line (start 9.126 1.239) (end 9.091 1.274) (layer "F.SilkS") (width 0.12) (tstamp 7c7c618f-c3ca-41d0-b555-f6471bd6c0a9))
(fp_line (start 3.853 1.023) (end 3.806 1.069) (layer "F.SilkS") (width 0.12) (tstamp 8b92f201-07d8-4821-a7c1-053fe8198e60))
(fp_line (start 12.76 -5.261) (end 12.76 4.66) (layer "F.SilkS") (width 0.12) (tstamp c31fb822-2ed0-43a7-a405-1e3d0205cd17))
(fp_line (start -2.6 2.6) (end 12.76 2.6) (layer "F.SilkS") (width 0.12) (tstamp c6eee1a5-ce5b-4b65-a757-42b9a373c5f9))
(fp_line (start 8.933 1.023) (end 8.886 1.069) (layer "F.SilkS") (width 0.12) (tstamp da3e179c-c09f-419b-8a15-09fcdbadff32))
(fp_line (start -2.6 -5.261) (end -2.6 4.66) (layer "F.SilkS") (width 0.12) (tstamp eb9a0309-9ad7-454e-b1f6-0754790b2de6))
(fp_line (start 6.355 -1.069) (end 6.308 -1.023) (layer "F.SilkS") (width 0.12) (tstamp f47048df-2904-4c85-bea3-7bd8cc19d1c2))
(fp_arc (start 1.535427 -0.683042) (mid 1.680501 0.000524) (end 1.535 0.684) (layer "F.SilkS") (width 0.12) (tstamp 05499e26-93dd-42aa-90e2-fbaa7c4c234f))
(fp_arc (start 0.028805 1.680253) (mid -0.335551 1.646659) (end -0.684 1.535) (layer "F.SilkS") (width 0.12) (tstamp 50bd7bc6-2aea-4db8-83b6-a1bb3ebfc448))
(fp_arc (start 0.683318 1.534756) (mid 0.349292 1.643288) (end 0 1.68) (layer "F.SilkS") (width 0.12) (tstamp 5f147dbc-8839-4259-84a6-550f161d5db4))
(fp_arc (start -1.535427 0.683042) (mid -1.680501 -0.000524) (end -1.535 -0.684) (layer "F.SilkS") (width 0.12) (tstamp de164944-e0ff-4245-95cd-3a1fe8a54ea1))
(fp_arc (start -0.683042 -1.535427) (mid 0.000524 -1.680501) (end 0.684 -1.535) (layer "F.SilkS") (width 0.12) (tstamp f12d2856-5cdd-423a-969e-209ea0a827b0))
(fp_circle (center 5.08 0) (end 6.76 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 2c1b22e6-07d6-40b5-ba5a-538b240bceca))
(fp_circle (center 10.16 0) (end 11.84 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 3afd1f3a-79a1-4f2e-8317-5e77dc8ad7fc))
(fp_line (start 13.21 -5.71) (end -3.04 -5.71) (layer "F.CrtYd") (width 0.05) (tstamp 3487a00e-b4f8-4ca1-aade-63cba41672f2))
(fp_line (start -3.04 -5.71) (end -3.04 5.1) (layer "F.CrtYd") (width 0.05) (tstamp 4fdb0b3e-8025-4e8e-9fb5-a8e68093e6f0))
(fp_line (start -3.04 5.1) (end 13.21 5.1) (layer "F.CrtYd") (width 0.05) (tstamp 9cab9706-7505-4908-9c2c-bcf939504758))
(fp_line (start 13.21 5.1) (end 13.21 -5.71) (layer "F.CrtYd") (width 0.05) (tstamp f5825cc6-95a9-4e27-8336-4f8229fc1924))
(fp_line (start -2.54 -2.3) (end 12.7 -2.3) (layer "F.Fab") (width 0.1) (tstamp 0079f128-ad52-4f7c-b867-0c198ef9053a))
(fp_line (start 12.7 -5.2) (end 12.7 4.6) (layer "F.Fab") (width 0.1) (tstamp 0453b36c-6c69-499f-9b57-55ad3a11aaa3))
(fp_line (start 11.298 -0.955) (end 9.206 1.138) (layer "F.Fab") (width 0.1) (tstamp 1381c62d-fe0d-40e1-a24a-30e3ebdfd353))
(fp_line (start 1.138 -0.955) (end -0.955 1.138) (layer "F.Fab") (width 0.1) (tstamp 24be7683-0d0c-48a3-a95b-4c61b80b3987))
(fp_line (start 12.7 4.6) (end -2.04 4.6) (layer "F.Fab") (width 0.1) (tstamp 3fa9edc2-9fbb-43b5-b42c-e2e44b077acf))
(fp_line (start 0.955 -1.138) (end -1.138 0.955) (layer "F.Fab") (width 0.1) (tstamp 51306f00-a514-4657-981d-b3b78519adca))
(fp_line (start -2.54 4.1) (end -2.54 -5.2) (layer "F.Fab") (width 0.1) (tstamp 7484c77c-e105-4a67-8a28-565b967352a5))
(fp_line (start -2.04 4.6) (end -2.54 4.1) (layer "F.Fab") (width 0.1) (tstamp 9c47c972-bf4c-469f-9943-1310ab7b1641))
(fp_line (start -2.54 -5.2) (end 12.7 -5.2) (layer "F.Fab") (width 0.1) (tstamp b70d6b3f-6f1d-4320-ad47-e49881abf53e))
(fp_line (start -2.54 2.6) (end 12.7 2.6) (layer "F.Fab") (width 0.1) (tstamp ce89592b-25ef-4249-9dbd-039fc52a7c45))
(fp_line (start -2.54 4.1) (end 12.7 4.1) (layer "F.Fab") (width 0.1) (tstamp dc0b6919-eb48-4895-afe5-555e7416be4c))
(fp_line (start 11.115 -1.138) (end 9.023 0.955) (layer "F.Fab") (width 0.1) (tstamp e8e55658-2028-46d8-a3f7-08a8bc382ca6))
(fp_line (start 6.218 -0.955) (end 4.126 1.138) (layer "F.Fab") (width 0.1) (tstamp f0309d13-8efe-436d-8475-3c44be07c0fd))
(fp_line (start 6.035 -1.138) (end 3.943 0.955) (layer "F.Fab") (width 0.1) (tstamp fdf4a8d8-6f6e-4596-9e52-1eaf9b2199c0))
(fp_circle (center 0 0) (end 1.5 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 9ec1c8c3-cc5a-45f3-bea9-696588128a47))
(fp_circle (center 10.16 0) (end 11.66 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp a0179d36-a12b-48cd-8026-953a422b4036))
(fp_circle (center 5.08 0) (end 6.58 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp f9cb99d2-037a-4225-bd3a-68863e2a34af))
(pad "1" thru_hole rect (at 0 0 180) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 1 "Vbus") (pinfunction "Pin_1") (pintype "passive") (tstamp 585736d9-0c4d-4680-b9f1-4e1d167377d5))
(pad "2" thru_hole circle (at 5.08 0 180) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 455bb326-5646-4d14-ba77-60ba5f942a62))
(pad "3" thru_hole circle (at 10.16 0 180) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 5 "HV3") (pinfunction "Pin_3") (pintype "passive") (tstamp e891b433-8f8c-451a-9a1f-eebc6bd34030))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-3-5.08_1x03_P5.08mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu")
(tedit 56DDBCCA) (tstamp 108323e4-8825-4d8f-a060-d03d5dcc7754)
(at 63.86 88.5)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "ESP32_Wled_hub.kicad_sch")
(property "Sheetname" "")
(path "/350a957a-7dbd-4d15-b132-d4d26c7aae94")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3993c707-5291-41b6-83c0-d1c09cb3833a)
)
(fp_text value "MountingHole" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 17ff35b3-d658-499b-9a46-ea36063fed4e)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d13b0eae-4711-4325-a6bb-aa8e3646e86e)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp a917c6d9-225d-4c90-bf25-fe8eff8abd3f))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 89a3dae6-dcb5-435b-a383-656b6a19a316))
(pad "1" thru_hole circle locked (at 0 0) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask) (tstamp 03c52831-5dc5-43c5-a442-8d23643b46fb))
(pad "1" thru_hole circle locked (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp 29e78086-2175-405e-9ba3-c48766d2f50c))
(pad "1" thru_hole circle locked (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp 2d210a96-f81f-42a9-8bf4-1b43c11086f3))
(pad "1" thru_hole circle locked (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp 4c8eb964-bdf4-44de-90e9-e2ab82dd5313))
(pad "1" thru_hole circle locked (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp 94a873dc-af67-4ef9-8159-1f7c93eeb3d7))
(pad "1" thru_hole circle locked (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp 9bb20359-0f8b-45bc-9d38-6626ed3a939d))
(pad "1" thru_hole circle locked (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5))
(pad "1" thru_hole circle locked (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp aa14c3bd-4acc-4908-9d28-228585a22a9d))
(pad "1" thru_hole circle locked (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp e857610b-4434-4144-b04e-43c1ebdc5ceb))
)
(footprint "ESP32-DEVKITC-32D:MODULE_ESP32-DEVKITC-32D" (layer "F.Cu")
(tedit 6300C14A) (tstamp 1831fb37-1c5d-42c4-b898-151be6fca9dc)
(at 86.11 63.5 90)
(property "MANUFACTURER" "Espressif Systems")
(property "PARTREV" "4")
(property "Sheetfile" "ESP32_Wled_hub.kicad_sch")
(property "Sheetname" "")
(path "/58fc3e5a-ce48-49da-b642-0de88cedd002")
(attr through_hole)
(fp_text reference "U2" (at 0.05 20.5 90) (layer "F.SilkS") hide
(effects (font (size 1.000386 1.000386) (thickness 0.15)))
(tstamp 61fe293f-6808-4b7f-9340-9aaac7054a97)
)
(fp_text value "ESP32-DEVKITC-32D" (at 1.24136 28.294535 90) (layer "F.Fab")
(effects (font (size 1.001047 1.001047) (thickness 0.15)))
(tstamp 2f215f15-3d52-4c91-93e6-3ea03a95622f)
)
(fp_line (start 13.95 27.25) (end -13.95 27.25) (layer "F.SilkS") (width 0.127) (tstamp 003c2200-0632-4808-a662-8ddd5d30c768))
(fp_line (start 13.95 -27.15) (end 13.95 27.25) (layer "F.SilkS") (width 0.127) (tstamp 240e07e1-770b-4b27-894f-29fd601c924d))
(fp_line (start -13.95 27.25) (end -13.95 -27.15) (layer "F.SilkS") (width 0.127) (tstamp cbd8faed-e1f8-4406-87c8-58b2c504a5d4))
(fp_line (start -13.95 -27.15) (end 13.95 -27.15) (layer "F.SilkS") (width 0.127) (tstamp f2c93195-af12-4d3e-acdf-bdd0ff675c24))
(fp_line (start 14.2 -27.4) (end 14.2 27.5) (layer "F.CrtYd") (width 0.05) (tstamp 9b0a1687-7e1b-4a04-a30b-c27a072a2949))
(fp_line (start -14.2 27.5) (end -14.2 -27.4) (layer "F.CrtYd") (width 0.05) (tstamp 9e1b837f-0d34-4a18-9644-9ee68f141f46))
(fp_line (start 14.2 27.5) (end -14.2 27.5) (layer "F.CrtYd") (width 0.05) (tstamp c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b))
(fp_line (start -14.2 -27.4) (end 14.2 -27.4) (layer "F.CrtYd") (width 0.05) (tstamp ee27d19c-8dca-4ac8-a760-6dfd54d28071))
(fp_line (start 13.95 27.25) (end -13.95 27.25) (layer "F.Fab") (width 0.127) (tstamp 08a7c925-7fae-4530-b0c9-120e185cb318))
(fp_line (start -13.95 27.25) (end -13.95 -27.15) (layer "F.Fab") (width 0.127) (tstamp 4a4ec8d9-3d72-4952-83d4-808f65849a2b))
(fp_line (start -13.95 -27.15) (end 13.95 -27.15) (layer "F.Fab") (width 0.127) (tstamp 5528bcad-2950-4673-90eb-c37e6952c475))
(fp_line (start 13.95 -27.15) (end 13.95 27.25) (layer "F.Fab") (width 0.127) (tstamp 7edc9030-db7b-43ac-a1b3-b87eeacb4c2d))
(fp_circle (center -14.6 -19.9) (end -14.46 -19.9) (layer "F.Fab") (width 0.28) (fill none) (tstamp 63ff1c93-3f96-4c33-b498-5dd8c33bccc0))
(fp_circle (center -14.6 -19.9) (end -14.46 -19.9) (layer "F.Fab") (width 0.28) (fill none) (tstamp b88717bd-086f-46cd-9d3f-0396009d0996))
(pad "1" thru_hole rect locked (at -12.7 -19.76 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 11 "unconnected-(U2-Pad1)") (pinfunction "3V3") (pintype "power_in") (tstamp 0f22151c-f260-4674-b486-4710a2c42a55))
(pad "2" thru_hole circle locked (at -12.7 -17.22 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 12 "unconnected-(U2-Pad2)") (pinfunction "EN") (pintype "input") (tstamp fe8d9267-7834-48d6-a191-c8724b2ee78d))
(pad "3" thru_hole circle locked (at -12.7 -14.68 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 13 "unconnected-(U2-Pad3)") (pinfunction "SENSOR_VP") (pintype "input") (tstamp 3cd1bda0-18db-417d-b581-a0c50623df68))
(pad "4" thru_hole circle locked (at -12.7 -12.14 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 19 "unconnected-(U2-Pad4)") (pinfunction "SENSOR_VN") (pintype "input") (tstamp d57dcfee-5058-4fc2-a68b-05f9a48f685b))
(pad "5" thru_hole circle locked (at -12.7 -9.6 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 20 "unconnected-(U2-Pad5)") (pinfunction "IO34") (pintype "bidirectional") (tstamp 9a8ad8bb-d9a9-4b2b-bc88-ea6fd2676d45))
(pad "6" thru_hole circle locked (at -12.7 -7.06 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 21 "unconnected-(U2-Pad6)") (pinfunction "IO35") (pintype "bidirectional") (tstamp 851f3d61-ba3b-4e6e-abd4-cafa4d9b64cb))
(pad "7" thru_hole circle locked (at -12.7 -4.52 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 22 "unconnected-(U2-Pad7)") (pinfunction "IO32") (pintype "bidirectional") (tstamp ca6e2466-a90a-4dab-be16-b070610e5087))
(pad "8" thru_hole circle locked (at -12.7 -1.98 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 23 "unconnected-(U2-Pad8)") (pinfunction "IO33") (pintype "bidirectional") (tstamp d18f2428-546f-4066-8ffb-7653303685db))
(pad "9" thru_hole circle locked (at -12.7 0.56 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 10 "LV1") (pinfunction "IO25") (pintype "bidirectional") (tstamp d95c6650-fcd9-4184-97fe-fde43ea5c0cd))
(pad "10" thru_hole circle locked (at -12.7 3.1 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 9 "LV2") (pinfunction "IO26") (pintype "bidirectional") (tstamp 12fa3c3f-3d14-451a-a6a8-884fd1b32fa7))
(pad "11" thru_hole circle locked (at -12.7 5.64 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 14 "unconnected-(U2-Pad11)") (pinfunction "IO27") (pintype "bidirectional") (tstamp f4a1ab68-998b-43e3-aa33-40b58210bc99))
(pad "12" thru_hole circle locked (at -12.7 8.18 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 25 "unconnected-(U2-Pad12)") (pinfunction "IO14") (pintype "bidirectional") (tstamp e76ec524-408a-4daa-89f6-0edfdbcfb621))
(pad "13" thru_hole circle locked (at -12.7 10.72 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 26 "unconnected-(U2-Pad13)") (pinfunction "IO12") (pintype "bidirectional") (tstamp 78b44915-d68e-4488-a873-34767153ef98))
(pad "14" thru_hole circle locked (at -12.7 13.26 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND1") (pintype "power_in") (tstamp 6c2e273e-743c-4f1e-a647-4171f8122550))
(pad "15" thru_hole circle locked (at -12.7 15.8 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 15 "unconnected-(U2-Pad15)") (pinfunction "IO13") (pintype "bidirectional") (tstamp 666713b0-70f4-42df-8761-f65bc212d03b))
(pad "16" thru_hole circle locked (at -12.7 18.34 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 28 "unconnected-(U2-Pad16)") (pinfunction "SD2") (pintype "bidirectional") (tstamp 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e))
(pad "17" thru_hole circle locked (at -12.7 20.88 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 29 "unconnected-(U2-Pad17)") (pinfunction "SD3") (pintype "bidirectional") (tstamp 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280))
(pad "18" thru_hole circle locked (at -12.7 23.42 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 30 "unconnected-(U2-Pad18)") (pinfunction "CMD") (pintype "bidirectional") (tstamp 7aed3a71-054b-4aaa-9c0a-030523c32827))
(pad "19" thru_hole circle locked (at -12.7 25.96 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 1 "Vbus") (pinfunction "EXT_5V") (pintype "power_in") (tstamp 0b21a65d-d20b-411e-920a-75c343ac5136))
(pad "20" thru_hole circle locked (at 12.7 -19.76 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND3") (pintype "power_in") (tstamp 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2))
(pad "21" thru_hole circle locked (at 12.7 -17.22 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 32 "unconnected-(U2-Pad21)") (pinfunction "IO23") (pintype "bidirectional") (tstamp 42713045-fffd-4b2d-ae1e-7232d705fb12))
(pad "22" thru_hole circle locked (at 12.7 -14.68 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 33 "unconnected-(U2-Pad22)") (pinfunction "IO22") (pintype "bidirectional") (tstamp c0515cd2-cdaa-467e-8354-0f6eadfa35c9))
(pad "23" thru_hole circle locked (at 12.7 -12.14 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 34 "unconnected-(U2-Pad23)") (pinfunction "TXD0") (pintype "output") (tstamp 1bf544e3-5940-4576-9291-2464e95c0ee2))
(pad "24" thru_hole circle locked (at 12.7 -9.6 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 35 "unconnected-(U2-Pad24)") (pinfunction "RXD0") (pintype "input") (tstamp 3aaee4c4-dbf7-49a5-a620-9465d8cc3ae7))
(pad "25" thru_hole circle locked (at 12.7 -7.06 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 16 "unconnected-(U2-Pad25)") (pinfunction "IO21") (pintype "bidirectional") (tstamp bdc7face-9f7c-4701-80bb-4cc144448db1))
(pad "26" thru_hole circle locked (at 12.7 -4.52 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND2") (pintype "power_in") (tstamp 97fe9c60-586f-4895-8504-4d3729f5f81a))
(pad "27" thru_hole circle locked (at 12.7 -1.98 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 7 "LV4") (pinfunction "IO19") (pintype "bidirectional") (tstamp 922058ca-d09a-45fd-8394-05f3e2c1e03a))
(pad "28" thru_hole circle locked (at 12.7 0.56 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 8 "LV3") (pinfunction "IO18") (pintype "bidirectional") (tstamp 0f54db53-a272-4955-88fb-d7ab00657bb0))
(pad "29" thru_hole circle locked (at 12.7 3.1 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 36 "unconnected-(U2-Pad29)") (pinfunction "IO5") (pintype "bidirectional") (tstamp 80094b70-85ab-4ff6-934b-60d5ee65023a))
(pad "30" thru_hole circle locked (at 12.7 5.64 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 17 "unconnected-(U2-Pad30)") (pinfunction "IO17") (pintype "bidirectional") (tstamp d4a1d3c4-b315-4bec-9220-d12a9eab51e0))
(pad "31" thru_hole circle locked (at 12.7 8.18 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 18 "unconnected-(U2-Pad31)") (pinfunction "IO16") (pintype "bidirectional") (tstamp bfc0aadc-38cf-466e-a642-68fdc3138c78))
(pad "32" thru_hole circle locked (at 12.7 10.72 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 37 "unconnected-(U2-Pad32)") (pinfunction "IO4") (pintype "bidirectional") (tstamp 6441b183-b8f2-458f-a23d-60e2b1f66dd6))
(pad "33" thru_hole circle locked (at 12.7 13.26 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 38 "unconnected-(U2-Pad33)") (pinfunction "IO0") (pintype "bidirectional") (tstamp 31e08896-1992-4725-96d9-9d2728bca7a3))
(pad "34" thru_hole circle locked (at 12.7 15.8 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 24 "unconnected-(U2-Pad34)") (pinfunction "IO2") (pintype "bidirectional") (tstamp b5352a33-563a-4ffe-a231-2e68fb54afa3))
(pad "35" thru_hole circle locked (at 12.7 18.34 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 27 "unconnected-(U2-Pad35)") (pinfunction "IO15") (pintype "bidirectional") (tstamp 852dabbf-de45-4470-8176-59d37a754407))
(pad "36" thru_hole circle locked (at 12.7 20.88 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 39 "unconnected-(U2-Pad36)") (pinfunction "SD1") (pintype "bidirectional") (tstamp 66043bca-a260-4915-9fce-8a51d324c687))
(pad "37" thru_hole circle locked (at 12.7 23.42 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 40 "unconnected-(U2-Pad37)") (pinfunction "SD0") (pintype "bidirectional") (tstamp 2d6db888-4e40-41c8-b701-07170fc894bc))
(pad "38" thru_hole circle locked (at 12.7 25.96 90) (size 1.56 1.56) (drill 1.04) (layers *.Cu *.Mask)
(net 31 "unconnected-(U2-Pad38)") (pinfunction "CLK") (pintype "input") (tstamp 7bbf981c-a063-4e30-8911-e4228e1c0743))
(model "${KIPRJMOD}/ESP32-DEVKITC-32D/ESP32-DEVKITC-32D.step"
(offset (xyz 0 -3 12))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu")
(tedit 56DDBCCA) (tstamp 238d0754-146c-4b10-b325-ea44e4e804c9)
(at 123.86 88.5)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "ESP32_Wled_hub.kicad_sch")
(property "Sheetname" "")
(path "/d7695dc5-5a0e-4bd1-9e57-7f1dd7cc4c22")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at -0.1 0.1) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8174b4de-74b1-48db-ab8e-c8432251095b)
)
(fp_text value "MountingHole" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 704d6d51-bb34-4cbf-83d8-841e208048d8)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 48ab88d7-7084-4d02-b109-3ad55a30bb11)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp f71da641-16e6-4257-80c3-0b9d804fee4f))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp fd470e95-4861-44fe-b1e4-6d8a7c66e144))
(pad "1" thru_hole circle locked (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp 127679a9-3981-4934-815e-896a4e3ff56e))
(pad "1" thru_hole circle locked (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp 5fc27c35-3e1c-4f96-817c-93b5570858a6))
(pad "1" thru_hole circle locked (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp 6a45789b-3855-401f-8139-3c734f7f52f9))
(pad "1" thru_hole circle locked (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp 6c9b793c-e74d-4754-a2c0-901e73b26f1c))
(pad "1" thru_hole circle locked (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp 716e31c5-485f-40b5-88e3-a75900da9811))
(pad "1" thru_hole circle locked (at 0 0) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask) (tstamp a690fc6c-55d9-47e6-b533-faa4b67e20f3))
(pad "1" thru_hole circle locked (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp b1086f75-01ba-4188-8d36-75a9e2828ca9))
(pad "1" thru_hole circle locked (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp c144caa5-b0d4-4cef-840a-d4ad178a2102))
(pad "1" thru_hole circle locked (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp efeac2a2-7682-4dc7-83ee-f6f1b23da506))
)
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-3-5.08_1x03_P5.08mm_Horizontal" (layer "F.Cu")
(tedit 5B294EBC) (tstamp 38bef892-3741-43c0-a6af-4a33f7f712a2)
(at 93.98 83.82)
(descr "Terminal Block Phoenix MKDS-1,5-3-5.08, 3 pins, pitch 5.08mm, size 15.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MKDS-1,5-3-5.08 pitch 5.08mm size 15.2x9.8mm^2 drill 1.3mm pad 2.6mm")
(property "Sheetfile" "ESP32_Wled_hub.kicad_sch")
(property "Sheetname" "")
(path "/f5a30e10-3f06-48b3-bea1-8c1a71384641")
(attr through_hole)
(fp_text reference "J6" (at 4.98 -3.12) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7764b1a7-b9be-4d0c-ae2b-ec64c2b9ca7c)
)
(fp_text value "OUT 2" (at 5.08 5.66) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e94c8831-dc7c-42f3-8bce-1f08d86449eb)
)
(fp_text user "${REFERENCE}" (at 5.08 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ad5d15be-ae28-4e5f-924a-e7113f09b336)
)
(fp_line (start 11.435 -1.069) (end 11.388 -1.023) (layer "F.SilkS") (width 0.12) (tstamp 2907f03e-6b26-4b62-93d5-6d22be7dc3a8))
(fp_line (start -2.6 2.6) (end 12.76 2.6) (layer "F.SilkS") (width 0.12) (tstamp 2a97cbc6-fb8b-4756-bd26-62b27062d964))
(fp_line (start 4.046 1.239) (end 4.011 1.274) (layer "F.SilkS") (width 0.12) (tstamp 357049db-c668-4a77-9a25-ce8b90dfd32b))
(fp_line (start -2.6 -5.261) (end 12.76 -5.261) (layer "F.SilkS") (width 0.12) (tstamp 35bc867a-9c04-4f91-a36d-12dfdd2da01e))
(fp_line (start 3.853 1.023) (end 3.806 1.069) (layer "F.SilkS") (width 0.12) (tstamp 483ee375-806b-49a8-b71d-1527b4383c9b))
(fp_line (start -2.84 4.16) (end -2.84 4.9) (layer "F.SilkS") (width 0.12) (tstamp 595b9142-c99b-431d-80f8-51bc3ccf4062))
(fp_line (start -2.84 4.9) (end -2.34 4.9) (layer "F.SilkS") (width 0.12) (tstamp 63caf46e-0228-40de-b819-c6bd29dd1711))
(fp_line (start 6.355 -1.069) (end 6.308 -1.023) (layer "F.SilkS") (width 0.12) (tstamp 87ea4f0e-d72e-4b86-8009-8a368762ec71))
(fp_line (start -2.6 4.1) (end 12.76 4.1) (layer "F.SilkS") (width 0.12) (tstamp 9f9126b0-dd1e-49be-922e-fd09297e0548))
(fp_line (start 8.933 1.023) (end 8.886 1.069) (layer "F.SilkS") (width 0.12) (tstamp a05b7b41-d584-47db-9de6-426482000335))
(fp_line (start -2.6 -2.301) (end 12.76 -2.301) (layer "F.SilkS") (width 0.12) (tstamp a7cf9252-7b9d-4fb8-9c38-9f8f0d721bbd))
(fp_line (start 9.126 1.239) (end 9.091 1.274) (layer "F.SilkS") (width 0.12) (tstamp aff9b94a-3155-4d61-8287-3dc8c06c9c02))
(fp_line (start -2.6 -5.261) (end -2.6 4.66) (layer "F.SilkS") (width 0.12) (tstamp b81bd43c-084d-4a5d-88ab-195d5e5035a2))
(fp_line (start 11.23 -1.275) (end 11.195 -1.239) (layer "F.SilkS") (width 0.12) (tstamp bc37e474-697e-494e-b44a-99e7cedaeb3c))
(fp_line (start -2.6 4.66) (end 12.76 4.66) (layer "F.SilkS") (width 0.12) (tstamp d33c5df5-b20b-4d7e-94bb-ebafd74441c3))
(fp_line (start 12.76 -5.261) (end 12.76 4.66) (layer "F.SilkS") (width 0.12) (tstamp d3de50b0-1589-4d91-93f2-c442506abfb3))
(fp_line (start 6.15 -1.275) (end 6.115 -1.239) (layer "F.SilkS") (width 0.12) (tstamp d873f0f6-b4ce-4566-acf6-f884a791b77a))
(fp_arc (start 0.028805 1.680253) (mid -0.335551 1.646659) (end -0.684 1.535) (layer "F.SilkS") (width 0.12) (tstamp 01c517db-db70-46d2-9618-e9aeac9589c3))
(fp_arc (start -1.535427 0.683042) (mid -1.680501 -0.000524) (end -1.535 -0.684) (layer "F.SilkS") (width 0.12) (tstamp 77006be8-e871-4875-98bd-df9b9f9c71da))
(fp_arc (start -0.683042 -1.535427) (mid 0.000524 -1.680501) (end 0.684 -1.535) (layer "F.SilkS") (width 0.12) (tstamp 880d94e0-447e-413a-a558-cee4b897ff70))
(fp_arc (start 1.535427 -0.683042) (mid 1.680501 0.000524) (end 1.535 0.684) (layer "F.SilkS") (width 0.12) (tstamp d012688b-7a14-45be-8853-ccc0dc10dc71))
(fp_arc (start 0.683318 1.534756) (mid 0.349292 1.643288) (end 0 1.68) (layer "F.SilkS") (width 0.12) (tstamp df6b5968-848c-4920-8f3e-400c3b00eb75))
(fp_circle (center 5.08 0) (end 6.76 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 2416b761-64cf-46de-a335-39e84b411ea4))
(fp_circle (center 10.16 0) (end 11.84 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp b199093d-fc35-4a57-84d4-9203d9dc1821))
(fp_line (start -3.04 -5.71) (end -3.04 5.1) (layer "F.CrtYd") (width 0.05) (tstamp 11ec77c4-ba99-45b0-907a-173e45347d10))
(fp_line (start -3.04 5.1) (end 13.21 5.1) (layer "F.CrtYd") (width 0.05) (tstamp 600a126b-a6d3-4e08-b413-ce35e3c2d92f))
(fp_line (start 13.21 -5.71) (end -3.04 -5.71) (layer "F.CrtYd") (width 0.05) (tstamp 6e71b84d-ba93-46db-b655-09de6e7c8c28))
(fp_line (start 13.21 5.1) (end 13.21 -5.71) (layer "F.CrtYd") (width 0.05) (tstamp c11bad25-a9cf-44c7-a96e-564f6c19521c))
(fp_line (start 1.138 -0.955) (end -0.955 1.138) (layer "F.Fab") (width 0.1) (tstamp 2086f1f4-059c-4ac4-858b-c6e65c5b1092))
(fp_line (start -2.54 4.1) (end 12.7 4.1) (layer "F.Fab") (width 0.1) (tstamp 3745d030-b1db-42b3-88e5-5fb982cc9164))
(fp_line (start 11.115 -1.138) (end 9.023 0.955) (layer "F.Fab") (width 0.1) (tstamp 3a02cedd-724f-40d8-bbef-61e3b75cada0))
(fp_line (start 6.035 -1.138) (end 3.943 0.955) (layer "F.Fab") (width 0.1) (tstamp 4b80a0c2-a6b8-4a3a-946d-9c751151a81a))
(fp_line (start -2.04 4.6) (end -2.54 4.1) (layer "F.Fab") (width 0.1) (tstamp 5827dae2-8d8c-4f89-84c9-2b4c97f9f78f))
(fp_line (start -2.54 2.6) (end 12.7 2.6) (layer "F.Fab") (width 0.1) (tstamp 5cdbfe3a-6a6c-490c-b6b3-60a00241230b))
(fp_line (start -2.54 -2.3) (end 12.7 -2.3) (layer "F.Fab") (width 0.1) (tstamp 6b4ba03e-77fb-4ebb-bb93-e2bcd8fe7aec))
(fp_line (start 0.955 -1.138) (end -1.138 0.955) (layer "F.Fab") (width 0.1) (tstamp 888059b3-2471-43ee-a2b4-3fd09f693b37))
(fp_line (start -2.54 4.1) (end -2.54 -5.2) (layer "F.Fab") (width 0.1) (tstamp 8d545362-a0a6-4087-a172-801b8cc16e9c))
(fp_line (start -2.54 -5.2) (end 12.7 -5.2) (layer "F.Fab") (width 0.1) (tstamp ac02b2f8-c056-4302-8a70-922401ce745e))
(fp_line (start 6.218 -0.955) (end 4.126 1.138) (layer "F.Fab") (width 0.1) (tstamp af955edb-4849-4b65-b9d3-15c31dc09130))
(fp_line (start 11.298 -0.955) (end 9.206 1.138) (layer "F.Fab") (width 0.1) (tstamp c5a264c8-44bb-476b-be97-40b7df78e32c))
(fp_line (start 12.7 4.6) (end -2.04 4.6) (layer "F.Fab") (width 0.1) (tstamp ce5b66e8-b710-4452-b68c-9cd786041b99))
(fp_line (start 12.7 -5.2) (end 12.7 4.6) (layer "F.Fab") (width 0.1) (tstamp e0ff723e-9da4-419a-9b7c-537137a1c661))
(fp_circle (center 5.08 0) (end 6.58 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 0914afec-b28e-4607-a61c-87317a658cd3))
(fp_circle (center 0 0) (end 1.5 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp c7d0284b-26f3-46a0-a20a-63616420e27a))
(fp_circle (center 10.16 0) (end 11.66 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp ebcc9974-0863-4467-b1f2-b125d31c0229))
(pad "1" thru_hole rect (at 0 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 1 "Vbus") (pinfunction "Pin_1") (pintype "passive") (tstamp ccbccc68-d102-4809-a3c8-c848af50e594))
(pad "2" thru_hole circle (at 5.08 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp b97186d5-6279-44a4-aecc-e1c14fe16aef))
(pad "3" thru_hole circle (at 10.16 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 4 "HV2") (pinfunction "Pin_3") (pintype "passive") (tstamp a323acdd-4972-4d4f-943b-bc6a88029a1e))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-3-5.08_1x03_P5.08mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-3-5.08_1x03_P5.08mm_Horizontal" (layer "F.Cu")
(tedit 5B294EBC) (tstamp 43e0cf57-aac5-427c-996d-14e52f36da40)
(at 73.655 84.125)
(descr "Terminal Block Phoenix MKDS-1,5-3-5.08, 3 pins, pitch 5.08mm, size 15.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MKDS-1,5-3-5.08 pitch 5.08mm size 15.2x9.8mm^2 drill 1.3mm pad 2.6mm")
(property "Sheetfile" "ESP32_Wled_hub.kicad_sch")
(property "Sheetname" "")
(path "/3aefe234-c236-4c95-b391-3baf70d7c08a")
(attr through_hole)
(fp_text reference "J4" (at 5.205 -3.225) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 84c59850-a617-4b8e-9935-4a3c13fa674f)
)
(fp_text value "OUT 1" (at 5.08 5.66) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e6c97644-92a3-4952-ae44-73243f67c959)
)
(fp_text user "${REFERENCE}" (at 5.08 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 077c7713-5f8a-46ad-9e1e-0a158b076dfa)
)
(fp_line (start 6.355 -1.069) (end 6.308 -1.023) (layer "F.SilkS") (width 0.12) (tstamp 026eb23b-a059-48fb-a705-445100e5df17))
(fp_line (start -2.6 2.6) (end 12.76 2.6) (layer "F.SilkS") (width 0.12) (tstamp 325a3248-47e8-40c8-90f1-244066c65a9e))
(fp_line (start 11.435 -1.069) (end 11.388 -1.023) (layer "F.SilkS") (width 0.12) (tstamp 370a6913-8e45-4426-bb85-85426eb46db9))
(fp_line (start 4.046 1.239) (end 4.011 1.274) (layer "F.SilkS") (width 0.12) (tstamp 591e969d-7122-41e3-8c35-363e2a9714ca))
(fp_line (start 6.15 -1.275) (end 6.115 -1.239) (layer "F.SilkS") (width 0.12) (tstamp 5d78904d-6d60-4d3d-ae57-28c5f7a80ab6))
(fp_line (start -2.6 -5.261) (end 12.76 -5.261) (layer "F.SilkS") (width 0.12) (tstamp 736ec575-72b6-45b5-94b5-96acf35c7142))
(fp_line (start 8.933 1.023) (end 8.886 1.069) (layer "F.SilkS") (width 0.12) (tstamp ab31a2ed-32be-4673-85c4-0890d6200220))
(fp_line (start -2.6 4.66) (end 12.76 4.66) (layer "F.SilkS") (width 0.12) (tstamp c66790a8-2c84-47da-b059-a728d9f51463))
(fp_line (start -2.84 4.16) (end -2.84 4.9) (layer "F.SilkS") (width 0.12) (tstamp cb4b7bcd-f8cd-4398-9baf-986854c6b2ae))
(fp_line (start 11.23 -1.275) (end 11.195 -1.239) (layer "F.SilkS") (width 0.12) (tstamp d178c3af-8898-4af4-a6d3-7a15fb4da7ca))
(fp_line (start -2.84 4.9) (end -2.34 4.9) (layer "F.SilkS") (width 0.12) (tstamp da2ed981-b137-4b7d-9461-d29cd9991155))
(fp_line (start 3.853 1.023) (end 3.806 1.069) (layer "F.SilkS") (width 0.12) (tstamp da583fd8-297c-45d1-a802-ffe1e43db9b6))
(fp_line (start 12.76 -5.261) (end 12.76 4.66) (layer "F.SilkS") (width 0.12) (tstamp dd4c734f-379a-44f0-b625-376dcffe44ea))
(fp_line (start 9.126 1.239) (end 9.091 1.274) (layer "F.SilkS") (width 0.12) (tstamp e0c3cfb6-c1df-42ef-b490-624c6637e557))
(fp_line (start -2.6 -5.261) (end -2.6 4.66) (layer "F.SilkS") (width 0.12) (tstamp e6de03b0-04a7-49d0-b345-b86e80b226d9))
(fp_line (start -2.6 4.1) (end 12.76 4.1) (layer "F.SilkS") (width 0.12) (tstamp fabcdf52-b758-43bb-a760-cb0bfaea8957))
(fp_line (start -2.6 -2.301) (end 12.76 -2.301) (layer "F.SilkS") (width 0.12) (tstamp ffb7f592-c2f7-48ee-8e65-c3d73c901745))
(fp_arc (start -1.535427 0.683042) (mid -1.680501 -0.000524) (end -1.535 -0.684) (layer "F.SilkS") (width 0.12) (tstamp 3e9fa01f-48e9-4c58-997e-0bab5b5694a8))
(fp_arc (start 0.028805 1.680253) (mid -0.335551 1.646659) (end -0.684 1.535) (layer "F.SilkS") (width 0.12) (tstamp bfffbad2-4c7e-4467-a541-750984bf2cf4))
(fp_arc (start -0.683042 -1.535427) (mid 0.000524 -1.680501) (end 0.684 -1.535) (layer "F.SilkS") (width 0.12) (tstamp d7be9a91-16f0-4839-a91f-250dcabde07e))
(fp_arc (start 1.535427 -0.683042) (mid 1.680501 0.000524) (end 1.535 0.684) (layer "F.SilkS") (width 0.12) (tstamp e59d4447-9c6c-4094-a5a3-603fca57ff44))
(fp_arc (start 0.683318 1.534756) (mid 0.349292 1.643288) (end 0 1.68) (layer "F.SilkS") (width 0.12) (tstamp ee4c6544-dcb2-4120-b150-5c4d1c49c47d))
(fp_circle (center 10.16 0) (end 11.84 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 54ca8ca9-4f16-40cf-97a4-31a0081cfa8b))
(fp_circle (center 5.08 0) (end 6.76 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 56f55bb6-4eed-416b-b118-9d46bea66843))
(fp_line (start 13.21 -5.71) (end -3.04 -5.71) (layer "F.CrtYd") (width 0.05) (tstamp 036afffe-cbbf-4ead-9c0c-ea4c435dd04c))
(fp_line (start -3.04 -5.71) (end -3.04 5.1) (layer "F.CrtYd") (width 0.05) (tstamp 36d12c11-edfd-4a90-8686-995da7ce1748))
(fp_line (start -3.04 5.1) (end 13.21 5.1) (layer "F.CrtYd") (width 0.05) (tstamp 4e7cc6e5-aced-4989-bbbb-e93c89ac78a7))
(fp_line (start 13.21 5.1) (end 13.21 -5.71) (layer "F.CrtYd") (width 0.05) (tstamp 59ed5280-2b07-4e66-a7e0-df21615d622c))
(fp_line (start -2.54 2.6) (end 12.7 2.6) (layer "F.Fab") (width 0.1) (tstamp 0839ce8d-bc94-4a18-9387-0ce4b277e1aa))
(fp_line (start 12.7 -5.2) (end 12.7 4.6) (layer "F.Fab") (width 0.1) (tstamp 1194f695-0776-4569-9365-1388ff1f61b6))
(fp_line (start 11.115 -1.138) (end 9.023 0.955) (layer "F.Fab") (width 0.1) (tstamp 2a21fb11-bf9f-4892-8443-9e0ba5dd08ff))
(fp_line (start 1.138 -0.955) (end -0.955 1.138) (layer "F.Fab") (width 0.1) (tstamp 2bed6ca1-bcbb-4623-afa9-a76487076467))
(fp_line (start 11.298 -0.955) (end 9.206 1.138) (layer "F.Fab") (width 0.1) (tstamp 37d1dfa4-5d65-41f6-b95b-52682d6e97aa))
(fp_line (start 6.218 -0.955) (end 4.126 1.138) (layer "F.Fab") (width 0.1) (tstamp 6a86cf05-0add-42b9-a9a0-9b4aeb996306))
(fp_line (start 6.035 -1.138) (end 3.943 0.955) (layer "F.Fab") (width 0.1) (tstamp 7328a55a-6fe1-4aeb-912c-4ea65c72eb6f))
(fp_line (start -2.54 -5.2) (end 12.7 -5.2) (layer "F.Fab") (width 0.1) (tstamp 7a7be03b-d30a-4fc6-abe7-e94916bf3a0b))
(fp_line (start 12.7 4.6) (end -2.04 4.6) (layer "F.Fab") (width 0.1) (tstamp 7d48fea1-5a07-43f0-9ab1-5fc2a66580c1))
(fp_line (start 0.955 -1.138) (end -1.138 0.955) (layer "F.Fab") (width 0.1) (tstamp 87e411ae-3114-4a62-90e0-49212cb778c5))
(fp_line (start -2.54 -2.3) (end 12.7 -2.3) (layer "F.Fab") (width 0.1) (tstamp a873e942-d614-4558-aa34-f59b59912653))
(fp_line (start -2.54 4.1) (end 12.7 4.1) (layer "F.Fab") (width 0.1) (tstamp aade9b49-ca5a-42a0-aec3-2c819e72c349))
(fp_line (start -2.04 4.6) (end -2.54 4.1) (layer "F.Fab") (width 0.1) (tstamp e1772ffd-d3c3-4dc7-9a3d-473657b66706))
(fp_line (start -2.54 4.1) (end -2.54 -5.2) (layer "F.Fab") (width 0.1) (tstamp eac88b9b-4226-43c7-9238-94c134da0ab1))
(fp_circle (center 10.16 0) (end 11.66 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 50a665e2-2679-4e9c-82aa-3fe56e2d0dad))
(fp_circle (center 0 0) (end 1.5 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 94cbfc13-d61a-4fdd-b97d-9f86f3a34f14))
(fp_circle (center 5.08 0) (end 6.58 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 9da68e0b-2159-406c-82cd-eecb076ea953))
(pad "1" thru_hole rect (at 0 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 1 "Vbus") (pinfunction "Pin_1") (pintype "passive") (tstamp efa11081-d903-4889-9ae0-ed8f6dc4ba7b))
(pad "2" thru_hole circle (at 5.08 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 0c7c12ca-6132-4301-a870-d65994808e03))
(pad "3" thru_hole circle (at 10.16 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 3 "HV1") (pinfunction "Pin_3") (pintype "passive") (tstamp ccb75d38-f2cc-49f6-b121-a5d2c20c1ac8))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-3-5.08_1x03_P5.08mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu")
(tedit 56DDBCCA) (tstamp 461baedb-a09d-4b58-b714-e15c7a7c6c98)
(at 63.86 38.5)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "ESP32_Wled_hub.kicad_sch")
(property "Sheetname" "")
(path "/614522fc-d841-433a-9dfc-dd9d6464fd6e")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at -0.05 0.1) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c1d83899-e380-49f9-a87d-8e78bc089ebf)
)
(fp_text value "MountingHole" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e9bb29b2-2bb9-4ea2-acd9-2bb3ca677a12)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 78cbdd6c-4878-4cc5-9a58-0e506478e37d)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 6e105729-aba0-497c-a99e-c32d2b3ddb6d))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 983c426c-24e0-4c65-ab69-1f1824adc5c6))
(pad "1" thru_hole circle locked (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp 13abf99d-5265-4779-8973-e94370fd18ff))
(pad "1" thru_hole circle locked (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp 23bb2798-d93a-4696-a962-c305c4298a0c))
(pad "1" thru_hole circle locked (at 0 0) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask) (tstamp 32667662-ae86-4904-b198-3e95f11851bf))
(pad "1" thru_hole circle locked (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp 46918595-4a45-48e8-84c0-961b4db7f35f))
(pad "1" thru_hole circle locked (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp 94c158d1-8503-4553-b511-bf42f506c2a8))
(pad "1" thru_hole circle locked (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp 9ccf03e8-755a-4cd9-96fc-30e1d08fa253))
(pad "1" thru_hole circle locked (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp a05d7640-f2f6-4ba7-8c51-5a4af431fc13))
(pad "1" thru_hole circle locked (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp a7520ad3-0f8b-4788-92d4-8ffb277041e6))
(pad "1" thru_hole circle locked (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp a795f1ba-cdd5-4cc5-9a52-08586e982934))
)
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu")
(tedit 56DDBCCA) (tstamp 75ab1a52-b7a3-4efc-ad37-8fb5aef89e9b)
(at 123.86 38.5)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "ESP32_Wled_hub.kicad_sch")
(property "Sheetname" "")
(path "/44785a4b-bc54-42ef-9ffa-bd90104832dc")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0 0.1) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 66116376-6967-4178-9f23-a26cdeafc400)
)
(fp_text value "MountingHole" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 749dfe75-c0d6-4872-9330-29c5bbcb8ff8)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef8fe2ac-6a7f-4682-9418-b801a1b10a3b)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 44d8279a-9cd1-4db6-856f-0363131605fc))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp eb667eea-300e-4ca7-8a6f-4b00de80cd45))
(pad "1" thru_hole circle locked (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp 10109f84-4940-47f8-8640-91f185ac9bc1))
(pad "1" thru_hole circle locked (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp 47baf4b1-0938-497d-88f9-671136aa8be7))
(pad "1" thru_hole circle locked (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp 4fb02e58-160a-4a39-9f22-d0c75e82ee72))
(pad "1" thru_hole circle locked (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp 55e740a3-0735-4744-896e-2bf5437093b9))
(pad "1" thru_hole circle locked (at 0 0) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask) (tstamp 71c31975-2c45-4d18-a25a-18e07a55d11e))
(pad "1" thru_hole circle locked (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp 77ed3941-d133-4aef-a9af-5a39322d14eb))
(pad "1" thru_hole circle locked (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp c022004a-c968-410e-b59e-fbab0e561e9d))
(pad "1" thru_hole circle locked (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp e615f7aa-337e-474d-9615-2ad82b1c44ca))
(pad "1" thru_hole circle locked (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask) (tstamp f4f99e3d-7269-4f6a-a759-16ad2a258779))
)
(footprint "ESP32_Wled_hub:VoronLogo_20mm_silkScreen" (layer "F.Cu")
(tedit 0) (tstamp c5246819-cd34-4b36-841b-15ff0bc8ef76)
(at 70.36 63.25 90)
(attr through_hole)
(fp_text reference "G***" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
(tstamp efcc8f75-89ba-4076-8da8-1d180c20e07f)
)
(fp_text value "LOGO" (at 0.75 0 90) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
(tstamp 4515268e-67db-4b3e-a87d-4e26467a6e03)
)
(fp_poly (pts
(xy 8.545062 -5.092128)
(xy 8.545062 5.092129)
(xy 4.257127 7.563349)
(xy 3.20784 8.167239)
(xy 2.250038 8.716876)
(xy 1.416303 9.193688)
(xy 0.739216 9.579106)
(xy 0.251357 9.85456)
(xy -0.014692 10.001478)
(xy -0.054602 10.020897)
(xy -0.190797 9.941873)
(xy -0.565457 9.724424)
(xy -1.145846 9.38755)
(xy -1.89923 8.950252)
(xy -2.792873 8.431531)
(xy -3.79404 7.850387)
(xy -4.311728 7.549884)
(xy -8.093678 5.354558)
(xy -4.834362 5.354558)
(xy -4.714685 5.414824)
(xy -4.350373 5.460455)
(xy -3.810284 5.484235)
(xy -3.580041 5.486049)
(xy -2.273456 5.484444)
(xy -2.228944 5.416902)
(xy 0 5.416902)
(xy 0.144599 5.449271)
(xy 0.529681 5.473766)
(xy 1.082172 5.486411)
(xy 1.293519 5.487304)
(xy 2.587037 5.486953)
(xy 4.076544 3.191492)
(xy 4.585921 2.406414)
(xy 5.055444 1.682612)
(xy 5.450196 1.073923)
(xy 5.735259 0.634187)
(xy 5.85583 0.448015)
(xy 6.145609 0)
(xy 3.484858 0)
(xy 1.742429 2.673075)
(xy 1.216157 3.483751)
(xy 0.753663 4.202529)
(xy 0.380515 4.789146)
(xy 0.122279 5.203342)
(xy 0.004525 5.404855)
(xy 0 5.416902)
(xy -2.228944 5.416902)
(xy 1.254321 0.131492)
(xy 2.018632 -1.029527)
(xy 2.728512 -2.110323)
(xy 3.365497 -3.082597)
(xy 3.911119 -3.918052)
(xy 4.346912 -4.58839)
(xy 4.654411 -5.065315)
(xy 4.81515 -5.320529)
(xy 4.834363 -5.354557)
(xy 4.714686 -5.414823)
(xy 4.350374 -5.460455)
(xy 3.810285 -5.484234)
(xy 3.580042 -5.486049)
(xy 2.273457 -5.484443)
(xy -1.254321 -0.131491)
(xy -2.018631 1.029528)
(xy -2.728512 2.110324)
(xy -3.365496 3.082597)
(xy -3.911118 3.918052)
(xy -4.346911 4.588391)
(xy -4.654411 5.065316)
(xy -4.815149 5.32053)
(xy -4.834362 5.354558)
(xy -8.093678 5.354558)
(xy -8.545061 5.092542)
(xy -8.545061 0)
(xy -6.145608 0)
(xy -3.484857 0)
(xy -1.742428 -2.673074)
(xy -1.216156 -3.48375)
(xy -0.753662 -4.202528)
(xy -0.380514 -4.789145)
(xy -0.122279 -5.203341)
(xy -0.004524 -5.404854)
(xy 0 -5.416901)
(xy -0.144599 -5.44927)
(xy -0.52968 -5.473765)
(xy -1.082171 -5.48641)
(xy -1.293518 -5.487303)
(xy -2.587037 -5.486952)
(xy -4.076543 -3.191491)
(xy -4.58592 -2.406413)
(xy -5.055443 -1.682611)
(xy -5.450195 -1.073923)
(xy -5.735258 -0.634186)
(xy -5.855829 -0.448015)
(xy -6.145608 0)
(xy -8.545061 0)
(xy -8.545061 -5.092128)
(xy -4.27253 -7.55447)
(xy 0 -10.016812)
(xy 8.545062 -5.092128)
) (layer "F.SilkS") (width 0.01) (fill solid) (tstamp 49376614-af83-439b-b042-181abe97eab2))
)
(footprint "Capacitor_THT:C_Radial_D10.0mm_H16.0mm_P5.00mm" (layer "F.Cu")
(tedit 5BC5C9BA) (tstamp c6c09f1d-8526-474d-84d1-9ef4e9ca3baa)
(at 118.86 48.8)
(descr "C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=16mm, Non-Polar Electrolytic Capacitor")
(tags "C Radial series Radial pin pitch 5.00mm diameter 10mm height 16mm Non-Polar Electrolytic Capacitor")
(property "Sheetfile" "ESP32_Wled_hub.kicad_sch")
(property "Sheetname" "")
(path "/71e9d074-5c1b-43a6-9ff2-2f659d01a79c")
(attr through_hole)
(fp_text reference "C1" (at 2.5 -6.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bf3a5014-b0ff-42bc-b02b-8a1e35b3fc76)
)
(fp_text value "1000uF" (at 2.5 6.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c50633bb-c416-41ac-b07b-ccd0af7d982f)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c11ccc65-8c8e-4fbf-8fdb-233b56c5ea68)
)
(fp_circle (center 2.5 0) (end 7.62 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp b53b6179-1d39-4700-adf1-cb49dc66a990))
(fp_circle (center 2.5 0) (end 7.75 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp fe168882-7b05-4641-bf4a-7b5fac6ba8a9))
(fp_circle (center 2.5 0) (end 7.5 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 7d9b4df1-6445-49cb-a77d-eaa86d08b0ce))
(pad "1" thru_hole circle locked (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Vbus") (pintype "passive") (tstamp aee7d901-d5e7-4bde-bd32-9fd209fd307f))
(pad "2" thru_hole circle locked (at 5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp 242da24a-cd85-4daa-aa96-ccbadbcfba0b))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Radial_D10.0mm_H16.0mm_P5.00mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal" (layer "F.Cu")
(tedit 5B294EBC) (tstamp d3512588-edde-4735-a9a1-be9f02a7cc04)
(at 120.36 78.5 90)
(descr "Terminal Block Phoenix MKDS-1,5-2-5.08, 2 pins, pitch 5.08mm, size 10.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MKDS-1,5-2-5.08 pitch 5.08mm size 10.2x9.8mm^2 drill 1.3mm pad 2.6mm")
(property "Sheetfile" "ESP32_Wled_hub.kicad_sch")
(property "Sheetname" "")
(path "/5a25ebde-7d3a-4958-813a-2a9f4f6edaf0")
(attr through_hole)
(fp_text reference "J1" (at 2.6 -3.7 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 49772ec2-b234-4a8d-ac9a-dfc43e3dd4d3)
)
(fp_text value "Screw_Terminal_01x02" (at 2.54 5.66 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 75aaa758-c71e-4301-9dfe-aaf75724b73a)
)
(fp_text user "${REFERENCE}" (at 2.54 3.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f768c20f-2a32-4fea-a800-b4a82a15d553)
)
(fp_line (start -2.6 -5.261) (end 7.68 -5.261) (layer "F.SilkS") (width 0.12) (tstamp 097c0309-c6c3-4ba8-be84-f8e75f093831))
(fp_line (start -2.6 4.1) (end 7.68 4.1) (layer "F.SilkS") (width 0.12) (tstamp 189c54ec-05be-46a0-93fa-42df75545856))
(fp_line (start -2.84 4.16) (end -2.84 4.9) (layer "F.SilkS") (width 0.12) (tstamp 2d109ff6-27c1-4e7c-877b-f84b3f819540))
(fp_line (start 6.15 -1.275) (end 6.115 -1.239) (layer "F.SilkS") (width 0.12) (tstamp 6a277219-bb06-41a3-9db9-d19bf10eb337))
(fp_line (start -2.6 -5.261) (end -2.6 4.66) (layer "F.SilkS") (width 0.12) (tstamp 879dcbdf-30dc-4f81-b637-1fd4000b50f1))
(fp_line (start 4.046 1.239) (end 4.011 1.274) (layer "F.SilkS") (width 0.12) (tstamp 8adcd312-ab4a-4413-b6a5-effc7c373c70))
(fp_line (start 3.853 1.023) (end 3.806 1.069) (layer "F.SilkS") (width 0.12) (tstamp 9918c5b5-1c15-4ec9-ae58-aee6884a34b0))
(fp_line (start -2.84 4.9) (end -2.34 4.9) (layer "F.SilkS") (width 0.12) (tstamp a5b40df4-4d8f-4b25-b2e7-4d2e44c53578))
(fp_line (start 7.68 -5.261) (end 7.68 4.66) (layer "F.SilkS") (width 0.12) (tstamp c5659d85-4e68-4ee7-aea7-324cee125bb2))
(fp_line (start -2.6 -2.301) (end 7.68 -2.301) (layer "F.SilkS") (width 0.12) (tstamp caaac10f-fff3-4567-8b4f-23e44ea7421b))
(fp_line (start 6.355 -1.069) (end 6.308 -1.023) (layer "F.SilkS") (width 0.12) (tstamp d13e8b6d-8b82-4ae1-a8ab-4cc22756669a))
(fp_line (start -2.6 4.66) (end 7.68 4.66) (layer "F.SilkS") (width 0.12) (tstamp ef3c20a9-74fe-4bea-a401-04991b56d78b))
(fp_line (start -2.6 2.6) (end 7.68 2.6) (layer "F.SilkS") (width 0.12) (tstamp f007eacd-cde9-49e9-b1d1-4508796cc6a6))
(fp_arc (start 0.683318 1.534756) (mid 0.349292 1.643288) (end 0 1.68) (layer "F.SilkS") (width 0.12) (tstamp 01d2f9bc-2a40-45e2-aace-1a8287a77613))
(fp_arc (start 0.028805 1.680253) (mid -0.335551 1.646659) (end -0.684 1.535) (layer "F.SilkS") (width 0.12) (tstamp 452fc0a0-38a9-4217-86a8-959200c7ad90))
(fp_arc (start -0.683042 -1.535427) (mid 0.000524 -1.680501) (end 0.684 -1.535) (layer "F.SilkS") (width 0.12) (tstamp a24665dd-f547-4b22-bca9-e623facf4851))
(fp_arc (start 1.535427 -0.683042) (mid 1.680501 0.000524) (end 1.535 0.684) (layer "F.SilkS") (width 0.12) (tstamp dafe6b83-eb3b-467f-a569-9f3ec0c65625))
(fp_arc (start -1.535427 0.683042) (mid -1.680501 -0.000524) (end -1.535 -0.684) (layer "F.SilkS") (width 0.12) (tstamp e50f3aa8-ce7d-480b-8970-ce974ebb6ef9))
(fp_circle (center 5.08 0) (end 6.76 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 3faa37f9-f43e-4a39-a505-8dea3e4e48b1))
(fp_line (start -3.04 -5.71) (end -3.04 5.1) (layer "F.CrtYd") (width 0.05) (tstamp 0b19eaa6-0683-4d7f-86d9-491c9b0ed27d))
(fp_line (start 8.13 -5.71) (end -3.04 -5.71) (layer "F.CrtYd") (width 0.05) (tstamp 30b67311-4a25-4ff6-b039-8b63a8d8435a))
(fp_line (start 8.13 5.1) (end 8.13 -5.71) (layer "F.CrtYd") (width 0.05) (tstamp 48cc21ce-c00d-4b37-9243-62c970c20152))
(fp_line (start -3.04 5.1) (end 8.13 5.1) (layer "F.CrtYd") (width 0.05) (tstamp 8a8fbe83-dafd-4a29-9543-267bbfa3cded))
(fp_line (start -2.54 2.6) (end 7.62 2.6) (layer "F.Fab") (width 0.1) (tstamp 06860a96-9024-4961-be5b-75ca7af1d996))
(fp_line (start -2.54 -2.3) (end 7.62 -2.3) (layer "F.Fab") (width 0.1) (tstamp 56a51644-b55f-492b-aa38-d2c3e210984a))
(fp_line (start -2.04 4.6) (end -2.54 4.1) (layer "F.Fab") (width 0.1) (tstamp 5be29995-ce72-4907-83d6-de89bfe201b7))
(fp_line (start 0.955 -1.138) (end -1.138 0.955) (layer "F.Fab") (width 0.1) (tstamp 621a4ecc-ab75-4d67-8f43-b240467c7c59))
(fp_line (start 6.218 -0.955) (end 4.126 1.138) (layer "F.Fab") (width 0.1) (tstamp b80b6596-4fbd-40ff-ac5c-6709b32c0242))
(fp_line (start -2.54 -5.2) (end 7.62 -5.2) (layer "F.Fab") (width 0.1) (tstamp b9c3387d-aead-45c5-a28c-bc48d72a0777))
(fp_line (start 7.62 -5.2) (end 7.62 4.6) (layer "F.Fab") (width 0.1) (tstamp c2dc9cfd-c5ea-4d25-bc89-e7c48837663d))
(fp_line (start 7.62 4.6) (end -2.04 4.6) (layer "F.Fab") (width 0.1) (tstamp c6572db3-53c6-44c0-87ba-0d5a5981aa0d))
(fp_line (start 1.138 -0.955) (end -0.955 1.138) (layer "F.Fab") (width 0.1) (tstamp d3d3b61e-72a7-4ced-b048-77694ef8fa81))
(fp_line (start -2.54 4.1) (end 7.62 4.1) (layer "F.Fab") (width 0.1) (tstamp d74f7fae-7a50-40eb-bb78-aad3d94a03cc))
(fp_line (start -2.54 4.1) (end -2.54 -5.2) (layer "F.Fab") (width 0.1) (tstamp e6ce6c79-9170-4ea2-b9bd-87d942d1f8ee))
(fp_line (start 6.035 -1.138) (end 3.943 0.955) (layer "F.Fab") (width 0.1) (tstamp fb56868c-b19c-4212-a841-9013b46ee67d))
(fp_circle (center 5.08 0) (end 6.58 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 3afe9e8a-a6f8-41da-98b3-705e23be9e97))
(fp_circle (center 0 0) (end 1.5 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 97353067-49c7-424b-b0c3-9e3cd462b0d3))
(pad "1" thru_hole rect (at 0 0 90) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 15f6edf6-ca99-4936-a366-b591ef4ffb27))
(pad "2" thru_hole circle (at 5.08 0 90) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 1 "Vbus") (pinfunction "Pin_2") (pintype "passive") (tstamp 334fe293-3e67-4319-8c33-ffefcb519490))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "ESP32_Wled_hub:SOIC-14-DIP-14-combo" (layer "F.Cu")
(tedit 63011EB1) (tstamp e45f63fe-97a1-472d-9b2c-5df8bbe9a56c)
(at 90.76 66.9 90)
(descr "SOIC, 14 Pin (JEDEC MS-012AB, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_14.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOIC SO")
(property "Sheetfile" "ESP32_Wled_hub.kicad_sch")
(property "Sheetname" "")
(path "/ac7cbf0f-4d61-4790-b095-8a7384741a3c")
(attr smd)
(fp_text reference "U1" (at -2.35 -5.4 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b1169a2d-8998-4b50-a48d-c520bcc1b8e1)
)
(fp_text value "74LS125" (at 0 5.28 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 81bbc3ff-3938-49ac-8297-ce2bcc9a42bd)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.98 0.98) (thickness 0.15)))
(tstamp 98e81e80-1f85-4152-be3f-99785ea97751)
)
(fp_text user "${REFERENCE}" (at 3.71 -0.005 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b3d08afa-f296-4e3b-8825-73b6331d35bf)
)
(fp_line (start 0 -4.435) (end 1.95 -4.435) (layer "F.SilkS") (width 0.12) (tstamp 03d88a85-11fd-47aa-954c-c318bb15294a))
(fp_line (start 2.71 -8.955) (end 1.06 -8.955) (layer "F.SilkS") (width 0.12) (tstamp 0dcdf1b8-13c6-48b4-bd94-5d26038ff231))
(fp_line (start 0 4.435) (end -1.95 4.435) (layer "F.SilkS") (width 0.12) (tstamp 1a2f72d1-0b36-4610-afc4-4ad1660d5d3b))
(fp_line (start 0 -4.435) (end -3.45 -4.435) (layer "F.SilkS") (width 0.12) (tstamp 51c4dc0a-5b9f-4edf-a83f-4a12881e42ef))
(fp_line (start 6.36 8.945) (end 6.36 -8.955) (layer "F.SilkS") (width 0.12) (tstamp 58dc14f9-c158-4824-a84e-24a6a482a7a4))
(fp_line (start 6.36 -8.955) (end 4.71 -8.955) (layer "F.SilkS") (width 0.12) (tstamp 842e430f-0c35-45f3-a0b5-95ae7b7ae388))
(fp_line (start 1.06 8.945) (end 6.36 8.945) (layer "F.SilkS") (width 0.12) (tstamp b635b16e-60bb-4b3e-9fc3-47d34eef8381))
(fp_line (start 1.06 -8.955) (end 1.06 8.945) (layer "F.SilkS") (width 0.12) (tstamp dde3dba8-1b81-466c-93a3-c284ff4da1ef))
(fp_line (start 0 4.435) (end 1.95 4.435) (layer "F.SilkS") (width 0.12) (tstamp f976e2cc-36f9-4479-a816-2c74d1d5da6f))
(fp_arc (start 4.71 -8.955) (mid 3.71 -7.955) (end 2.71 -8.955) (layer "F.SilkS") (width 0.12) (tstamp 13475e15-f37c-4de8-857e-1722b0c39513))
(fp_line (start -3.7 -4.58) (end -3.7 4.58) (layer "F.CrtYd") (width 0.05) (tstamp 120a7b0f-ddfd-4447-85c1-35665465acdb))
(fp_line (start 3.7 -4.58) (end -3.7 -4.58) (layer "F.CrtYd") (width 0.05) (tstamp 2732632c-4768-42b6-bf7f-14643424019e))
(fp_line (start 8.6 -9.175) (end -1.2 -9.175) (layer "F.CrtYd") (width 0.05) (tstamp 48f827a8-6e22-4a2e-abdc-c2a03098d883))
(fp_line (start -1.2 -9.175) (end -1.2 9.175) (layer "F.CrtYd") (width 0.05) (tstamp 854dd5d4-5fd2-4730-bd49-a9cd8299a065))
(fp_line (start 8.6 9.175) (end 8.6 -9.175) (layer "F.CrtYd") (width 0.05) (tstamp 8d55e186-3e11-40e8-a65e-b36a8a00069e))
(fp_line (start -3.7 4.58) (end 3.7 4.58) (layer "F.CrtYd") (width 0.05) (tstamp 9c8ccb2a-b1e9-4f2c-94fe-301b5975277e))
(fp_line (start -1.2 9.175) (end 8.6 9.175) (layer "F.CrtYd") (width 0.05) (tstamp cef6f603-8a0b-4dd0-af99-ebfbef7d1b4b))
(fp_line (start 3.7 4.58) (end 3.7 -4.58) (layer "F.CrtYd") (width 0.05) (tstamp e877bf4a-4210-4bd3-b7b0-806eb4affc5b))
(fp_line (start 0.535 8.885) (end 0.535 -7.895) (layer "F.Fab") (width 0.1) (tstamp 0147f16a-c952-4891-8f53-a9fb8cddeb8d))
(fp_line (start 0.535 -7.895) (end 1.535 -8.895) (layer "F.Fab") (width 0.1) (tstamp 0d0bb7b2-a6e5-46d2-9492-a1aa6e5a7b2f))
(fp_line (start 1.535 -8.895) (end 6.885 -8.895) (layer "F.Fab") (width 0.1) (tstamp 4e3d7c0d-12e3-42f2-b944-e4bcdbbcac2a))
(fp_line (start -1.95 4.325) (end -1.95 -3.35) (layer "F.Fab") (width 0.1) (tstamp 5b2b5c7d-f943-4634-9f0a-e9561705c49d))
(fp_line (start 6.885 8.885) (end 0.535 8.885) (layer "F.Fab") (width 0.1) (tstamp 6a44418c-7bb4-4e99-8836-57f153c19721))
(fp_line (start 1.95 4.325) (end -1.95 4.325) (layer "F.Fab") (width 0.1) (tstamp a03e565f-d8cd-4032-aae3-b7327d4143dd))
(fp_line (start -1.95 -3.35) (end -0.975 -4.325) (layer "F.Fab") (width 0.1) (tstamp aa02e544-13f5-4cf8-a5f4-3e6cda006090))
(fp_line (start 6.885 -8.895) (end 6.885 8.885) (layer "F.Fab") (width 0.1) (tstamp c70d9ef3-bfeb-47e0-a1e1-9aeba3da7864))
(fp_line (start -0.975 -4.325) (end 1.95 -4.325) (layer "F.Fab") (width 0.1) (tstamp d1262c4d-2245-4c4f-8f35-7bb32cd9e21e))
(fp_line (start 1.95 -4.325) (end 1.95 4.325) (layer "F.Fab") (width 0.1) (tstamp d22e95aa-f3db-4fbc-a331-048a2523233e))
(pad "1" smd roundrect (at -2.475 -3.81 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "input") (tstamp 4d4b0fcd-2c79-4fc3-b5fa-7a0741601344))
(pad "1" thru_hole rect (at -0.1 -7.625 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "input") (tstamp e25ce415-914a-48fe-bf09-324317917b2e))
(pad "2" thru_hole oval (at -0.1 -5.085 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "LV1") (pintype "input") (tstamp 587a157d-dedf-4558-a037-1a94bbba1848))
(pad "2" smd roundrect (at -2.475 -2.54 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "LV1") (pintype "input") (tstamp 9762c9ed-64d8-4f3e-baf6-f6ba6effc919))
(pad "3" thru_hole oval (at -0.1 -2.545 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "HV1") (pintype "tri_state") (tstamp 78f88cf6-751c-4e9b-ae75-fb8b6d44ff39))
(pad "3" smd roundrect (at -2.475 -1.27 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "HV1") (pintype "tri_state") (tstamp c19dbe3c-ced0-48f7-a91d-777569cfb936))
(pad "4" thru_hole oval (at -0.1 -0.005 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "input") (tstamp 0867287d-2e6a-4d69-a366-c29f88198f2b))
(pad "4" smd roundrect (at -2.475 0 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "input") (tstamp 75286985-9fa5-4d30-89c5-493b6e63cd66))
(pad "5" thru_hole oval (at -0.1 2.535 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "LV2") (pintype "input") (tstamp 1b54105e-6590-4d26-a763-ecfcf81eedc4))
(pad "5" smd roundrect (at -2.475 1.27 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "LV2") (pintype "input") (tstamp afd3dbad-e7a8-4e4c-b77c-4065a69aefa2))
(pad "6" thru_hole oval (at -0.1 5.075 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "HV2") (pintype "tri_state") (tstamp 0f41a909-27c4-4be2-9d5e-9ae2108c8ff5))
(pad "6" smd roundrect (at -2.475 2.54 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "HV2") (pintype "tri_state") (tstamp 632acde9-b7fd-4f04-8cb4-d2cbb06b3595))
(pad "7" thru_hole oval (at -0.1 7.615 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 35354519-a28c-40c4-befd-0943e98dea53))
(pad "7" smd roundrect (at -2.475 3.81 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 38f2d955-ea7a-4a21-aba6-02ae23f1bd4a))
(pad "8" smd roundrect (at 2.475 3.81 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "HV3") (pintype "tri_state") (tstamp 6b25f522-8e2d-4cd8-9d5d-a2b80f60133b))
(pad "8" thru_hole oval (at 7.52 7.615 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "HV3") (pintype "tri_state") (tstamp dabe541b-b164-4180-97a4-5ca761b86800))
(pad "9" thru_hole oval (at 7.52 5.075 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "LV3") (pintype "input") (tstamp 9dab0cb7-2557-4419-963b-5ae736517f62))
(pad "9" smd roundrect (at 2.475 2.54 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "LV3") (pintype "input") (tstamp e12e827e-36be-4503-8eef-6fc7e8bc5d49))
(pad "10" smd roundrect (at 2.475 1.27 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "input") (tstamp 417f13e4-c121-485a-a6b5-8b55e70350b8))
(pad "10" thru_hole oval (at 7.52 2.535 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "input") (tstamp c201e1b2-fc01-4110-bdaa-a33290468c83))
(pad "11" thru_hole oval (at 7.52 -0.005 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "HV4") (pintype "tri_state") (tstamp 0088d107-13d8-496c-8da6-7bbeb9d096b0))
(pad "11" smd roundrect (at 2.475 0 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "HV4") (pintype "tri_state") (tstamp 6a780180-586a-4241-a52d-dc7a5ffcc966))
(pad "12" smd roundrect (at 2.475 -1.27 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "LV4") (pintype "input") (tstamp 67621f9e-0a6a-4778-ad69-04dcf300659c))
(pad "12" thru_hole oval (at 7.52 -2.545 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "LV4") (pintype "input") (tstamp 68e09be7-3bbc-4443-a838-209ce20b2bef))
(pad "13" smd roundrect (at 2.475 -2.54 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "input") (tstamp 128e34ce-eee7-477d-b905-a493e98db783))
(pad "13" thru_hole oval (at 7.52 -5.085 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "input") (tstamp c801d42e-dd94-493e-bd2f-6c3ddad43f55))
(pad "14" smd roundrect (at 2.475 -3.81 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "Vbus") (pinfunction "VCC") (pintype "power_in") (tstamp 3172f2e2-18d2-4a80-ae30-5707b3409798))
(pad "14" thru_hole oval (at 7.52 -7.625 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Vbus") (pinfunction "VCC") (pintype "power_in") (tstamp 712d6a7d-2b62-464f-b745-fd2a6b0187f6))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-14_3.9x8.7mm_P1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-3-5.08_1x03_P5.08mm_Horizontal" (layer "F.Cu")
(tedit 5B294EBC) (tstamp f66e7f65-5501-4321-8ccd-03563508f0c3)
(at 83.825 42.875 180)
(descr "Terminal Block Phoenix MKDS-1,5-3-5.08, 3 pins, pitch 5.08mm, size 15.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MKDS-1,5-3-5.08 pitch 5.08mm size 15.2x9.8mm^2 drill 1.3mm pad 2.6mm")
(property "Sheetfile" "ESP32_Wled_hub.kicad_sch")
(property "Sheetname" "")
(path "/5ec983e6-c6ee-4e0d-b14d-83e1caa18508")
(attr through_hole)
(fp_text reference "J7" (at 5.265 -3.425) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6bfab902-8625-4b2e-8c24-5092d47d0de8)
)
(fp_text value "OUT 4" (at 5.08 5.66) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d3ffbaf8-6b20-4c43-96f7-9b88cf0a305f)
)
(fp_text user "${REFERENCE}" (at 5.08 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 29247d4e-2970-4492-af98-cbe5a7c43fda)
)
(fp_line (start -2.6 4.1) (end 12.76 4.1) (layer "F.SilkS") (width 0.12) (tstamp 21ec310c-afa2-4595-bab5-c6ae1e9a8417))
(fp_line (start 11.23 -1.275) (end 11.195 -1.239) (layer "F.SilkS") (width 0.12) (tstamp 3c4329db-4ede-479c-997c-374e89902f61))
(fp_line (start 3.853 1.023) (end 3.806 1.069) (layer "F.SilkS") (width 0.12) (tstamp 4792c2b5-7bb0-4ba2-b6f2-3ef1f0e802ce))
(fp_line (start -2.84 4.9) (end -2.34 4.9) (layer "F.SilkS") (width 0.12) (tstamp 65ba1378-c986-45f1-9d10-63f5630b34c1))
(fp_line (start -2.6 4.66) (end 12.76 4.66) (layer "F.SilkS") (width 0.12) (tstamp 66d971b9-10a0-41f4-91b7-1d6842ea0b4d))
(fp_line (start 11.435 -1.069) (end 11.388 -1.023) (layer "F.SilkS") (width 0.12) (tstamp 6df354e5-0ed8-486f-aaba-922f1d8df851))
(fp_line (start -2.6 -5.261) (end -2.6 4.66) (layer "F.SilkS") (width 0.12) (tstamp 70baef17-e834-4128-ab71-7a0e5bb0e8be))
(fp_line (start 9.126 1.239) (end 9.091 1.274) (layer "F.SilkS") (width 0.12) (tstamp 720c67b8-4657-41ae-ae43-c8da408b5d9e))
(fp_line (start -2.6 -2.301) (end 12.76 -2.301) (layer "F.SilkS") (width 0.12) (tstamp 75e89c98-f890-426a-8fa1-7783981e0a3c))
(fp_line (start 6.355 -1.069) (end 6.308 -1.023) (layer "F.SilkS") (width 0.12) (tstamp 76cec44e-1374-41e1-9e39-24281d608b83))
(fp_line (start 12.76 -5.261) (end 12.76 4.66) (layer "F.SilkS") (width 0.12) (tstamp 93b4ba79-90d0-48a3-97cc-50ed69cdc627))
(fp_line (start -2.84 4.16) (end -2.84 4.9) (layer "F.SilkS") (width 0.12) (tstamp 9e7cb52f-3bca-40b3-a79f-340d11cdb039))
(fp_line (start 6.15 -1.275) (end 6.115 -1.239) (layer "F.SilkS") (width 0.12) (tstamp ac2f1783-738d-48fe-bef9-44864c16e87c))
(fp_line (start 4.046 1.239) (end 4.011 1.274) (layer "F.SilkS") (width 0.12) (tstamp d4154f69-21c9-4af5-91b2-b8dea156200e))
(fp_line (start -2.6 2.6) (end 12.76 2.6) (layer "F.SilkS") (width 0.12) (tstamp ec41bd13-d169-4b04-82e8-82bf8614a606))
(fp_line (start -2.6 -5.261) (end 12.76 -5.261) (layer "F.SilkS") (width 0.12) (tstamp ed9fa7f1-c410-42e5-9bc1-ad6bd344391f))
(fp_line (start 8.933 1.023) (end 8.886 1.069) (layer "F.SilkS") (width 0.12) (tstamp fb80ec7a-b41c-47ce-88ad-426f8849926c))
(fp_arc (start 1.535427 -0.683042) (mid 1.680501 0.000524) (end 1.535 0.684) (layer "F.SilkS") (width 0.12) (tstamp 147ddcca-5eb3-4302-b1bf-01383fc9ed96))
(fp_arc (start 0.683318 1.534756) (mid 0.349292 1.643288) (end 0 1.68) (layer "F.SilkS") (width 0.12) (tstamp 15726e40-44c3-4dfd-b1e6-c5949c00a75b))
(fp_arc (start -1.535427 0.683042) (mid -1.680501 -0.000524) (end -1.535 -0.684) (layer "F.SilkS") (width 0.12) (tstamp 1f2dc288-4960-4a9d-8c0d-3474d8b43843))
(fp_arc (start 0.028805 1.680253) (mid -0.335551 1.646659) (end -0.684 1.535) (layer "F.SilkS") (width 0.12) (tstamp 25b5bd75-5df8-41e4-aee3-b067f228cacf))
(fp_arc (start -0.683042 -1.535427) (mid 0.000524 -1.680501) (end 0.684 -1.535) (layer "F.SilkS") (width 0.12) (tstamp ca6b774e-c29f-4bd6-8b0a-46bbe776a618))
(fp_circle (center 10.16 0) (end 11.84 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 0b8ceece-c05d-4f0e-b938-e90c8b58ba81))
(fp_circle (center 5.08 0) (end 6.76 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 4c3e1426-c6e6-4301-880c-cd7d6c3cf37c))
(fp_line (start 13.21 -5.71) (end -3.04 -5.71) (layer "F.CrtYd") (width 0.05) (tstamp a21946e4-4c39-4737-801b-2250133670ba))