-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathRatGDO-OpenSource-D1Mini-ESP32.kicad_pcb
3730 lines (3708 loc) · 166 KB
/
RatGDO-OpenSource-D1Mini-ESP32.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")
(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)
(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 true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Gerber Files/")
)
)
(net 0 "")
(net 1 "Net-(Q2-G)")
(net 2 "+3.3V")
(net 3 "GND")
(net 4 "+5V")
(net 5 "Net-(U1-IO_23{slash}D7)")
(net 6 "unconnected-(U1-CLK-Pad40)")
(net 7 "unconnected-(U1-SD0-Pad39)")
(net 8 "unconnected-(U1-SD1-Pad38)")
(net 9 "unconnected-(U1-TD0-Pad37)")
(net 10 "unconnected-(U1-IO_16{slash}D4-Pad31)")
(net 11 "unconnected-(U1-IO_12{slash}TDI-Pad30)")
(net 12 "unconnected-(U1-IO_17{slash}D3-Pad29)")
(net 13 "unconnected-(U1-IO_32-Pad28)")
(net 14 "unconnected-(U1-IO_25-Pad26)")
(net 15 "unconnected-(U1-IO_27-Pad24)")
(net 16 "unconnected-(U1-RXD-Pad23)")
(net 17 "unconnected-(U1-TXD-Pad21)")
(net 18 "unconnected-(U1-IO_10{slash}SD3-Pad20)")
(net 19 "unconnected-(U1-CMD-Pad19)")
(net 20 "unconnected-(U1-IO_13{slash}TCK-Pad18)")
(net 21 "unconnected-(U1-IO_09{slash}SD2-Pad17)")
(net 22 "unconnected-(U1-NC-Pad15)")
(net 23 "Net-(Q1-G)")
(net 24 "unconnected-(U1-IO_14{slash}TMS-Pad13)")
(net 25 "unconnected-(U1-IO_34-Pad11)")
(net 26 "unconnected-(U1-IO_19{slash}D6-Pad10)")
(net 27 "unconnected-(U1-IO_33-Pad9)")
(net 28 "unconnected-(U1-IO_18{slash}D5-Pad8)")
(net 29 "unconnected-(U1-IO_35-Pad7)")
(net 30 "unconnected-(U1-IO_26{slash}D0-Pad6)")
(net 31 "unconnected-(U1-IO_39{slash}SVN-Pad5)")
(net 32 "unconnected-(U1-IO_36{slash}SVP{slash}A0-Pad4)")
(net 33 "unconnected-(U1-NC-Pad3)")
(net 34 "unconnected-(U1-RST-Pad2)")
(net 35 "unconnected-(U1-IO_02-Pad36)")
(net 36 "unconnected-(U1-IO_00-Pad34)")
(net 37 "unconnected-(U1-IO_04-Pad32)")
(net 38 "unconnected-(U1-IO_05{slash}D8-Pad14)")
(net 39 "BLK{slash}OBST")
(net 40 "RED{slash}CTRL")
(net 41 "/ESP_RX")
(net 42 "/ESP_TX")
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 1d510a84-4f2c-46f3-9090-2dca07a95c59)
(at 156 67 180)
(descr "Resistor SMD 0805 (2012 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 "LCSC#" "C17414")
(property "Sheetfile" "RatGDO-OpenSource-D1Mini-ESP32.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/1c97f100-49db-4efe-ae46-9a46188d37b5")
(attr smd)
(fp_text reference "R3" (at 3.048 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d2cfd50-4886-44f7-adbb-6dd8045628e6)
)
(fp_text value "10k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9b0de5d7-f6b1-4120-b750-4ac51224c2e1)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp f0537d44-f84d-429a-904f-d5f3ca133d7b)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 76772597-c222-4de0-959a-c71098aa08b9))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19d3e90a-55e2-4e10-95f1-b40689d92285))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d60d389-0432-440d-8004-426bd94179c4))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eadfd7fe-dc8f-4dc7-91fb-4939ccef49d9))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fcd97371-bd48-4589-a686-1bf665d92f49))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 00bb522d-2ba6-41e3-a0a7-96fc104e84b7))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 22476ee3-60a1-4323-800f-dfd39eb47417))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2e017282-5395-41bf-9cb9-ebe40157169e))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aaa22ebd-b910-4732-82a5-6dfb53edd13b))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 003c2f5e-5b0b-4206-b902-0ee501b3f5bf))
(pad "1" smd roundrect (at -1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 42 "/ESP_TX") (pintype "passive") (tstamp a1bfd80d-344e-4acc-b780-d4d84b74e9e7))
(pad "2" smd roundrect (at 1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 3 "GND") (pintype "passive") (tstamp 86d2d7d6-28d7-4c90-924f-eb3c69deb11b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 222de32e-343f-4f25-8e82-ba217abe25f8)
(at 138.46 100.5 90)
(descr "Through hole straight socket strip, 1x03, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x03 2.54mm single row")
(property "Sheetfile" "RatGDO-OpenSource-D1Mini-ESP32.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic screw terminal, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "screw terminal")
(attr through_hole exclude_from_pos_files exclude_from_bom)
(fp_text reference "J3" (at 0 -5.31 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 88c21dde-af13-4cc2-8293-977354fc253a)
)
(fp_text value "Screw_Terminal_01x03" (at 0 5.31 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 71130d34-2c2d-4a28-ae0f-7e96423d829d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a4f43b1a-5ce0-401c-95a8-32b771403519)
)
(fp_line (start -1.33 -1.27) (end -1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 546701c6-f28c-408d-a1e4-6950fecc5f43))
(fp_line (start -1.33 -1.27) (end 1.33 -1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 196463aa-c0ed-4b4f-a078-f780e39039aa))
(fp_line (start -1.33 3.87) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4f8ab958-a286-4669-8d04-cb983c102280))
(fp_line (start 0 -3.87) (end 1.33 -3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cad2598e-eacd-4a2c-8304-9dd8575b1532))
(fp_line (start 1.33 -3.87) (end 1.33 -2.54)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8a7169da-7965-48d7-9dc9-ae83aed06110))
(fp_line (start 1.33 -1.27) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c62ae293-43d0-4f5f-8d45-422a9ce924ac))
(fp_line (start -1.8 -4.34) (end 1.75 -4.34)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 80f1cbde-d160-4082-a52e-1973c7b65cd6))
(fp_line (start -1.8 4.31) (end -1.8 -4.34)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6e3e1d62-ffa6-46b5-b74e-f2c98453c343))
(fp_line (start 1.75 -4.34) (end 1.75 4.31)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 58d28c85-8742-4fcc-a621-48ac0bf4a33b))
(fp_line (start 1.75 4.31) (end -1.8 4.31)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 734a8eb2-68fb-4bfb-a4ae-d6b6d688f0b4))
(fp_line (start -1.27 -3.81) (end 0.635 -3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d57cec81-2161-43a3-8070-b5c0029fb00d))
(fp_line (start -1.27 3.81) (end -1.27 -3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 95b44955-59ce-40a2-a555-9ec6f72fcf41))
(fp_line (start 0.635 -3.81) (end 1.27 -3.175)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d32ec678-3a64-40d0-86ec-0fa409b50add))
(fp_line (start 1.27 -3.175) (end 1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3250524f-26d3-41fc-b8a6-06f2f14a7121))
(fp_line (start 1.27 3.81) (end -1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ac6107a-5d86-4813-be20-1c3c59127876))
(pad "1" thru_hole rect (at 0 -2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 39 "BLK{slash}OBST") (pinfunction "Pin_1") (pintype "passive") (tstamp b733b297-2a24-48a5-ab84-0fc049a3149e))
(pad "2" thru_hole oval (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 40 "RED{slash}CTRL") (pinfunction "Pin_2") (pintype "passive") (tstamp 16c2e883-5bb0-40da-8929-a8056c8a5732))
(pad "3" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 7c43baa5-afed-4cfb-a9dd-21ca9dc1441e))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 2.54 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 25725776-50bd-4dbe-9e81-daff3d7bc6f1)
(at 156 83.8 180)
(descr "Resistor SMD 0805 (2012 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 "LCSC#" "C17414")
(property "Sheetfile" "RatGDO-OpenSource-D1Mini-ESP32.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/0fa779ea-9c46-43d7-aa02-d6b4fb601492")
(attr smd)
(fp_text reference "R6" (at 3.302 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cad16b89-70aa-4ee9-b60d-96f08179e555)
)
(fp_text value "10k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0aef63bb-543f-4b89-87dd-726a187226e6)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 7c095b23-b594-4b08-a1af-937bcd3b93ba)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5497139b-0f51-42d6-9071-86a3f9b2bde1))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a6a9265-203b-4d43-a63b-53d8313a086b))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp adb2691a-e1dc-4144-94e7-62b0e1d95c73))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a41ff136-acac-4921-b029-f2b1f4c0c53c))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c3972be7-0396-4881-ab32-2319a703a48a))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ddf89107-5881-4d2a-bb94-e8b2c032ac4d))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d30e905a-2370-4f40-a7bd-cbf2df290f4f))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e8c5ec06-8fc3-407f-b808-f1adb5932924))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 40e96d54-4711-475d-ad9a-da6b309e18e6))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5930a317-1ef3-4fbb-9de0-0256d32e320e))
(pad "1" smd roundrect (at -1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 3 "GND") (pintype "passive") (tstamp 3b7e0ffb-aebf-473e-9934-1651ed343bbe))
(pad "2" smd roundrect (at 1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 40 "RED{slash}CTRL") (pintype "passive") (tstamp 3edbe65d-a2d4-40e0-9771-0918dff76d41))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_5mm" (layer "F.Cu")
(tstamp 37c827cd-558a-472a-b356-d9b4d4b3accb)
(at 170 98)
(descr "Mounting Hole 5mm, no annular")
(tags "mounting hole 5mm no annular")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "H1" (at 0 -6) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 87366635-f0e0-4627-9363-eccd183e68a0)
)
(fp_text value "MountingHole_5mm" (at 0 6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e5b375b1-bb47-4851-8197-ebc22c3e78a6)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 45d208b8-af4b-4b98-84eb-991e8130c443)
)
(fp_circle (center 0 0) (end 5 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 659d08da-3949-482e-9335-af12b6ef0645))
(fp_circle (center 0 0) (end 5.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 4d90bce2-762a-4be2-a9ae-3cee42389057))
(pad "" np_thru_hole circle (at 0 0) (size 5 5) (drill 5) (layers "F&B.Cu" "*.Mask") (tstamp ed0835d9-03b6-49d0-8604-29411b67a3e9))
)
(footprint "MountingHole:MountingHole_5mm" (layer "F.Cu")
(tstamp 5d095815-65c7-46c9-a3b5-255f7e433b63)
(at 128 98)
(descr "Mounting Hole 5mm, no annular")
(tags "mounting hole 5mm no annular")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "H1" (at 0 -6) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 71d07c5f-064c-47d8-a7b6-97a180e6da84)
)
(fp_text value "MountingHole_5mm" (at 0 6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 194e0ab6-75fd-4c46-bd44-c0673650e41c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8ae8d25b-447f-4668-a39e-e78dcc4cfd9b)
)
(fp_circle (center 0 0) (end 5 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp f7d58fda-f7e1-49f3-8301-79703261df3b))
(fp_circle (center 0 0) (end 5.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp f2f282a9-3b06-45e7-8348-2afad3024452))
(pad "" np_thru_hole circle (at 0 0) (size 5 5) (drill 5) (layers "F&B.Cu" "*.Mask") (tstamp 2aa72714-d907-4c23-97c2-82347dadb9f6))
)
(footprint "ESP32_mini:ESP32_mini" (layer "F.Cu")
(tstamp 5edd7056-4be8-4712-b039-4b82e7695a7b)
(at 149 77)
(property "Sheetfile" "RatGDO-OpenSource-D1Mini-ESP32.kicad_sch")
(property "Sheetname" "")
(path "/2e0e1e06-144c-4e8d-8a6e-f9e0f2cf9939")
(attr through_hole exclude_from_bom)
(fp_text reference "U1" (at -3.81 1.27) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1d84dbe7-dd63-4fee-94d3-3a1321a9f068)
)
(fp_text value "mini_esp32" (at 0 -1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 51ff878c-85b0-4344-ba1c-9db71d2a4d5a)
)
(fp_text user "RST" (at -11.43 15.24) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b14d2b0-5ef5-4b2a-b456-d16d17a8ffa1)
)
(fp_text user "USB" (at 0 20.32) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b93e20bb-a18d-4e3a-8668-1a8075290944)
)
(fp_text user "IO_02" (at 12.7 13.335) (layer "Dwgs.User")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 5380ab9b-5c24-44b4-8a19-77b27a395541)
)
(fp_text user "PWR" (at 12.573 15.875) (layer "Dwgs.User")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp da52e4dd-9c29-43ff-94ea-34b59d68a37d)
)
(fp_text user "NO COPPER - KEEP OUT" (at 0 -15.24) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fbee7dc6-d528-497c-b33e-885d8bc25947)
)
(fp_line (start -15.24 -16.51) (end -15.24 12.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 14dff459-4241-4697-a8b6-5fdadb2324bd))
(fp_line (start -15.24 12.7) (end -12.7 12.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bca7023a-6ba0-45d4-b4e5-a0aed86b876e))
(fp_line (start -12.7 -19.05) (end -15.24 -16.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ac869774-e937-4fe0-879a-708d5af655fe))
(fp_line (start -12.7 -19.05) (end -11.43 -19.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8acefb6f-53dc-4d99-94a9-cb51fabd58ac))
(fp_line (start -12.7 12.7) (end -12.7 17.78)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 52afe2e8-e90d-4ca8-9bfd-8dd8f06a3a78))
(fp_line (start -12.7 17.78) (end 15.24 17.78)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d9febaf1-8cd5-4bf9-9d95-b4ab1f5ff151))
(fp_line (start -5.08 15.24) (end 5.08 15.24)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fb797b95-dc71-45e3-8f21-421bf1d7e855))
(fp_line (start -5.08 17.78) (end -5.08 15.24)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 92efe3c8-9ea4-40de-b3de-79e1d903d93c))
(fp_line (start -5.08 17.78) (end -5.08 24.13)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b80bdbf4-f567-4bec-ac42-6994336e79eb))
(fp_line (start -5.08 24.13) (end 5.08 24.13)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8b2d8d4f-35b3-4161-b5be-e42562f9cfe5))
(fp_line (start 5.08 15.24) (end 5.08 17.78)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 32669f87-df2c-4061-83fb-d6b140dba574))
(fp_line (start 5.08 24.13) (end 5.08 17.78)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5c0704f-9f93-4bd0-919a-1bbd64afc1bd))
(fp_line (start 12.7 -19.05) (end -11.43 -19.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 404bf1a0-49bd-4dbf-a109-aa09c0b86f9c))
(fp_line (start 12.7 -19.05) (end 15.24 -16.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 17f61f9e-3f71-42e2-a63e-56fc32c93310))
(fp_line (start 15.24 -16.51) (end 15.24 17.78)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 58c69452-5feb-45ea-8c95-77f066294f5a))
(fp_poly
(pts
(xy -13.97 16.51)
(xy -13.97 13.97)
(xy -12.7 13.97)
(xy -12.7 16.51)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 494c826c-2ba9-4ae5-a5be-3deb8b56a93d))
(fp_line (start -15.24 -19.05) (end -15.24 -12.7)
(stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp 36705250-5536-452c-9785-97827f5cbf05))
(fp_line (start -15.24 -12.7) (end 15.24 -12.7)
(stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp 6e4d77a0-270c-400b-9ce8-7558f0e0a866))
(fp_line (start -10.16 -19.05) (end -15.24 -13.97)
(stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp 8dcf2a8e-cff8-4a09-95b9-b02474bfdbc8))
(fp_line (start -6.35 -19.05) (end -12.7 -12.7)
(stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp 192e4bbc-fd4c-4051-9cc1-c639c4e728c9))
(fp_line (start -2.54 -19.05) (end -8.89 -12.7)
(stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp 4dbfe64c-70f2-4ed5-a6e9-00e847e0ee1a))
(fp_line (start 1.27 -19.05) (end -5.08 -12.7)
(stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp 2bcda351-3bb1-42e1-ae59-e1796b235ba4))
(fp_line (start 5.08 -19.05) (end -1.27 -12.7)
(stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp c1c66d00-7f8f-4ddb-8387-083e2216b375))
(fp_line (start 8.89 -19.05) (end 2.54 -12.7)
(stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp b749d54f-3375-4df1-8f52-1b29f1eac10a))
(fp_line (start 11.43 12.7) (end 11.43 13.97)
(stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp cbe5278b-b314-46c4-89f5-b83bad40037d))
(fp_line (start 11.43 13.97) (end 13.97 13.97)
(stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp 46787652-4897-45cf-8c36-b2a58a875ec1))
(fp_line (start 11.43 15.24) (end 13.97 15.24)
(stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp a3d5e5b5-2e4f-4e2c-b9e6-b48cad74afe7))
(fp_line (start 11.43 16.51) (end 11.43 15.24)
(stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp c9f727ac-2905-44a4-bc91-6a11f405224e))
(fp_line (start 12.7 -19.05) (end 6.35 -12.7)
(stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp ddd40945-d282-4f58-b528-c12214262b25))
(fp_line (start 13.97 12.7) (end 11.43 12.7)
(stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp 1677ac29-f636-4036-b4f0-11920433c159))
(fp_line (start 13.97 13.97) (end 13.97 12.7)
(stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp 2e850b48-1929-4d33-87cf-dc9b13df6bd7))
(fp_line (start 13.97 15.24) (end 13.97 16.51)
(stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp b871e2ac-2038-4cd1-a6c5-dd86e786fb59))
(fp_line (start 13.97 16.51) (end 11.43 16.51)
(stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp 14179270-18e8-4cc5-b52a-9297e85d4274))
(fp_line (start 15.24 -19.05) (end -15.24 -19.05)
(stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp 9d6a70e4-00f9-45dc-881b-b93b3f16c951))
(fp_line (start 15.24 -16.51) (end 11.43 -12.7)
(stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp 708c3f28-f42f-49ba-bd09-67630ad09b02))
(fp_line (start 15.24 -12.7) (end 15.24 -19.05)
(stroke (width 0.12) (type solid)) (layer "Dwgs.User") (tstamp a7b43ee9-31dd-415e-8f65-7716d95b5c66))
(pad "1" thru_hole circle (at -13.97 -11.43 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "power_in") (tstamp ba95008a-ce4f-4520-b158-386708ee68ba))
(pad "2" thru_hole circle (at -11.43 -11.43 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 34 "unconnected-(U1-RST-Pad2)") (pinfunction "RST") (pintype "input+no_connect") (tstamp e71c1510-e6be-4929-893f-ba81e3766125))
(pad "3" thru_hole circle (at -13.97 -8.89 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 33 "unconnected-(U1-NC-Pad3)") (pinfunction "NC") (pintype "no_connect") (tstamp 407ec15a-a113-433b-bc55-c5ab805ed95f))
(pad "4" thru_hole circle (at -11.43 -8.89 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 32 "unconnected-(U1-IO_36{slash}SVP{slash}A0-Pad4)") (pinfunction "IO_36/SVP/A0") (pintype "bidirectional+no_connect") (tstamp 5720a373-6a62-4794-b587-bd16f5f55f72))
(pad "5" thru_hole circle (at -13.97 -6.35 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 31 "unconnected-(U1-IO_39{slash}SVN-Pad5)") (pinfunction "IO_39/SVN") (pintype "bidirectional+no_connect") (tstamp 3d3a598b-b186-4140-86e6-6f8624addff6))
(pad "6" thru_hole circle (at -11.43 -6.35 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 30 "unconnected-(U1-IO_26{slash}D0-Pad6)") (pinfunction "IO_26/D0") (pintype "bidirectional+no_connect") (tstamp 48073aa4-73ed-41f4-8293-66745a048f12))
(pad "7" thru_hole circle (at -13.97 -3.81 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 29 "unconnected-(U1-IO_35-Pad7)") (pinfunction "IO_35") (pintype "bidirectional+no_connect") (tstamp b0727641-8654-4504-9954-25c93f8cb5f5))
(pad "8" thru_hole circle (at -11.43 -3.81 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 28 "unconnected-(U1-IO_18{slash}D5-Pad8)") (pinfunction "IO_18/D5") (pintype "bidirectional+no_connect") (tstamp 2e35b278-365b-43d5-9596-5ba1e5eeb880))
(pad "9" thru_hole circle (at -13.97 -1.27 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 27 "unconnected-(U1-IO_33-Pad9)") (pinfunction "IO_33") (pintype "bidirectional+no_connect") (tstamp f20edd21-44ef-4abd-bbe8-a2c7f1670cde))
(pad "10" thru_hole circle (at -11.43 -1.27 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 26 "unconnected-(U1-IO_19{slash}D6-Pad10)") (pinfunction "IO_19/D6") (pintype "bidirectional+no_connect") (tstamp 0999d7c5-5452-46af-b9e6-cf72150d64d9))
(pad "11" thru_hole circle (at -13.97 1.27 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 25 "unconnected-(U1-IO_34-Pad11)") (pinfunction "IO_34") (pintype "bidirectional+no_connect") (tstamp 66d8bed6-8ecf-4bf8-8433-37aa30c4b25f))
(pad "12" thru_hole circle (at -11.43 1.27 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 5 "Net-(U1-IO_23{slash}D7)") (pinfunction "IO_23/D7") (pintype "bidirectional") (tstamp 2c025daf-37ae-4cf2-b404-ea30a9f5710e))
(pad "13" thru_hole circle (at -13.97 3.81 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 24 "unconnected-(U1-IO_14{slash}TMS-Pad13)") (pinfunction "IO_14/TMS") (pintype "bidirectional+no_connect") (tstamp 429abcbd-9369-4af2-b828-49fd8bbccfed))
(pad "14" thru_hole circle (at -11.43 3.81 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 38 "unconnected-(U1-IO_05{slash}D8-Pad14)") (pinfunction "IO_05/D8") (pintype "bidirectional+no_connect") (tstamp b39dbd9c-4a25-4c43-9ba1-f9474df316b9))
(pad "15" thru_hole circle (at -13.97 6.35 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 22 "unconnected-(U1-NC-Pad15)") (pinfunction "NC") (pintype "no_connect") (tstamp 3955eade-d7ab-40d5-98e9-c8d669d72fa5))
(pad "16" thru_hole circle (at -11.43 6.35 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "+3.3V") (pinfunction "3V3") (pintype "power_in") (tstamp 687485a1-764d-40b0-8cff-4881dd76ced4))
(pad "17" thru_hole circle (at -13.97 8.89 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 21 "unconnected-(U1-IO_09{slash}SD2-Pad17)") (pinfunction "IO_09/SD2") (pintype "bidirectional+no_connect") (tstamp a62cbf3a-4c1d-45ac-85c6-f9cdce3fc3ed))
(pad "18" thru_hole circle (at -11.43 8.89 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 20 "unconnected-(U1-IO_13{slash}TCK-Pad18)") (pinfunction "IO_13/TCK") (pintype "bidirectional+no_connect") (tstamp 781c1cf0-f779-4fa9-8d78-27854aab4d96))
(pad "19" thru_hole circle (at -13.97 11.43 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 19 "unconnected-(U1-CMD-Pad19)") (pinfunction "CMD") (pintype "passive+no_connect") (tstamp 99dc4d87-ced6-4e7e-b96c-d4f2c77e2951))
(pad "20" thru_hole circle (at -11.43 11.43 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 18 "unconnected-(U1-IO_10{slash}SD3-Pad20)") (pinfunction "IO_10/SD3") (pintype "bidirectional+no_connect") (tstamp cb8ac767-7200-4d00-948d-4aae8e8d6600))
(pad "21" thru_hole circle (at 11.43 -11.43 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 17 "unconnected-(U1-TXD-Pad21)") (pinfunction "TXD") (pintype "passive+no_connect") (tstamp 4d1d383f-f317-4500-ba18-bbe08e791f9a))
(pad "22" thru_hole circle (at 13.97 -11.43 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "power_in") (tstamp f6adc2c4-1a3b-420c-9c84-8eb516f417de))
(pad "23" thru_hole circle (at 11.43 -8.89 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 16 "unconnected-(U1-RXD-Pad23)") (pinfunction "RXD") (pintype "passive+no_connect") (tstamp 238958b0-da11-44da-ae04-1a9f178d5c68))
(pad "24" thru_hole circle (at 13.97 -8.89 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 15 "unconnected-(U1-IO_27-Pad24)") (pinfunction "IO_27") (pintype "bidirectional+no_connect") (tstamp f43a908c-2fdf-45ba-915f-31d7505d4f92))
(pad "25" thru_hole circle (at 11.43 -6.35 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 42 "/ESP_TX") (pinfunction "IO_22/D1/SCL") (pintype "bidirectional") (tstamp 8b3c63f6-8702-4b47-95a1-e605d5a2ffb2))
(pad "26" thru_hole circle (at 13.97 -6.35 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 14 "unconnected-(U1-IO_25-Pad26)") (pinfunction "IO_25") (pintype "bidirectional+no_connect") (tstamp 45423bb6-26f9-48fd-b291-273aa7462b1d))
(pad "27" thru_hole circle (at 11.43 -3.81 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 41 "/ESP_RX") (pinfunction "IO_21/D2/SDA") (pintype "bidirectional") (tstamp 809a786d-6666-403f-9d05-f9c6ac240fe9))
(pad "28" thru_hole circle (at 13.97 -3.81 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 13 "unconnected-(U1-IO_32-Pad28)") (pinfunction "IO_32") (pintype "bidirectional+no_connect") (tstamp f19a2412-5981-43ad-969d-dfc722c9a865))
(pad "29" thru_hole circle (at 11.43 -1.27 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 12 "unconnected-(U1-IO_17{slash}D3-Pad29)") (pinfunction "IO_17/D3") (pintype "bidirectional+no_connect") (tstamp 4cf25374-e613-4275-a29d-6736073ad11e))
(pad "30" thru_hole circle (at 13.97 -1.27 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 11 "unconnected-(U1-IO_12{slash}TDI-Pad30)") (pinfunction "IO_12/TDI") (pintype "bidirectional+no_connect") (tstamp 2b487a78-5891-4959-ad23-b85875299a4c))
(pad "31" thru_hole circle (at 11.43 1.27 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 10 "unconnected-(U1-IO_16{slash}D4-Pad31)") (pinfunction "IO_16/D4") (pintype "bidirectional+no_connect") (tstamp c61abf33-a8ca-4142-afc1-deb726844921))
(pad "32" thru_hole circle (at 13.97 1.27 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 37 "unconnected-(U1-IO_04-Pad32)") (pinfunction "IO_04") (pintype "bidirectional+no_connect") (tstamp 8d37e631-b360-4f08-b7af-8aa5a0cebb4e))
(pad "33" thru_hole circle (at 11.43 3.81 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "power_in") (tstamp e96e72a2-3ef7-401b-a7c2-f7cf2886e914))
(pad "34" thru_hole circle (at 13.97 3.81 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 36 "unconnected-(U1-IO_00-Pad34)") (pinfunction "IO_00") (pintype "bidirectional+no_connect") (tstamp 3263f0a7-c1b0-441a-a253-344e5b6cac52))
(pad "35" thru_hole circle (at 11.43 6.35 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 4 "+5V") (pinfunction "VCC_(USB)") (pintype "power_in") (tstamp c155c50d-e9fc-4750-96b3-03e9efb2e1bf))
(pad "36" thru_hole circle (at 13.97 6.35 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 35 "unconnected-(U1-IO_02-Pad36)") (pinfunction "IO_02") (pintype "bidirectional+no_connect") (tstamp abe5986e-f7ab-4d50-8e37-e2e7cb8f3b0e))
(pad "37" thru_hole circle (at 11.43 8.89 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 9 "unconnected-(U1-TD0-Pad37)") (pinfunction "TD0") (pintype "passive+no_connect") (tstamp 181f9d1d-2e0b-4c74-bacc-36d4ee53acfe))
(pad "38" thru_hole circle (at 13.97 8.89 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 8 "unconnected-(U1-SD1-Pad38)") (pinfunction "SD1") (pintype "passive+no_connect") (tstamp e871026f-1551-4819-bbb3-6971a9574483))
(pad "39" thru_hole circle (at 11.43 11.43 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 7 "unconnected-(U1-SD0-Pad39)") (pinfunction "SD0") (pintype "passive+no_connect") (tstamp dc2dd65d-0428-45c4-bff8-445cea54097e))
(pad "40" thru_hole circle (at 13.97 11.43 270) (size 1.4 1.4) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 6 "unconnected-(U1-CLK-Pad40)") (pinfunction "CLK") (pintype "passive+no_connect") (tstamp ac14e249-b776-44ee-908d-d85f09f048e0))
)
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-3_1x03_P5.00mm_Horizontal" (layer "F.Cu")
(tstamp 60646db6-4415-4c25-abde-d74a9d914afd)
(at 127.5 81.2 -90)
(descr "Terminal Block Phoenix MKDS-1,5-3, 3 pins, pitch 5mm, size 15x9.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 pitch 5mm size 15x9.8mm^2 drill 1.3mm pad 2.6mm")
(property "Sheetfile" "RatGDO-OpenSource-D1Mini-ESP32.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic screw terminal, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "screw terminal")
(path "/dc4ef26d-7b96-4dea-97d6-5647dbca545c")
(attr through_hole)
(fp_text reference "J2" (at 0 -6.26 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ec432920-f842-45b2-8167-00d380ef6415)
)
(fp_text value "Screw_Terminal_01x03" (at 0 5.66 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d6ae92e-391e-4405-ad67-ce8ada224d10)
)
(fp_text user "${REFERENCE}" (at 0 3.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5094ee9e-6a27-4f1c-850d-caeea7601964)
)
(fp_line (start -7.8 4.16) (end -7.8 4.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d9db1568-787f-4bc2-af4e-db5f535e8e53))
(fp_line (start -7.8 4.9) (end -7.3 4.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3c59d7d8-5d74-4702-bf30-abe13488d45f))
(fp_line (start -7.56 -5.261) (end -7.56 4.66)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a9e485b7-8081-470f-856e-fcc0ba96913f))
(fp_line (start -7.56 -5.261) (end 7.56 -5.261)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1b87eac5-8465-4edf-b94f-ebf9850eba2e))
(fp_line (start -7.56 -2.301) (end 7.56 -2.301)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fee69bed-096b-44de-94e8-037a35d960bb))
(fp_line (start -7.56 2.6) (end 7.56 2.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a5165f22-9c00-4df6-a384-5388b6dc2a8f))
(fp_line (start -7.56 4.1) (end 7.56 4.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8dc74452-7b26-4017-bcee-e4864598680b))
(fp_line (start -7.56 4.66) (end 7.56 4.66)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 30c1b3e8-8c95-4932-9fa5-de0a3e7ebfae))
(fp_line (start -1.227 1.023) (end -1.274 1.069)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c219f624-253f-42e7-9184-81530ad708fc))
(fp_line (start -1.034 1.239) (end -1.069 1.274)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b118c8ae-ec54-4e5f-850c-64f0c34406b5))
(fp_line (start 1.07 -1.275) (end 1.035 -1.239)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3410b17c-f639-4cd0-8ec1-dad2cbf636f6))
(fp_line (start 1.275 -1.069) (end 1.228 -1.023)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 282d3281-dbb4-4195-ad56-4328ef673476))
(fp_line (start 3.773 1.023) (end 3.726 1.069)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19874978-ba2b-42a9-8762-4aeaf23bb556))
(fp_line (start 3.966 1.239) (end 3.931 1.274)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c7ae0ebe-b58f-43dd-ac26-cdc7a1004458))
(fp_line (start 6.07 -1.275) (end 6.035 -1.239)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4a8eda49-348a-4e06-a820-e9760386a364))
(fp_line (start 6.275 -1.069) (end 6.228 -1.023)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 68855e6a-5a31-495e-8e93-33f1cae563a5))
(fp_line (start 7.56 -5.261) (end 7.56 4.66)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ad8d60f1-f599-4eb0-8462-a8de19927463))
(fp_arc (start -6.535427 0.683042) (mid -6.680501 -0.000524) (end -6.535 -0.684)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2e7c041b-6eeb-489d-be3f-bd05be123070))
(fp_arc (start -5.683042 -1.535427) (mid -4.999476 -1.680501) (end -4.316 -1.535)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d03ce0b1-1c20-4545-a35b-10c004843ecd))
(fp_arc (start -4.971195 1.680253) (mid -5.335551 1.646659) (end -5.684 1.535)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 861e8647-5627-47e5-a70c-ab5086356d13))
(fp_arc (start -4.316682 1.534756) (mid -4.650708 1.643288) (end -5 1.68)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8e0b9cfc-05ab-4c23-8371-9f5e5dcbfbe3))
(fp_arc (start -3.464573 -0.683042) (mid -3.319499 0.000524) (end -3.465 0.684)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a44ff1de-be39-4cd7-adff-b5d624794ae2))
(fp_circle (center 0 0) (end 1.68 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 2c1e450b-4774-4b05-b849-01525e2a377c))
(fp_circle (center 5 0) (end 6.68 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 64847455-6cb8-4058-a577-b01812256f80))
(fp_line (start -8 -5.71) (end -8 5.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9f6eadad-470c-44c4-acd0-b133ea3760db))
(fp_line (start -8 5.1) (end 8 5.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 69eb0e01-89ae-403b-9169-2e99be435c85))
(fp_line (start 8 -5.71) (end -8 -5.71)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2fe3b6aa-e838-4266-b26e-68d112a1eb08))
(fp_line (start 8 5.1) (end 8 -5.71)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7b1fd3f2-1659-447e-840d-de0503a2252d))
(fp_line (start -7.5 -5.2) (end 7.5 -5.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 13db4419-2a27-4208-b7e9-31d87ecefe31))
(fp_line (start -7.5 -2.3) (end 7.5 -2.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6422ec0a-997a-4dd2-a6ab-f6939e5d8b3f))
(fp_line (start -7.5 2.6) (end 7.5 2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 43713ba5-207c-4075-9656-f6fec37146cd))
(fp_line (start -7.5 4.1) (end -7.5 -5.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ef529219-d716-4696-99f7-3357e356f39b))
(fp_line (start -7.5 4.1) (end 7.5 4.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5000a2d2-c609-4c78-b307-b04a04367975))
(fp_line (start -7 4.6) (end -7.5 4.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0fb34302-c2ec-4278-b75d-239eb35417fc))
(fp_line (start -4.045 -1.138) (end -6.138 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3010182c-cede-482d-8614-6fb0e5417932))
(fp_line (start -3.862 -0.955) (end -5.955 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4927d319-749a-4fbb-85d1-4f6f1f03b1c0))
(fp_line (start 0.955 -1.138) (end -1.137 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cfdc6ba4-8624-4e61-8c84-e7975060a198))
(fp_line (start 1.138 -0.955) (end -0.954 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a7f14805-5f04-41df-a198-afc3c314bcb9))
(fp_line (start 5.955 -1.138) (end 3.863 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 71caffc5-829e-427b-a306-252318f5cf84))
(fp_line (start 6.138 -0.955) (end 4.046 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d42a5964-08fd-45f9-ab0e-8024769444c5))
(fp_line (start 7.5 -5.2) (end 7.5 4.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6d4bebbf-1ef2-4b46-ae8d-6f21606f8bcb))
(fp_line (start 7.5 4.6) (end -7 4.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 68ff7785-df57-48ec-a261-e3ead7075e1d))
(fp_circle (center -5 0) (end -3.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 942d35b4-2cf8-470f-bde5-7ea7e1ad4a4b))
(fp_circle (center 0 0) (end 1.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp d8399736-2947-4b2b-af61-499e9004b91b))
(fp_circle (center 5 0) (end 6.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 2122d3b7-8738-4fbb-9009-94b0a4500c12))
(pad "1" thru_hole rect (at -5 0 270) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 39 "BLK{slash}OBST") (pinfunction "Blk/Obst") (pintype "passive") (tstamp 404cc26e-2da4-4420-aa30-cfbfe9d9ed61))
(pad "2" thru_hole circle (at 0 0 270) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 40 "RED{slash}CTRL") (pinfunction "Red/Cntrl") (pintype "passive") (tstamp 630b23eb-5190-421a-8747-4a7d6f8bbcd6))
(pad "3" thru_hole circle (at 5 0 270) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "Wht/Gnd") (pintype "passive") (tstamp 4ecbad16-eaaf-4870-a28e-dcb8b962f632))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-3_1x03_P5.00mm_Horizontal.wrl"
(offset (xyz -5 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23_Handsoldering" (layer "F.Cu")
(tstamp 857c9619-88ca-4276-96f8-82c3f196ae64)
(at 155.2 73 180)
(descr "SOT-23, Handsoldering")
(tags "SOT-23")
(property "LCSC#" "C20917")
(property "Sheetfile" "RatGDO-OpenSource-D1Mini-ESP32.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "30V Vds, 5.7A Id, N-Channel MOSFET, SOT-23")
(property "ki_keywords" "N-Channel MOSFET")
(path "/bee4ccd4-d858-42cd-b3bf-245a5a5ef3f7")
(attr smd)
(fp_text reference "Q2" (at 4.064 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4742d5cf-3274-4f9f-84e8-cf8f2d9dc29b)
)
(fp_text value "AO3400A" (at 0 2.5 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2866570b-7aae-4ebe-ac2b-d2f6180a5572)
)
(fp_text user "${REFERENCE}" (at 0 0 270) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp c4d48899-fea0-4366-8893-1c7f4fa50772)
)
(fp_line (start 0.76 -1.58) (end -2.4 -1.58)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 24d1fe7e-32a6-462b-9672-b8e4846786a8))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8e4a5b37-0f67-4972-9fbc-286a5eceab3b))
(fp_line (start 0.76 1.58) (end -0.7 1.58)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c6fb52d1-608c-4b51-8754-73d132d2a925))
(fp_line (start 0.76 1.58) (end 0.76 0.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 347accc1-90ad-4dcf-957f-91a3d5bbf643))
(fp_line (start -2.7 -1.75) (end 2.7 -1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fae8df4f-d6d3-4578-acff-491f1f55cd4b))
(fp_line (start -2.7 1.75) (end -2.7 -1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp db0b337c-4986-45b9-9eef-1b26b4401f89))
(fp_line (start 2.7 -1.75) (end 2.7 1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3c351091-45fa-40cd-bfe0-c14be3f095d1))
(fp_line (start 2.7 1.75) (end -2.7 1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 022ac493-bc94-4d1f-914d-0a268aeb285d))
(fp_line (start -0.7 -0.95) (end -0.7 1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6b755eb3-1358-448f-a53a-7c9203c1fb73))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a8dece3-19f1-4548-ae52-dffcbeecccd8))
(fp_line (start -0.7 1.52) (end 0.7 1.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ddec0414-2018-4d55-85c6-a5d2be628668))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c0b9d74e-8822-4e08-a5af-22d694eeaca3))
(fp_line (start 0.7 -1.52) (end 0.7 1.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 67f18130-6b74-4d9c-8861-34d3993dff0f))
(pad "1" smd rect (at -1.5 0.95 180) (size 1.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "Net-(Q2-G)") (pinfunction "G") (pintype "input") (tstamp f2ecf6fe-9035-4590-a788-b9b6b77a047d))
(pad "2" smd rect (at -1.5 -0.95 180) (size 1.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "S") (pintype "passive") (tstamp 217b046d-c025-4c5e-9f90-edcb8390a0fa))
(pad "3" smd rect (at 1.5 0 180) (size 1.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 40 "RED{slash}CTRL") (pinfunction "D") (pintype "passive") (tstamp 0ff536f4-a503-41ef-bd94-e23dff319845))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 9668c73c-4d7f-4ea0-bdaa-20ad51e135f3)
(at 156 69.6)
(descr "Resistor SMD 0805 (2012 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 "LCSC#" "C17513")
(property "Sheetfile" "RatGDO-OpenSource-D1Mini-ESP32.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/9b832267-c174-45aa-b5cd-de981086259b")
(attr smd)
(fp_text reference "R4" (at -3.048 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 719a3ea6-779a-4c89-bfbe-105f9d0853b0)
)
(fp_text value "1k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2f863747-a90f-4fcc-83bb-2bcb74b67e2c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp cef9141a-2334-4184-a80c-4fe3e4747445)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9d7d249c-8716-46f6-a8fe-cc6512e5bcd2))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8e02f0aa-130a-4238-b806-c89852b427f2))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 36779114-6a59-4740-b534-9f6517d6091e))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 774dbd24-2f7c-4cdc-81fe-cbc539fdf1b3))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5f58bdd3-d843-43f9-af30-c0c378b12ffb))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a765040a-68bc-4447-8aee-23f9540b018d))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dd3dd2f4-615e-4cc9-9f14-7e46e9f494ae))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7feee215-cb7f-4120-8225-1c315a07b661))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d1bf622f-dac7-4426-ae61-304e9f42ff9c))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ef0c0d6e-0f52-49ee-9798-f26a29d5b4d1))
(pad "1" smd roundrect (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 1 "Net-(Q2-G)") (pintype "passive") (tstamp 5035c67b-0ff0-4329-8dcc-d4025764b309))
(pad "2" smd roundrect (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 42 "/ESP_TX") (pintype "passive") (tstamp 26819e33-8303-43de-94a1-d540bdff83da))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23_Handsoldering" (layer "F.Cu")
(tstamp a5549976-ccc4-46f4-8a75-f42da451354b)
(at 155.2 77.4)
(descr "SOT-23, Handsoldering")
(tags "SOT-23")
(property "LCSC#" "C8545")
(property "Sheetfile" "RatGDO-OpenSource-D1Mini-ESP32.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "0.115A Id, 60V Vds, N-Channel MOSFET, SOT-23")
(property "ki_keywords" "N-Channel Switching MOSFET")
(path "/f9d5d1ea-1248-4f21-bd56-d2e62f58c5a2")
(attr smd)
(fp_text reference "Q1" (at -3.81 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 51877314-e8e2-4440-9728-6cd4bb4f9e23)
)
(fp_text value "2N7002" (at 0 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 762681b0-97a0-4a32-9bcd-b778fa759c24)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 32237ae7-0de3-41c4-a64b-805dd9edbc23)
)
(fp_line (start 0.76 -1.58) (end -2.4 -1.58)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6775d5df-15be-4555-be80-b4351349d204))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8561e30f-13f4-4081-b4c4-20b8cb3a8d59))
(fp_line (start 0.76 1.58) (end -0.7 1.58)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 077d4013-3d03-4ee8-81da-228903792988))
(fp_line (start 0.76 1.58) (end 0.76 0.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 061e9610-3a21-4d90-ab9d-ef336df47625))
(fp_line (start -2.7 -1.75) (end 2.7 -1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1316103c-24c6-474e-8070-223144cf3601))
(fp_line (start -2.7 1.75) (end -2.7 -1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5cae69d8-f8a5-4dcd-8399-712c9e14d714))
(fp_line (start 2.7 -1.75) (end 2.7 1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7e767a3e-6726-4761-b534-67c08eade2e3))
(fp_line (start 2.7 1.75) (end -2.7 1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2f101a3e-1c7d-4a3d-9e14-4c190f08e3b7))
(fp_line (start -0.7 -0.95) (end -0.7 1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c4ad62aa-14a8-4dbb-a562-fa3edb555975))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2f8a950b-10cb-4194-a491-5d9c4d6740b2))
(fp_line (start -0.7 1.52) (end 0.7 1.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b2072175-859f-4540-81ba-ae0bdd4c1074))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7bdfec4c-f927-46ed-b97b-773f4f33f10d))
(fp_line (start 0.7 -1.52) (end 0.7 1.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 53306e20-adbc-47e8-bf98-90f4e45c67a6))
(pad "1" smd rect (at -1.5 0.95) (size 1.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "Net-(Q1-G)") (pinfunction "G") (pintype "input") (tstamp d95f90d3-0afc-4f26-94a4-80dc0d762cc3))
(pad "2" smd rect (at -1.5 -0.95) (size 1.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "S") (pintype "passive") (tstamp 3ce16ade-920c-4d6f-8356-a3d250966607))
(pad "3" smd rect (at 1.5 0) (size 1.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 41 "/ESP_RX") (pinfunction "D") (pintype "passive") (tstamp bf944220-e447-46bd-aca4-0579a9386604))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.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_1x03_P5.00mm_Horizontal" (layer "F.Cu")
(tstamp a9c3ae60-b60a-4344-b2a8-1119cb116a01)
(at 127.5 66 -90)
(descr "Terminal Block Phoenix MKDS-1,5-3, 3 pins, pitch 5mm, size 15x9.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 pitch 5mm size 15x9.8mm^2 drill 1.3mm pad 2.6mm")
(property "LCSC#" "C8483")
(property "Sheetfile" "RatGDO-OpenSource-D1Mini-ESP32.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic screw terminal, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "screw terminal")
(path "/379b019b-bd23-4e17-a2be-0dbfd1662791")
(attr through_hole)
(fp_text reference "J1" (at -8.048 -6.096 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7023cbd3-8b47-4dfa-a27c-7ae4ff1d42ab)
)
(fp_text value "Screw_Terminal_01x03" (at 0 5.66 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 27dd2085-da2d-4e5b-a18e-30225fea4d6f)
)
(fp_text user "${REFERENCE}" (at 0 3.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 76438455-6070-4b6e-a9be-a915ca63132f)
)
(fp_line (start -7.8 4.16) (end -7.8 4.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f5ecc50-fbbf-4ed4-876f-d8135821b07b))
(fp_line (start -7.8 4.9) (end -7.3 4.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b93081c1-0917-45c4-9726-5f694d721cac))
(fp_line (start -7.56 -5.261) (end -7.56 4.66)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9e478f44-5dbb-4855-8dc0-2255cab19c08))
(fp_line (start -7.56 -5.261) (end 7.56 -5.261)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 44b9cc61-2d44-49f8-8716-5cdad65cdb0c))
(fp_line (start -7.56 -2.301) (end 7.56 -2.301)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a42e4bba-0193-48e5-8c3e-fcf6054dea0d))
(fp_line (start -7.56 2.6) (end 7.56 2.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2bf148d9-6b1d-4f9c-9962-75a4f9f7931e))
(fp_line (start -7.56 4.1) (end 7.56 4.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 40af02f0-d0d4-4a65-a599-470be8592c87))
(fp_line (start -7.56 4.66) (end 7.56 4.66)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 712e2cac-797e-4767-82a4-abfc31ab73a4))
(fp_line (start -1.227 1.023) (end -1.274 1.069)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f178fe6-eca7-44f5-976d-44454fb12897))
(fp_line (start -1.034 1.239) (end -1.069 1.274)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 38047274-3c1c-4fca-855f-daff45d9f938))
(fp_line (start 1.07 -1.275) (end 1.035 -1.239)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 81a99ac6-47f6-4842-803c-63863b872cf7))
(fp_line (start 1.275 -1.069) (end 1.228 -1.023)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f61d431-0acb-4c82-a102-a5abb86837e1))
(fp_line (start 3.773 1.023) (end 3.726 1.069)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e4e8908-200a-469d-bbc3-f7a4c9a65d15))
(fp_line (start 3.966 1.239) (end 3.931 1.274)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp abb959ac-2f15-4232-8c58-7ac9acce0e47))
(fp_line (start 6.07 -1.275) (end 6.035 -1.239)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 556345c0-486d-49e9-ae84-97a78cf5098d))
(fp_line (start 6.275 -1.069) (end 6.228 -1.023)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e35f984-ba5f-49aa-b8bb-bb64b995dcb7))
(fp_line (start 7.56 -5.261) (end 7.56 4.66)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f07cf3c9-231e-4eff-beef-46a0bd89c111))
(fp_arc (start -6.535427 0.683042) (mid -6.680501 -0.000524) (end -6.535 -0.684)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0088923a-4905-4d74-afc0-9fabefc008aa))
(fp_arc (start -5.683042 -1.535427) (mid -4.999476 -1.680501) (end -4.316 -1.535)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 49480486-8109-4d5e-b90f-2e2640b44e2c))
(fp_arc (start -4.971195 1.680253) (mid -5.335551 1.646659) (end -5.684 1.535)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 573f28d1-9d6b-439e-b376-871b53cf7c30))
(fp_arc (start -4.316682 1.534756) (mid -4.650708 1.643288) (end -5 1.68)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e9310498-d319-46c5-8c65-92abd5e054c1))
(fp_arc (start -3.464573 -0.683042) (mid -3.319499 0.000524) (end -3.465 0.684)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ee08091-0ea5-429f-a7af-12547fd18163))
(fp_circle (center 0 0) (end 1.68 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp e84e3cf3-ad66-439b-b3a1-adc7d7c95bd5))
(fp_circle (center 5 0) (end 6.68 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp c4f02909-e137-4d3e-b335-3ac4f489a9a7))
(fp_line (start -8 -5.71) (end -8 5.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7cfb6443-e5d0-4b2a-a30c-3066c493c1a9))
(fp_line (start -8 5.1) (end 8 5.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1bd2c62e-d71b-4cbf-b5af-6f9d68deb933))
(fp_line (start 8 -5.71) (end -8 -5.71)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 107c5145-2ebe-4aec-a062-1a7b890fc417))
(fp_line (start 8 5.1) (end 8 -5.71)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a0491f0a-acea-44b8-9e01-ea8dd31c93d5))
(fp_line (start -7.5 -5.2) (end 7.5 -5.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 540aad0c-48b1-4894-b436-e4a33e49a339))
(fp_line (start -7.5 -2.3) (end 7.5 -2.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3dd41a27-af8d-4781-b159-7aa5fb21ebdc))
(fp_line (start -7.5 2.6) (end 7.5 2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9588c0cc-7e47-454e-a629-8215ee28405d))
(fp_line (start -7.5 4.1) (end -7.5 -5.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0523c05e-f3a3-4d1c-a47f-711d844dd84a))
(fp_line (start -7.5 4.1) (end 7.5 4.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 617bc28d-7b14-4d38-8aec-ed191e6a2b10))
(fp_line (start -7 4.6) (end -7.5 4.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fba2e9c4-3490-46ad-8d45-6ab18800709b))
(fp_line (start -4.045 -1.138) (end -6.138 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b0de167c-629f-4c32-88e8-a58f219d93be))
(fp_line (start -3.862 -0.955) (end -5.955 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7a74991b-8e73-44fe-80e0-d8d058a73d73))
(fp_line (start 0.955 -1.138) (end -1.137 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f50132a-9383-4431-987f-104a67480e29))
(fp_line (start 1.138 -0.955) (end -0.954 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e52c3e0-0edb-4c8e-9e18-0b9a685422fe))
(fp_line (start 5.955 -1.138) (end 3.863 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 93bfc65a-18d8-4402-8e51-14af0caea26f))
(fp_line (start 6.138 -0.955) (end 4.046 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 067a3537-243c-4c93-bea1-8c4d304c7396))
(fp_line (start 7.5 -5.2) (end 7.5 4.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 71955460-e906-4e57-9c45-01f1da1ae313))
(fp_line (start 7.5 4.6) (end -7 4.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1801f3b4-6db8-4a53-91e7-97c30147b5e3))
(fp_circle (center -5 0) (end -3.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 3249176b-749a-4a4b-bb11-e3b3c5db8f3b))
(fp_circle (center 0 0) (end 1.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp cd41ffd6-ea40-48be-87de-76d40ba81cef))
(fp_circle (center 5 0) (end 6.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 99c8cc2c-81e7-4122-bd30-ef1bb1d577ce))
(pad "1" thru_hole rect (at -5 0 270) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 39 "BLK{slash}OBST") (pinfunction "Blk/Obst") (pintype "passive") (tstamp efa5f7dd-1549-4d95-838b-42c1fe36111c))
(pad "2" thru_hole circle (at 0 0 270) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 40 "RED{slash}CTRL") (pinfunction "Red/Cntrl") (pintype "passive") (tstamp 79912918-652c-4dbe-9ba8-af6aa62216ae))
(pad "3" thru_hole circle (at 5 0 270) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "Wht/Gnd") (pintype "passive") (tstamp 509a1775-4dfb-473b-8c68-c778c388f086))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-3_1x03_P5.00mm_Horizontal.wrl"
(offset (xyz -5 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp c05b9f39-9115-47f1-91c5-b77839cf6ca5)
(at 142.0875 80.4)
(descr "Resistor SMD 0805 (2012 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 "LCSC#" "C17414")
(property "Sheetfile" "RatGDO-OpenSource-D1Mini-ESP32.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/734de092-5b3e-4ebf-8f6a-65c7d0176f46")