-
Notifications
You must be signed in to change notification settings - Fork 62
/
RatGDO-OpenSource-D1Mini-ESP8266.kicad_pcb
6259 lines (6234 loc) · 244 KB
/
RatGDO-OpenSource-D1Mini-ESP8266.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 "USLetter")
(title_block
(title "RatGDO-OpenSource-D1Mini-ESP8266")
(date "2023-11-24")
(rev "2.5.0")
)
(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
(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 "Net-(U1-MOSI{slash}D7)")
(net 3 "unconnected-(U1-~{RST}-Pad1)")
(net 4 "unconnected-(U1-A0-Pad2)")
(net 5 "unconnected-(U1-D0-Pad3)")
(net 6 "unconnected-(U1-SCK{slash}D5-Pad4)")
(net 7 "unconnected-(U1-MISO{slash}D6-Pad5)")
(net 8 "unconnected-(U1-CS{slash}D8-Pad7)")
(net 9 "+3.3V")
(net 10 "unconnected-(U1-D4-Pad11)")
(net 11 "unconnected-(U1-D3-Pad12)")
(net 12 "unconnected-(U1-RX-Pad15)")
(net 13 "unconnected-(U1-TX-Pad16)")
(net 14 "GND")
(net 15 "+5V")
(net 16 "BLK{slash}OBST")
(net 17 "RED{slash}CTRL")
(net 18 "Net-(Q1-G)")
(net 19 "/ESP_RX")
(net 20 "/ESP_TX")
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 1d510a84-4f2c-46f3-9090-2dca07a95c59)
(at 158.98 71.347222)
(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 "Sheetfile" "RatGDO-OpenSource-D1Mini-ESP8266.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.159327 0.158778) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd1bf770-6e71-4a3e-b909-be136bc2717b)
)
(fp_text value "10k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b2a3d025-4b91-4270-9235-ae2b16683f66)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp df5fe2d4-b738-4ebe-a722-077454c8b1bf)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9cf1d32b-c985-4aff-86b6-ef90001efd85))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 412bc9d0-e9bd-41de-9761-3c926c54b0f4))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cb7548c8-82ac-42b6-b8d7-d0e751a7e5cf))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 21eadfb9-ca8d-4a3a-825a-3c2076d9d133))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4f51edbe-1cf6-4ad0-bc7e-4eb5ed238b3f))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1924a5a6-b412-48eb-b05a-6216cca00fdd))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6aff5172-57fc-44f0-9b54-8d93b0210816))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 12552292-e86d-41f9-9fe4-6e3c27242dcd))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 49f7352b-a570-42e1-9f4f-eeba3dc12f1a))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c046d168-14e5-42c2-8df7-d329540cef1c))
(pad "1" smd roundrect (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 20 "/ESP_TX") (pintype "passive") (tstamp 622cef25-1293-4935-b928-8963534518c9))
(pad "2" smd roundrect (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 14 "GND") (pintype "passive") (tstamp 9a4416b0-9ef1-4256-ab66-7747ff716faa))
(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 "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 2ccd4ce5-93e1-433d-a437-cc482005219a)
(at 158.956 88.458)
(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 "Sheetfile" "RatGDO-OpenSource-D1Mini-ESP8266.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 af7563b0-1215-4e55-87a9-9b36ae7bc2f9)
)
(fp_text value "10k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fae70b4c-0ef3-413b-9534-268d3e3e9196)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp a6e58041-54cc-4d64-8b8d-cd774e777b10)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7714dbee-0d3c-482f-b901-dd0e633f3b84))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7f369de9-cfb8-40e9-a097-5e7554be9e1f))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cef0f769-1b03-41b0-bee2-5c8abbaccf32))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 64470f64-196b-4baf-9f80-e4132fc528ee))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d7af3172-30d5-462b-8636-b04caa1b581b))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f5165d60-02c8-4f33-825d-272c263746c0))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8c0db124-b6e5-4b08-8084-1d38fa860466))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 561e833d-119e-450e-96e1-0975c488c185))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d2cbb1d-cc20-48dd-b233-c726479a0b3d))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a98107ff-d405-4cca-a421-3b17daa718a7))
(pad "1" smd roundrect (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 14 "GND") (pintype "passive") (tstamp 1f7e44e8-f59f-4122-a9b0-87350db1f5a3))
(pad "2" smd roundrect (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 17 "RED{slash}CTRL") (pintype "passive") (tstamp ea6d62bb-d6bc-4ed7-b116-8dcd266ca245))
(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 314ac4c0-3234-4891-b58e-f7e3c3ed58cc)
(at 159.512 62.992)
(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 77777fd7-5011-4042-b744-c54a5e52b1a1)
)
(fp_text value "MountingHole_5mm" (at 0 6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 460c5fd1-ff29-48c9-8c80-df5f7145a252)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2dd45cd9-ab0e-47c8-8e2f-9c28ddd61a05)
)
(fp_circle (center 0 0) (end 5 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp bcc9a391-61c5-4b86-ae8d-5f91d97f2ebb))
(fp_circle (center 0 0) (end 5.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 75205947-1729-4bee-9aab-599cc87291e9))
(pad "" np_thru_hole circle (at 0 0) (size 5 5) (drill 5) (layers "*.Cu" "*.Mask") (tstamp db5ff585-0637-4a3a-bf80-69c91b14a00d))
)
(footprint "MountingHole:MountingHole_5mm" (layer "F.Cu")
(tstamp 37c827cd-558a-472a-b356-d9b4d4b3accb)
(at 159.512 115.57)
(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 "Module:WEMOS_D1_mini_light" (layer "F.Cu")
(tstamp 48ba3419-1398-4659-8154-27394e4d50de)
(at 129.5475 66.16)
(descr "16-pin module, column spacing 22.86 mm (900 mils), https://wiki.wemos.cc/products:d1:d1_mini, https://c1.staticflickr.com/1/734/31400410271_f278b087db_z.jpg")
(tags "ESP8266 WiFi microcontroller")
(property "Sheetfile" "RatGDO-OpenSource-D1Mini-ESP8266.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "32-bit microcontroller module with WiFi")
(property "ki_keywords" "ESP8266 WiFi microcontroller ESP8266EX")
(path "/1f04797f-ce7b-4f20-b469-5b534667d557")
(attr through_hole)
(fp_text reference "U1" (at 22 27) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0e5bc66c-aef4-4cc7-9128-6cafad9abe1b)
)
(fp_text value "WeMos_D1_mini" (at 11.7 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0bdc5561-9856-4732-bd97-4bba572038e7)
)
(fp_text user "No copper" (at 11.43 -3.81) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp af2aedd8-803a-4371-b9f8-da1dd4164c30)
)
(fp_text user "KEEP OUT" (at 11.43 -6.35) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c31fc663-3fd0-4e19-9373-909bd34c0551)
)
(fp_text user "${REFERENCE}" (at 11.43 10) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 798c3a39-edf9-474f-8234-4a14b6988864)
)
(fp_line (start -1.5 19.22) (end -1.5 -6.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c9dcd226-898b-41f3-b271-a18e8e8e9598))
(fp_line (start -1.5 19.22) (end 1.04 19.22)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d4e2fc07-339c-4cf2-ad0d-17738510b539))
(fp_line (start 1.04 19.22) (end 1.04 26.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab9a04fa-1351-46fc-897d-bb8c8d728bc3))
(fp_line (start 1.04 26.12) (end 24.36 26.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 258a7a5e-5586-4ae3-b0c9-256d539fd88f))
(fp_line (start 22.24 -8.34) (end 0.63 -8.34)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e59492c4-51a2-4a80-a79e-0246e83f340b))
(fp_line (start 24.36 26.12) (end 24.36 -6.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 92bac916-3043-439c-a904-7bd31967e85d))
(fp_arc (start -1.5 -6.21) (mid -0.876137 -7.716137) (end 0.63 -8.34)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f8919e3b-47da-4d06-a0f4-c8da3cd9ed43))
(fp_arc (start 22.23 -8.34) (mid 23.736137 -7.716137) (end 24.36 -6.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d3c170fa-b664-4b7b-bece-bddeca0ee2fb))
(fp_poly
(pts
(xy -2.54 -0.635)
(xy -2.54 0.635)
(xy -1.905 0)
)
(stroke (width 0.15) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 06bdc6ad-984b-4749-8f83-bc05f6645a6d))
(fp_line (start -1.35 -8.2) (end -1.35 -1.4)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 5d9d7210-bc36-423f-89ec-3547f6a8ea74))
(fp_line (start -1.35 -7.4) (end -0.55 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 15e28e15-edb4-4b2a-a2d2-4afd3b6ce1f8))
(fp_line (start -1.35 -3.4) (end 3.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp e93d56a7-fbf2-4672-a984-3a5756ac1cef))
(fp_line (start -1.35 -1.4) (end 5.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp d165441a-c533-4c42-8737-d05ef5362122))
(fp_line (start -1.35 -1.4) (end 24.25 -1.4)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp f8d8fcdc-2a43-4bfb-acb4-6235224f78b7))
(fp_line (start -1.3 -5.45) (end 1.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp ba514ea3-c6d5-42ac-b985-5eae64f4350f))
(fp_line (start 0.65 -1.4) (end 7.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 38b847d4-26dc-4f4d-bc40-03a909a11f6f))
(fp_line (start 2.65 -1.4) (end 9.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 7ae359dc-2839-45e6-98d6-5090d517482e))
(fp_line (start 4.65 -1.4) (end 11.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 5a0f8751-32f8-4225-8b98-ebe122ea3234))
(fp_line (start 6.65 -1.4) (end 13.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 93b9de1b-8390-4ed3-bb7d-95a6fd477805))
(fp_line (start 8.65 -1.4) (end 15.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 6861c3f8-e686-42db-a1a3-d1dc9c916cc2))
(fp_line (start 10.65 -1.4) (end 17.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 941c8e52-9221-4a3a-a4fb-e6b2f450a413))
(fp_line (start 12.65 -1.4) (end 19.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 238a4d42-1d69-4e82-9ec5-957a32206d69))
(fp_line (start 14.65 -1.4) (end 21.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp b0980983-dc55-4628-a89e-a61d756294a8))
(fp_line (start 16.65 -1.4) (end 23.45 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp fd265447-5ed0-4bd2-bd27-b25c3951e56e))
(fp_line (start 18.65 -1.4) (end 24.25 -7)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 819325dd-159d-4da8-88f9-028d15f9e350))
(fp_line (start 20.65 -1.4) (end 24.25 -5)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 9b6221de-f4b6-4f83-90fa-6575ecf34e8a))
(fp_line (start 22.65 -1.4) (end 24.25 -3)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 742f2909-5698-4f55-b818-065febf8ad3c))
(fp_line (start 24.25 -8.2) (end -1.35 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp d45929ce-5588-410d-b89a-bf5159485545))
(fp_line (start 24.25 -1.4) (end 24.25 -8.2)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp ca26b428-8341-493a-a2dd-e91cd5cbe4e5))
(fp_line (start -1.62 -8.46) (end 24.48 -8.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f0a549b8-a819-4f65-8be1-a02233e9f86b))
(fp_line (start -1.62 26.24) (end -1.62 -8.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d3f631e-53ce-44db-b995-f0c1c62d2218))
(fp_line (start 24.48 -8.46) (end 24.48 26.24)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f1a0ed9-9ac3-4fa4-ab5c-a33bf7ca8c26))
(fp_line (start 24.48 26.24) (end -1.62 26.24)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2ea61771-7595-4a3c-a13d-2455162b8751))
(fp_line (start -1.37 -6.21) (end -1.37 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 53f8319f-815a-41ac-aa84-17c21145b0d7))
(fp_line (start -1.37 1) (end -1.37 19.09)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f9605b6-15f5-467f-9869-4655a7826541))
(fp_line (start -1.37 1) (end -0.37 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f560fa2e-2bb7-427c-855c-af21b2207ba0))
(fp_line (start -1.37 19.09) (end 1.17 19.09)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aac36e9c-9f2c-4f3e-b68b-1dc1b4b3d9fc))
(fp_line (start -0.37 0) (end -1.37 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8ffa35db-810e-422d-90e9-fa058f5ef3bf))
(fp_line (start 1.17 19.09) (end 1.17 25.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cadb2e08-fe3b-4014-bc3a-e74e54e88864))
(fp_line (start 1.17 25.99) (end 24.23 25.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a3d7a97a-dcf4-48df-84d2-661542956e3b))
(fp_line (start 22.23 -8.21) (end 0.63 -8.21)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c832db15-5328-481f-9651-5a75e305a852))
(fp_line (start 24.23 25.99) (end 24.23 -6.21)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a1fc477-03de-4c62-b915-8f7349463061))
(fp_arc (start -1.37 -6.21) (mid -0.784214 -7.624214) (end 0.63 -8.21)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4b7ddc0a-bcee-42a8-93ff-ee628637641b))
(fp_arc (start 22.25 -8.21) (mid 23.658356 -7.610071) (end 24.23 -6.19)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2214a709-a2f8-4cf2-a2e1-cb42967b09f1))
(pad "1" thru_hole rect (at 0 0) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "unconnected-(U1-~{RST}-Pad1)") (pinfunction "~{RST}") (pintype "input+no_connect") (tstamp 45c763f3-212c-467d-b6c5-dcf55b9a63f9))
(pad "2" thru_hole oval (at 0 2.54) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "unconnected-(U1-A0-Pad2)") (pinfunction "A0") (pintype "input+no_connect") (tstamp ce18415a-ee18-4125-8d4a-3f9ad7da877c))
(pad "3" thru_hole oval (at 0 5.08) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "unconnected-(U1-D0-Pad3)") (pinfunction "D0") (pintype "bidirectional+no_connect") (tstamp 3ecee1e8-b0bb-418c-9308-2b72086d2e2a))
(pad "4" thru_hole oval (at 0 7.62) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "unconnected-(U1-SCK{slash}D5-Pad4)") (pinfunction "SCK/D5") (pintype "bidirectional+no_connect") (tstamp e3a0824a-8a40-495c-b740-c6263af35da7))
(pad "5" thru_hole oval (at 0 10.16) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "unconnected-(U1-MISO{slash}D6-Pad5)") (pinfunction "MISO/D6") (pintype "bidirectional+no_connect") (tstamp 78ef8c96-9d5d-48e2-8169-46f0cd6fb657))
(pad "6" thru_hole oval (at 0 12.7) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "Net-(U1-MOSI{slash}D7)") (pinfunction "MOSI/D7") (pintype "bidirectional") (tstamp 81d7d64a-dbe6-4508-b304-f9f0c65c7cb9))
(pad "7" thru_hole oval (at 0 15.24) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "unconnected-(U1-CS{slash}D8-Pad7)") (pinfunction "CS/D8") (pintype "bidirectional+no_connect") (tstamp b583978a-d45f-4688-83c0-bf4595ef1304))
(pad "8" thru_hole oval (at 0 17.78) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "+3.3V") (pinfunction "3V3") (pintype "power_out") (tstamp 7750348e-0ec6-4e48-bc5e-04d3f0a651ca))
(pad "9" thru_hole oval (at 22.86 17.78) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "+5V") (pinfunction "5V") (pintype "power_in") (tstamp 76cbaf0a-dfa9-4c17-b14c-9940cfd3f9c2))
(pad "10" thru_hole oval (at 22.86 15.24) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 07c2e74b-a558-4da9-a84d-1ce10f3b8435))
(pad "11" thru_hole oval (at 22.86 12.7) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "unconnected-(U1-D4-Pad11)") (pinfunction "D4") (pintype "bidirectional+no_connect") (tstamp 45b8cf28-0fa3-4b86-93c6-1639a3ab58df))
(pad "12" thru_hole oval (at 22.86 10.16) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "unconnected-(U1-D3-Pad12)") (pinfunction "D3") (pintype "bidirectional+no_connect") (tstamp 69704fd3-e9e2-42b7-b2e0-77192a075c46))
(pad "13" thru_hole oval (at 22.86 7.62) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 19 "/ESP_RX") (pinfunction "SDA/D2") (pintype "bidirectional") (tstamp 1060e1eb-814f-4f0d-91f9-4b499390150d))
(pad "14" thru_hole oval (at 22.86 5.08) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 20 "/ESP_TX") (pinfunction "SCL/D1") (pintype "bidirectional") (tstamp c5322d44-8a69-4bfd-889d-8f9fe53c0f55))
(pad "15" thru_hole oval (at 22.86 2.54) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 12 "unconnected-(U1-RX-Pad15)") (pinfunction "RX") (pintype "input+no_connect") (tstamp 0ee7045d-93c7-464e-9770-d33c05f146ce))
(pad "16" thru_hole oval (at 22.86 0) (size 2 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "unconnected-(U1-TX-Pad16)") (pinfunction "TX") (pintype "output+no_connect") (tstamp 16a958b3-9cf9-4c98-84e8-b8a36e9b043d))
(model "${KICAD6_3DMODEL_DIR}/Module.3dshapes/WEMOS_D1_mini_light.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x08_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 9.5))
(scale (xyz 1 1 1))
(rotate (xyz 0 -180 0))
)
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x08_P2.54mm_Vertical.wrl"
(offset (xyz 22.86 0 9.5))
(scale (xyz 1 1 1))
(rotate (xyz 0 -180 0))
)
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x08_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x08_P2.54mm_Vertical.wrl"
(offset (xyz 22.86 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_5mm" (layer "F.Cu")
(tstamp 5d095815-65c7-46c9-a3b5-255f7e433b63)
(at 122.428 115.57)
(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 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 6288759d-907c-4d56-baef-f57aed59bbe4)
(at 138.684 113.792 90)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(property "Sheetfile" "RatGDO-OpenSource-D1Mini-ESP8266.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 "/650f3990-215d-49c0-94a9-415de3c235a2")
(attr through_hole)
(fp_text reference "J3" (at -0.254 7.874) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd576a42-dab0-411c-b782-d168a84ca1ae)
)
(fp_text value "Screw_Terminal_01x03" (at 0 7.41 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3210696e-e529-43d0-8fc0-8209ccfb5dcb)
)
(fp_text user "${REFERENCE}" (at 0 2.54 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 142d5add-2b82-465d-aefd-c45e18368b38)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ecd5d9f8-c8b9-4c5f-af23-4b31d2b741dc))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4f38590f-671b-4614-8f7f-56d918d47394))
(fp_line (start -1.33 1.27) (end -1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 92829aff-bd9a-4001-a3dc-a0aa6eb244cd))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d20da257-3841-40f8-8d6e-c020bf2643f9))
(fp_line (start -1.33 6.41) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd543b7a-11d7-476a-9ba7-d4152cc2a358))
(fp_line (start 1.33 1.27) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f2f3e73f-0ca5-4cea-98b4-4e2db77805e9))
(fp_line (start -1.8 -1.8) (end -1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 12cbdcfe-ed96-42e6-86a8-8e367b7b9c49))
(fp_line (start -1.8 6.85) (end 1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 56387807-58ae-419c-9ef7-05badf78b4bd))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6d04f060-1e6c-4bf4-83dc-3ddf23ad6049))
(fp_line (start 1.8 6.85) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dd44336a-03c6-4aad-be0a-60030c4a879c))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3446d2a8-7b69-4f05-9f5a-44499c3e974c))
(fp_line (start -1.27 6.35) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e061188b-cc9c-4c10-b731-1ac6ecd92c48))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b0cdc12-b344-4314-898d-6dbb8acfb605))
(fp_line (start 1.27 -1.27) (end 1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f22eef6f-c027-410e-b340-e3cb6bef7e43))
(fp_line (start 1.27 6.35) (end -1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a813e1cb-b11c-4b96-a025-689a54ff96ca))
(pad "1" thru_hole rect (at 0 0 90) (size 2.5 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 16 "BLK{slash}OBST") (pinfunction "Blk/Obst") (pintype "passive") (tstamp 11188d00-7b55-473d-8ddd-58748a80f9a3))
(pad "2" thru_hole oval (at 0 2.54 90) (size 2.5 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "RED{slash}CTRL") (pinfunction "Red/Cntrl") (pintype "passive") (tstamp fb747ca5-9347-4016-b043-eaafe812a5a4))
(pad "3" thru_hole oval (at 0 5.08 90) (size 2.5 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "GND") (pinfunction "Wht/Gnd") (pintype "passive") (tstamp ce136c62-b610-4d1d-9db9-1a59b392835b))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_5mm" (layer "F.Cu")
(tstamp 81f4939c-b19b-46c8-adf3-eedbe09b3d78)
(at 122.428 62.992)
(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 378e5f7f-1212-4612-9dad-d61c19fae56d)
)
(fp_text value "MountingHole_5mm" (at 0 6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bad88559-9819-4196-83e2-56c0271183aa)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7d9809c-aec9-402c-9e6f-b855107c930e)
)
(fp_circle (center 0 0) (end 5 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 42fd7139-17b7-422f-9673-8a96d061eadb))
(fp_circle (center 0 0) (end 5.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 08c3614f-185b-4d3a-b094-7e89014bcecd))
(pad "" np_thru_hole circle (at 0 0) (size 5 5) (drill 5) (layers "F&B.Cu" "*.Mask") (tstamp 863e76d6-43eb-456a-a14f-f99cdd92d373))
)
(footprint "Package_TO_SOT_SMD:SOT-23_Handsoldering" (layer "F.Cu")
(tstamp 857c9619-88ca-4276-96f8-82c3f196ae64)
(at 158.194 78.044)
(descr "SOT-23, Handsoldering")
(tags "SOT-23")
(property "Sheetfile" "RatGDO-OpenSource-D1Mini-ESP8266.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 1.016) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 644c5470-7099-4b05-b383-3ec98d454641)
)
(fp_text value "AO3400A" (at 0 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1cbf4a44-161d-4b23-8459-91c4e2b3214c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 1b287209-e9c4-48af-92d4-9d0794e6a058)
)
(fp_line (start 0.76 -1.58) (end -2.4 -1.58)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 82d9df7a-c130-417c-87ef-c3bf94a6857f))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6ee74620-941b-408b-99a0-00a1e853359e))
(fp_line (start 0.76 1.58) (end -0.7 1.58)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2eec16c2-73e6-427e-876b-771359fda01c))
(fp_line (start 0.76 1.58) (end 0.76 0.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 488195d5-22c8-4f6e-85b5-5f7eb3e5416e))
(fp_line (start -2.7 -1.75) (end 2.7 -1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fabdc748-948c-487e-acb6-762ec8b909f7))
(fp_line (start -2.7 1.75) (end -2.7 -1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b136206c-0931-4e09-b60f-6324b457e3bf))
(fp_line (start 2.7 -1.75) (end 2.7 1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 00348fb0-a56f-4627-a315-51f4bf327fed))
(fp_line (start 2.7 1.75) (end -2.7 1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2014f066-467f-4008-b3bf-3c65ff2fd8ff))
(fp_line (start -0.7 -0.95) (end -0.7 1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp faa0fe27-299d-43b8-99a8-89c0aab831aa))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 191ac534-8b62-440d-b354-3e1fff78e93a))
(fp_line (start -0.7 1.52) (end 0.7 1.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9abd95a3-27ea-4a2a-a4ab-6c2fe3f20ddd))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9be2ef08-3aec-47e7-a659-47bf00ef6796))
(fp_line (start 0.7 -1.52) (end 0.7 1.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 178d32ff-87ad-49f6-8281-bfe61ce2b512))
(pad "1" smd rect (at -1.5 -0.95) (size 1.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "Net-(Q2-G)") (pinfunction "G") (pintype "input") (tstamp aae0910f-9a70-4d16-91aa-36bfcc52f4f5))
(pad "2" smd rect (at -1.5 0.95) (size 1.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "GND") (pinfunction "S") (pintype "passive") (tstamp 2f8187e2-5a34-4592-add3-48e5cba1cbb9))
(pad "3" smd rect (at 1.5 0) (size 1.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "RED{slash}CTRL") (pinfunction "D") (pintype "passive") (tstamp 1a467958-29e5-437b-a880-0b510d1bb056))
(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 "Package_TO_SOT_SMD:SOT-23_Handsoldering" (layer "F.Cu")
(tstamp a5549976-ccc4-46f4-8a75-f42da451354b)
(at 158.218 82.55 180)
(descr "SOT-23, Handsoldering")
(tags "SOT-23")
(property "Sheetfile" "RatGDO-OpenSource-D1Mini-ESP8266.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 -4.04 -1.082 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1a50a654-2425-4db7-83d6-3bcd4c79406b)
)
(fp_text value "2N7002" (at 0 2.5 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 369ab43b-d1e9-4fc7-a04e-746525ee4e64)
)
(fp_text user "${REFERENCE}" (at 0 0 270) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 4ab43fa4-7f0c-479a-999b-1029b9301086)
)
(fp_line (start 0.76 -1.58) (end -2.4 -1.58)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d5ff17a0-5b31-4d40-aa6c-daf2d740df1e))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1ca4c6a6-c83e-49e0-81b7-7e9f46f122f0))
(fp_line (start 0.76 1.58) (end -0.7 1.58)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f7730af4-84e1-4ccd-bddd-780f13d35630))
(fp_line (start 0.76 1.58) (end 0.76 0.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 022bdd01-1603-409b-9aa8-2ea347a92020))
(fp_line (start -2.7 -1.75) (end 2.7 -1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 41968488-9b96-46cd-9801-ac249885f65c))
(fp_line (start -2.7 1.75) (end -2.7 -1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 00e9fb0d-8651-4083-9940-beb4f2a0d82e))
(fp_line (start 2.7 -1.75) (end 2.7 1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cd48510b-1155-4012-9458-a01861c89107))
(fp_line (start 2.7 1.75) (end -2.7 1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e5b94863-7031-4074-a456-3482b25f3609))
(fp_line (start -0.7 -0.95) (end -0.7 1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9a3ec4f4-ea4d-4a6c-84b9-50f1faf516a4))
(fp_line (start -0.7 -0.95) (end -0.15 -1.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 072f1644-d290-46c1-861f-a0df432f26f2))
(fp_line (start -0.7 1.52) (end 0.7 1.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e4d24451-2e20-4b12-ada4-15562b15917b))
(fp_line (start -0.15 -1.52) (end 0.7 -1.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 33af49ac-a932-4dd8-bd25-b6bef93f5f7d))
(fp_line (start 0.7 -1.52) (end 0.7 1.52)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ebbc5c3-68e1-477c-acad-73df7e229043))
(pad "1" smd rect (at -1.5 -0.95 180) (size 1.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "Net-(Q1-G)") (pinfunction "G") (pintype "input") (tstamp 3acb65a5-5bf4-40d5-b8f3-879701a00ea1))
(pad "2" smd rect (at -1.5 0.95 180) (size 1.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "GND") (pinfunction "S") (pintype "passive") (tstamp ec2c691b-4900-4765-a3c6-84cd31082984))
(pad "3" smd rect (at 1.5 0 180) (size 1.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "/ESP_RX") (pinfunction "D") (pintype "passive") (tstamp b5e94d66-3516-4c50-b7de-930a216c41fd))
(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 "Connector_Phoenix_MC:PhoenixContact_MCV_1,5_3-G-3.5_1x03_P3.50mm_Vertical" (layer "F.Cu")
(tstamp a5a69431-5243-458a-ad8b-eb5b9b6ebadf)
(at 157.48 104.592 90)
(descr "Generic Phoenix Contact connector footprint for: MCV_1,5/3-G-3.5; number of pins: 03; pin pitch: 3.50mm; Vertical || order number: 1843619 8A 160V")
(tags "phoenix_contact connector MCV_01x03_G_3.5mm")
(property "Sheetfile" "RatGDO-OpenSource-D1Mini-ESP8266.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 -3.866 2.032 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c55aab74-864e-4bcc-9f04-520260c99080)
)
(fp_text value "Screw_Terminal_01x03" (at 3.5 4.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7532aaee-30da-4e8f-9cbe-8999b23699da)
)
(fp_text user "${REFERENCE}" (at 3.5 -3.55 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fb047c01-3e84-4da3-855e-a42bd892a02a)
)
(fp_line (start -2.95 -4.75) (end -0.95 -4.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ea881130-352f-4a24-97fa-6782b65dfc61))
(fp_line (start -2.95 -3.5) (end -2.95 -4.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c80ac855-d5cb-49fd-a40f-0dc83b87b577))
(fp_line (start -2.56 -4.36) (end -2.56 3.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f8e3e4bd-774f-48fb-92a7-d63f1a119231))
(fp_line (start -2.56 3.11) (end 9.56 3.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ef6ef92a-39be-4090-a05b-d19f391c6a01))
(fp_line (start -1.5 -3.4) (end 1.5 -3.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 22a913c5-4489-4e37-800d-60d6705b96f2))
(fp_line (start -1.5 -2.05) (end -0.75 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 08893c0a-65bd-4418-b4f3-c014502e4d3b))
(fp_line (start -1.5 2.25) (end -1.5 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ec46153b-46b5-44fc-991f-0403ba226627))
(fp_line (start -1.25 -2.4) (end -1.5 -3.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5f525596-fabc-4846-b02f-bad9b26a150f))
(fp_line (start -0.75 -2.4) (end -1.25 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a10d204-cda4-4ded-9b86-a51ef3242cb7))
(fp_line (start -0.75 -2.05) (end -0.75 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ab2ae94-ba3e-4a5a-b2e9-440b0447ef56))
(fp_line (start -0.75 2.25) (end -1.5 2.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 503bc5a0-e2f7-40d5-ae8e-73c17deb6b66))
(fp_line (start 0.75 -2.4) (end 0.75 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab396320-7ca2-4d9e-a11d-313386833e0e))
(fp_line (start 0.75 -2.05) (end 1.5 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f2fa3e4-f1ff-49f3-9a1e-ef31918692af))
(fp_line (start 1.25 -2.4) (end 0.75 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2ca3b29a-34cf-4c8a-b580-754dbd71244a))
(fp_line (start 1.5 -3.4) (end 1.25 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c3772377-229f-494e-a0e6-1319937dd523))
(fp_line (start 1.5 -2.05) (end 1.5 2.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aeebb3e1-170d-4ac9-9598-0ff64019fa8f))
(fp_line (start 1.5 2.25) (end 0.75 2.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6dfd88f5-2d34-4abb-b604-e7255d8f860a))
(fp_line (start 2 -3.4) (end 5 -3.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6fad4c04-3d57-46fd-a10a-1f0248b5f495))
(fp_line (start 2 -2.05) (end 2.75 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5969e6cf-2696-461e-b2c2-ec85d7f796b0))
(fp_line (start 2 2.25) (end 2 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 84093ba0-ee9f-45b3-a6de-e85dac6bf04c))
(fp_line (start 2.25 -2.4) (end 2 -3.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a1a0e263-0cec-40cd-8925-e69f2679716c))
(fp_line (start 2.75 -2.4) (end 2.25 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5b8c182-e089-4c3b-bc8a-9539e9efa5a0))
(fp_line (start 2.75 -2.05) (end 2.75 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 07f0225f-6d44-4e2d-8fed-c07d4d911795))
(fp_line (start 2.75 2.25) (end 2 2.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 99d8a012-e538-4a77-9384-aad6eede5a1e))
(fp_line (start 4.25 -2.4) (end 4.25 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp baf77ba4-0f7c-411b-a11d-a9760dde0338))
(fp_line (start 4.25 -2.05) (end 5 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9667832b-d458-4e47-b8e0-7064784957c9))
(fp_line (start 4.75 -2.4) (end 4.25 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2c15cf50-1327-47e0-b8c7-3931773de803))
(fp_line (start 5 -3.4) (end 4.75 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 71534509-6bb9-4a82-a815-10ed139257b4))
(fp_line (start 5 -2.05) (end 5 2.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ce8571f9-52c4-4e80-9153-dae7cd293ba1))
(fp_line (start 5 2.25) (end 4.25 2.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 025fdf89-8a54-48d5-9816-97cd3686690f))
(fp_line (start 5.5 -3.4) (end 8.5 -3.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51cdecc5-ed72-4451-9a64-cba7b24c951e))
(fp_line (start 5.5 -2.05) (end 6.25 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 160a88f0-762a-4b20-a357-f2a592bde18f))
(fp_line (start 5.5 2.25) (end 5.5 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 26df1f77-ec01-4222-bbb2-a4db7a06d79a))
(fp_line (start 5.75 -2.4) (end 5.5 -3.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0bba7051-24aa-49f5-b354-fb3498f11f6b))
(fp_line (start 6.25 -2.4) (end 5.75 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 928c120e-3894-4c12-ac3c-1e3772a7b471))
(fp_line (start 6.25 -2.05) (end 6.25 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff942827-1daa-47d3-ac00-e56764ab648c))
(fp_line (start 6.25 2.25) (end 5.5 2.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b50b378f-3da7-4cf7-894e-935b2ac5a3ed))
(fp_line (start 7.75 -2.4) (end 7.75 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6038bff5-cf53-4887-a9b3-ee4ab3edcf4c))
(fp_line (start 7.75 -2.05) (end 8.5 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0088ac59-95bf-4ef4-9e5b-67391f469500))
(fp_line (start 8.25 -2.4) (end 7.75 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 50fa09e8-ec54-4420-abaf-d85c6ed2d019))
(fp_line (start 8.5 -3.4) (end 8.25 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8bc34997-db30-45ee-8ea2-4a5dbbc837d2))
(fp_line (start 8.5 -2.05) (end 8.5 2.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b6d2c00a-2911-44e0-8cb4-06eadd58c426))
(fp_line (start 8.5 2.25) (end 7.75 2.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd611de9-8c07-4d68-9b58-06945b8c834f))
(fp_line (start 9.56 -4.36) (end -2.56 -4.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ac161270-5710-4e08-92f4-95952e3faf63))
(fp_line (start 9.56 3.11) (end 9.56 -4.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6854ab9e-468b-488a-8082-a9f29d9b811f))
(fp_arc (start -0.75 2.25) (mid -0.000193 2.09191) (end 0.749647 2.249844)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp efa88550-81b2-4cc4-9451-5a42e9c5d188))
(fp_arc (start 2.75 2.25) (mid 3.499807 2.09191) (end 4.249647 2.249844)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ca81799c-a9ac-4eb3-84a2-66412cc8298c))
(fp_arc (start 6.25 2.25) (mid 6.999807 2.09191) (end 7.749647 2.249844)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7242d904-4419-47db-b046-80d2405c6e99))
(fp_line (start -2.95 -4.75) (end -2.95 3.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6f6d2e66-c2ec-45d3-9532-9754a6f389d2))
(fp_line (start -2.95 3.5) (end 9.95 3.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bec5922f-628c-43c0-849c-60dd78fc5f5d))
(fp_line (start 9.95 -4.75) (end -2.95 -4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c509e293-68c9-4f64-8f32-3d35dc28008f))
(fp_line (start 9.95 3.5) (end 9.95 -4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c25873ef-72f4-4212-9251-377d2688644c))
(fp_line (start -2.95 -4.75) (end -0.95 -4.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c5ba4a03-94a0-4a29-b7b5-f571d77e4804))
(fp_line (start -2.95 -3.5) (end -2.95 -4.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b5a158ce-70db-45ec-ad0a-0f6e0762b702))
(fp_line (start -2.45 -4.25) (end -2.45 3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b5a889d2-49bc-4599-a15d-0dfa53272fc9))
(fp_line (start -2.45 3) (end 9.45 3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8df1cbc7-4160-42e7-9596-401c607e713e))
(fp_line (start 9.45 -4.25) (end -2.45 -4.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f16b39e7-f57a-466b-9bbb-f437415acbc5))
(fp_line (start 9.45 3) (end 9.45 -4.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f3cf25b6-fed0-4044-a38c-3c0514c48ba4))
(pad "1" thru_hole roundrect (at 0 0 90) (size 1.8 3.6) (drill 1.2) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.1388888889)
(net 16 "BLK{slash}OBST") (pinfunction "Blk/Obst") (pintype "passive") (tstamp 9d829323-f5ae-4ac6-be0a-ce4e2f3d2bc8))
(pad "2" thru_hole oval (at 3.5 0 90) (size 1.8 3.6) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 17 "RED{slash}CTRL") (pinfunction "Red/Cntrl") (pintype "passive") (tstamp 17a8c503-9686-4260-b594-bbb2bfbd878c))
(pad "3" thru_hole oval (at 7 0 90) (size 1.8 3.6) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 14 "GND") (pinfunction "Wht/Gnd") (pintype "passive") (tstamp 2562e201-2530-4935-8d98-ad3d22845e8e))
(model "${KICAD6_3DMODEL_DIR}/Connector_Phoenix_MC.3dshapes/PhoenixContact_MCV_1,5_3-G-3.5_1x03_P3.50mm_Vertical.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 126.492 97.282 -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-ESP8266.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 13.716 -4.318 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7023cbd3-8b47-4dfa-a27c-7ae4ff1d42ab)
)
(fp_text value "Screw_Terminal_01x03" (at 5 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 5 3.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 76438455-6070-4b6e-a9be-a915ca63132f)
)
(fp_line (start -2.8 4.16) (end -2.8 4.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f5ecc50-fbbf-4ed4-876f-d8135821b07b))
(fp_line (start -2.8 4.9) (end -2.3 4.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b93081c1-0917-45c4-9726-5f694d721cac))
(fp_line (start -2.56 -5.261) (end -2.56 4.66)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9e478f44-5dbb-4855-8dc0-2255cab19c08))
(fp_line (start -2.56 -5.261) (end 12.56 -5.261)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 44b9cc61-2d44-49f8-8716-5cdad65cdb0c))
(fp_line (start -2.56 -2.301) (end 12.56 -2.301)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a42e4bba-0193-48e5-8c3e-fcf6054dea0d))
(fp_line (start -2.56 2.6) (end 12.56 2.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2bf148d9-6b1d-4f9c-9962-75a4f9f7931e))
(fp_line (start -2.56 4.1) (end 12.56 4.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 40af02f0-d0d4-4a65-a599-470be8592c87))
(fp_line (start -2.56 4.66) (end 12.56 4.66)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 712e2cac-797e-4767-82a4-abfc31ab73a4))
(fp_line (start 3.773 1.023) (end 3.726 1.069)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f178fe6-eca7-44f5-976d-44454fb12897))
(fp_line (start 3.966 1.239) (end 3.931 1.274)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 38047274-3c1c-4fca-855f-daff45d9f938))
(fp_line (start 6.07 -1.275) (end 6.035 -1.239)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 81a99ac6-47f6-4842-803c-63863b872cf7))
(fp_line (start 6.275 -1.069) (end 6.228 -1.023)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f61d431-0acb-4c82-a102-a5abb86837e1))
(fp_line (start 8.773 1.023) (end 8.726 1.069)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e4e8908-200a-469d-bbc3-f7a4c9a65d15))
(fp_line (start 8.966 1.239) (end 8.931 1.274)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp abb959ac-2f15-4232-8c58-7ac9acce0e47))
(fp_line (start 11.07 -1.275) (end 11.035 -1.239)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 556345c0-486d-49e9-ae84-97a78cf5098d))
(fp_line (start 11.275 -1.069) (end 11.228 -1.023)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e35f984-ba5f-49aa-b8bb-bb64b995dcb7))
(fp_line (start 12.56 -5.261) (end 12.56 4.66)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f07cf3c9-231e-4eff-beef-46a0bd89c111))
(fp_arc (start -1.535427 0.683042) (mid -1.680501 -0.000524) (end -1.535 -0.684)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0088923a-4905-4d74-afc0-9fabefc008aa))
(fp_arc (start -0.683042 -1.535427) (mid 0.000524 -1.680501) (end 0.684 -1.535)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 49480486-8109-4d5e-b90f-2e2640b44e2c))
(fp_arc (start 0.028805 1.680253) (mid -0.335551 1.646659) (end -0.684 1.535)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 573f28d1-9d6b-439e-b376-871b53cf7c30))
(fp_arc (start 0.683318 1.534756) (mid 0.349292 1.643288) (end 0 1.68)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e9310498-d319-46c5-8c65-92abd5e054c1))
(fp_arc (start 1.535427 -0.683042) (mid 1.680501 0.000524) (end 1.535 0.684)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ee08091-0ea5-429f-a7af-12547fd18163))
(fp_circle (center 5 0) (end 6.68 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp e84e3cf3-ad66-439b-b3a1-adc7d7c95bd5))
(fp_circle (center 10 0) (end 11.68 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp c4f02909-e137-4d3e-b335-3ac4f489a9a7))
(fp_line (start -3 -5.71) (end -3 5.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7cfb6443-e5d0-4b2a-a30c-3066c493c1a9))
(fp_line (start -3 5.1) (end 13 5.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1bd2c62e-d71b-4cbf-b5af-6f9d68deb933))
(fp_line (start 13 -5.71) (end -3 -5.71)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 107c5145-2ebe-4aec-a062-1a7b890fc417))
(fp_line (start 13 5.1) (end 13 -5.71)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a0491f0a-acea-44b8-9e01-ea8dd31c93d5))
(fp_line (start -2.5 -5.2) (end 12.5 -5.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 540aad0c-48b1-4894-b436-e4a33e49a339))
(fp_line (start -2.5 -2.3) (end 12.5 -2.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3dd41a27-af8d-4781-b159-7aa5fb21ebdc))
(fp_line (start -2.5 2.6) (end 12.5 2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9588c0cc-7e47-454e-a629-8215ee28405d))
(fp_line (start -2.5 4.1) (end -2.5 -5.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0523c05e-f3a3-4d1c-a47f-711d844dd84a))
(fp_line (start -2.5 4.1) (end 12.5 4.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 617bc28d-7b14-4d38-8aec-ed191e6a2b10))
(fp_line (start -2 4.6) (end -2.5 4.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fba2e9c4-3490-46ad-8d45-6ab18800709b))
(fp_line (start 0.955 -1.138) (end -1.138 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b0de167c-629f-4c32-88e8-a58f219d93be))
(fp_line (start 1.138 -0.955) (end -0.955 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7a74991b-8e73-44fe-80e0-d8d058a73d73))
(fp_line (start 5.955 -1.138) (end 3.863 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f50132a-9383-4431-987f-104a67480e29))
(fp_line (start 6.138 -0.955) (end 4.046 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e52c3e0-0edb-4c8e-9e18-0b9a685422fe))
(fp_line (start 10.955 -1.138) (end 8.863 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 93bfc65a-18d8-4402-8e51-14af0caea26f))
(fp_line (start 11.138 -0.955) (end 9.046 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 067a3537-243c-4c93-bea1-8c4d304c7396))
(fp_line (start 12.5 -5.2) (end 12.5 4.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 71955460-e906-4e57-9c45-01f1da1ae313))
(fp_line (start 12.5 4.6) (end -2 4.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1801f3b4-6db8-4a53-91e7-97c30147b5e3))
(fp_circle (center 0 0) (end 1.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 3249176b-749a-4a4b-bb11-e3b3c5db8f3b))
(fp_circle (center 5 0) (end 6.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp cd41ffd6-ea40-48be-87de-76d40ba81cef))
(fp_circle (center 10 0) (end 11.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 0 0 270) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 16 "BLK{slash}OBST") (pinfunction "Blk/Obst") (pintype "passive") (tstamp efa5f7dd-1549-4d95-838b-42c1fe36111c))
(pad "2" thru_hole circle (at 5 0 270) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 17 "RED{slash}CTRL") (pinfunction "Red/Cntrl") (pintype "passive") (tstamp 79912918-652c-4dbe-9ba8-af6aa62216ae))
(pad "3" thru_hole circle (at 10 0 270) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 14 "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 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 c05b9f39-9115-47f1-91c5-b77839cf6ca5)
(at 124.5635 78.867 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 "Sheetfile" "RatGDO-OpenSource-D1Mini-ESP8266.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/734de092-5b3e-4ebf-8f6a-65c7d0176f46")
(attr smd)
(fp_text reference "R2" (at 3.048 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a6672c6-7ffc-4543-befa-d49e3608df56)
)
(fp_text value "10k" (at 0 1.65 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03347839-6f71-4c09-b5f0-f4632c40b0c5)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 0d3c7b8b-753b-4c9f-821a-bcddce5a340a)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9e0b040c-69aa-423a-bcf6-eb762a0bab24))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eada7834-37bf-44e9-8dd7-725544776b85))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4bae7ca3-b6e6-4298-875d-cb934f86409b))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bab7961f-b9cf-461c-82f9-e16cc3f24eae))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dcbd87c9-bfa4-48e4-b5a4-b7057da532d9))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a694b6fa-4801-4a79-ad85-416b5d743d52))