forked from Kaldek/rat-ratgdo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RatGDO-OpenSource-D1Mini-ESP8266.kicad_pcb~Updated upstream
2730 lines (2710 loc) · 123 KB
/
RatGDO-OpenSource-D1Mini-ESP8266.kicad_pcb~Updated upstream
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
(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-(J1-Pin_2)")
(net 2 "Net-(J1-Pin_1)")
(net 3 "Net-(Q1-D)")
(net 4 "Net-(Q2-G)")
(net 5 "Net-(U1-MOSI{slash}D7)")
(net 6 "unconnected-(U1-~{RST}-Pad1)")
(net 7 "unconnected-(U1-A0-Pad2)")
(net 8 "unconnected-(U1-D0-Pad3)")
(net 9 "unconnected-(U1-SCK{slash}D5-Pad4)")
(net 10 "unconnected-(U1-MISO{slash}D6-Pad5)")
(net 11 "unconnected-(U1-CS{slash}D8-Pad7)")
(net 12 "+3.3V")
(net 13 "unconnected-(U1-D4-Pad11)")
(net 14 "unconnected-(U1-D3-Pad12)")
(net 15 "unconnected-(U1-RX-Pad15)")
(net 16 "unconnected-(U1-TX-Pad16)")
(net 17 "GND")
(net 18 "+5V")
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tstamp 1d510a84-4f2c-46f3-9090-2dca07a95c59)
(at 158.75 71.264162 180)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "RatGDO-OpenSource.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 -2.54 0.144162) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9ffd469-9f65-4a91-9639-346d9dc0d9d6)
)
(fp_text value "10k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 75918126-f9fc-4901-8c68-bbf47c4b6eac)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 85a4dd47-7b5a-4fac-9578-a9a1f5329895)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 531fc0f1-7a83-4e02-aea3-fe0f919ca1ad))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 883833a3-2c94-4e95-b6ca-a9a33e48bd97))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b1303238-0197-486c-bb06-b01ddfc222f0))
(fp_line (start -1.68 0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 62fd4359-d781-42b0-b37d-2ce889de851f))
(fp_line (start 1.68 -0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c76104da-44eb-4aec-bed6-f8a879e820b9))
(fp_line (start 1.68 0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 428fecc1-e9a1-4802-9ab0-82c6d9b136e4))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 36e65030-6ca2-4285-a575-991eafbbfc78))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 447d4688-8bdb-40f8-a2ce-4e7c8b7a1177))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 938cfeb0-e97d-48dc-b645-215af3703609))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7b9be734-47c5-4882-a30d-3c90d7913732))
(pad "1" smd roundrect (at -0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 17 "GND") (pintype "passive") (tstamp ffbfef0d-e4ba-45bb-93d8-064d136394ca))
(pad "2" smd roundrect (at 0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 4 "Net-(Q2-G)") (pintype "passive") (tstamp e209f36c-7767-4044-9201-b33341440803))
(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 162.56 63.5)
(descr "Mounting Hole 5mm, no annular")
(tags "mounting hole 5mm no annular")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (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 162.56 118.11)
(descr "Mounting Hole 5mm, no annular")
(tags "mounting hole 5mm no annular")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (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.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 6 "unconnected-(U1-~{RST}-Pad1)") (pinfunction "~{RST}") (pintype "input") (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 7 "unconnected-(U1-A0-Pad2)") (pinfunction "A0") (pintype "input") (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 8 "unconnected-(U1-D0-Pad3)") (pinfunction "D0") (pintype "bidirectional") (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 9 "unconnected-(U1-SCK{slash}D5-Pad4)") (pinfunction "SCK/D5") (pintype "bidirectional") (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 10 "unconnected-(U1-MISO{slash}D6-Pad5)") (pinfunction "MISO/D6") (pintype "bidirectional") (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 5 "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 11 "unconnected-(U1-CS{slash}D8-Pad7)") (pinfunction "CS/D8") (pintype "bidirectional") (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 12 "+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 18 "+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 17 "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 13 "unconnected-(U1-D4-Pad11)") (pinfunction "D4") (pintype "bidirectional") (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 14 "unconnected-(U1-D3-Pad12)") (pinfunction "D3") (pintype "bidirectional") (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 3 "Net-(Q1-D)") (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 4 "Net-(Q2-G)") (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 15 "unconnected-(U1-RX-Pad15)") (pinfunction "RX") (pintype "input") (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 16 "unconnected-(U1-TX-Pad16)") (pinfunction "TX") (pintype "output") (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 120.65 118.11)
(descr "Mounting Hole 5mm, no annular")
(tags "mounting hole 5mm no annular")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (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 "MountingHole:MountingHole_5mm" (layer "F.Cu")
(tstamp 81f4939c-b19b-46c8-adf3-eedbe09b3d78)
(at 120.65 63.5)
(descr "Mounting Hole 5mm, no annular")
(tags "mounting hole 5mm no annular")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (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" (layer "F.Cu")
(tstamp 857c9619-88ca-4276-96f8-82c3f196ae64)
(at 159.0825 76.2)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "RatGDO-OpenSource.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 0 -2.4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 924cbdd7-4ff2-4f24-9dc0-d63c39e08b15)
)
(fp_text value "AO3400A" (at 0 2.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2cf4afb9-328a-4873-a2c4-11e7b0167372)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.32 0.32) (thickness 0.05)))
(tstamp cb2309bb-ec9c-4697-903c-851d222e55bc)
)
(fp_line (start 0 -1.56) (end -1.675 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f226016a-4ed0-4d5d-a613-af7f26cd164d))
(fp_line (start 0 -1.56) (end 0.65 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f543dcd-bdd3-4823-a875-8df8db6a7965))
(fp_line (start 0 1.56) (end -0.65 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 78fe41e1-c6db-47df-a965-5c5c97bf044c))
(fp_line (start 0 1.56) (end 0.65 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2c90d84c-79e2-46e9-aee1-72a4a0c7612b))
(fp_line (start -1.92 -1.7) (end -1.92 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f1c4ad6c-c8e6-4a51-b52b-9414a96db6af))
(fp_line (start -1.92 1.7) (end 1.92 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d960e631-8b8b-427e-83d9-360fd2c3c7ef))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1d995ae6-5208-4eae-9d65-395d8e5cb808))
(fp_line (start 1.92 1.7) (end 1.92 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4c283556-8079-452d-935a-3c3aa16767cc))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8d43adff-4fce-41c6-a490-89191e3deebb))
(fp_line (start -0.65 1.45) (end -0.65 -1.125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 91b6ea1d-395c-408e-9288-2c2488c159b2))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 52d5f309-27b4-4029-b35e-5a58e38e1285))
(fp_line (start 0.65 -1.45) (end 0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7d426819-6cd0-416a-bc58-39c04bb5a043))
(fp_line (start 0.65 1.45) (end -0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c6063ad4-9dfc-4f55-a216-aa928ec0d058))
(pad "1" smd roundrect (at -0.9375 -0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(Q2-G)") (pinfunction "G") (pintype "input") (tstamp 19061d63-743b-4c0b-9324-b4afe6b02790))
(pad "2" smd roundrect (at -0.9375 0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "GND") (pinfunction "S") (pintype "passive") (tstamp 1e94c412-e13f-41c9-b869-a50d006e0efc))
(pad "3" smd roundrect (at 0.9375 0) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "Net-(J1-Pin_2)") (pinfunction "D") (pintype "passive") (tstamp 6035dfd8-cfc8-45b3-935d-c4fe947b545a))
(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" (layer "F.Cu")
(tstamp a5549976-ccc4-46f4-8a75-f42da451354b)
(at 158.75 83.4875 180)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "RatGDO-OpenSource.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 0 -2.4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e25913bf-9827-49d1-8222-33c70523717f)
)
(fp_text value "2N7002" (at 0 2.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c87a4b9-685c-4a34-af4a-9c788b992bd2)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.32 0.32) (thickness 0.05)))
(tstamp b9644946-de7f-42e3-9c3e-b9d7b0216cb2)
)
(fp_line (start 0 -1.56) (end -1.675 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7abc5984-b646-4717-8d5e-20c0d38acfc7))
(fp_line (start 0 -1.56) (end 0.65 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2bcb1b91-f520-4f76-9619-3fe629840bca))
(fp_line (start 0 1.56) (end -0.65 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0ec266e2-d7f9-4f5c-bb73-e4c6e51c0e15))
(fp_line (start 0 1.56) (end 0.65 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f49f4371-49c0-4432-acbc-1ef2b14cde16))
(fp_line (start -1.92 -1.7) (end -1.92 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a9ef363e-e9e3-4b98-9627-878b4c7584a4))
(fp_line (start -1.92 1.7) (end 1.92 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 47371f0a-3b41-4d95-99ad-35a576beda79))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b04ce9dc-ddf7-469d-918c-2507c9c8b22c))
(fp_line (start 1.92 1.7) (end 1.92 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7a7fb1a0-11bf-4ebd-8089-8359b88ff614))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0157715d-c3b6-44d9-b423-3fe5077fa978))
(fp_line (start -0.65 1.45) (end -0.65 -1.125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 13eef690-5e2e-46c0-b353-bba1e7dd9ecd))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1949784b-2bef-412a-a56a-f83a3b3c53b6))
(fp_line (start 0.65 -1.45) (end 0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 23a81a1d-e360-4034-bf29-501b8f96942d))
(fp_line (start 0.65 1.45) (end -0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 415fc966-f9b1-4634-b10d-ceeb1718496f))
(pad "1" smd roundrect (at -0.9375 -0.95 180) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "Net-(J1-Pin_2)") (pinfunction "G") (pintype "input") (tstamp b1e62cc7-fcc5-41a3-8b4d-7c46d14c3159))
(pad "2" smd roundrect (at -0.9375 0.95 180) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "GND") (pinfunction "S") (pintype "passive") (tstamp 90a01b6b-faed-4d90-b915-3ec43d319f29))
(pad "3" smd roundrect (at 0.9375 0 180) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(Q1-D)") (pinfunction "D") (pintype "passive") (tstamp a7701d39-e8aa-4819-9912-f21bfdbc6abc))
(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 146.67 119.38)
(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.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 "/91451a5a-fa8d-4fe4-960e-671c0fb21571")
(attr through_hole)
(fp_text reference "J2" (at 10.81 -5.08) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2121a67b-c371-4b0a-84ca-62a838576008)
)
(fp_text value "Screw_Terminal_01x03" (at 3.5 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0c15b388-536e-40b4-8c15-6f5943e19905)
)
(fp_text user "${REFERENCE}" (at 3.5 -3.55) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7393990c-4ccd-4597-b93c-7162046df194)
)
(fp_line (start -2.95 -4.75) (end -0.95 -4.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dab3f3d5-cc89-4619-822d-596aca3c683d))
(fp_line (start -2.95 -3.5) (end -2.95 -4.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e2260e8c-f017-4f76-8e6d-11b014189129))
(fp_line (start -2.56 -4.36) (end -2.56 3.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 090d8045-42b3-4db7-b674-c58dd971344a))
(fp_line (start -2.56 3.11) (end 9.56 3.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5221adf-56cd-4e79-8463-e16b4333ce76))
(fp_line (start -1.5 -3.4) (end 1.5 -3.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e144b189-4098-4260-92e2-e1c66f0b469b))
(fp_line (start -1.5 -2.05) (end -0.75 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ac9475a4-d4d6-4ce2-81c5-007d24df29e8))
(fp_line (start -1.5 2.25) (end -1.5 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bcce5ef0-a25a-47d6-8c1f-0dfaf521b64e))
(fp_line (start -1.25 -2.4) (end -1.5 -3.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 541e863f-0150-4ab9-9fe5-8a37cb90a3d1))
(fp_line (start -0.75 -2.4) (end -1.25 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 70110ea8-c699-435d-a38e-7ada0900b4d5))
(fp_line (start -0.75 -2.05) (end -0.75 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp feafe8cf-8c83-43af-a0ec-82923f74074b))
(fp_line (start -0.75 2.25) (end -1.5 2.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b897af13-1ca1-4b8f-b8d6-dc1d5c0fe2a7))
(fp_line (start 0.75 -2.4) (end 0.75 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9272c2f5-29fa-4c39-bb65-f89f2687b92b))
(fp_line (start 0.75 -2.05) (end 1.5 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8f1f3f20-463c-4c59-a52b-3850a57cbd4a))
(fp_line (start 1.25 -2.4) (end 0.75 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af6cac88-d794-4258-8a3b-fe1833fdea2f))
(fp_line (start 1.5 -3.4) (end 1.25 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f0159091-97d5-4338-8f91-964e8ab82d1a))
(fp_line (start 1.5 -2.05) (end 1.5 2.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b8374aa4-f4c6-4cde-9cb5-221f0ac18710))
(fp_line (start 1.5 2.25) (end 0.75 2.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ba110ad-80c4-4831-ab29-49d3974c0e66))
(fp_line (start 2 -3.4) (end 5 -3.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b97c3c4a-41b7-44a2-8348-1e25593c9fcf))
(fp_line (start 2 -2.05) (end 2.75 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b115f3fb-33f6-4b36-851b-f7326cd0ef88))
(fp_line (start 2 2.25) (end 2 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f271e389-edb5-44c6-8eb4-86db2faa3f71))
(fp_line (start 2.25 -2.4) (end 2 -3.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a0610a2c-33f6-4488-8f20-8ecb851b979c))
(fp_line (start 2.75 -2.4) (end 2.25 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f243c98e-aff6-4e6b-a0ad-fe6c70b20341))
(fp_line (start 2.75 -2.05) (end 2.75 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 50138fec-7a5c-4151-8198-b0d8d4322aa4))
(fp_line (start 2.75 2.25) (end 2 2.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b1705998-2b4c-4ab5-92d3-da6345526e1c))
(fp_line (start 4.25 -2.4) (end 4.25 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 402b84a2-06c2-46e8-aff0-6dcdb165191a))
(fp_line (start 4.25 -2.05) (end 5 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ea3ef534-6dc5-492f-a111-4c64c9f4e66d))
(fp_line (start 4.75 -2.4) (end 4.25 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cbbcc008-3791-46ce-8979-1be374dd3fb6))
(fp_line (start 5 -3.4) (end 4.75 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 53503b43-a502-4fca-b447-ba85d56ce0c7))
(fp_line (start 5 -2.05) (end 5 2.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 423fbe9e-d8a8-493d-a3bf-77f8f7f24fce))
(fp_line (start 5 2.25) (end 4.25 2.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp daa2434b-b2cb-4429-b4df-09896ffde9ae))
(fp_line (start 5.5 -3.4) (end 8.5 -3.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b5a9585-97f5-4bba-8723-28a544a26fc3))
(fp_line (start 5.5 -2.05) (end 6.25 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6ac1b38b-98e6-46e7-8f68-5fce95dd568d))
(fp_line (start 5.5 2.25) (end 5.5 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9d316818-e944-49a4-9d4e-c22e93a29053))
(fp_line (start 5.75 -2.4) (end 5.5 -3.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f378a67-277d-425e-bd99-80a17217d121))
(fp_line (start 6.25 -2.4) (end 5.75 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8695ef45-9324-4f57-a3fe-af45d2d7a17d))
(fp_line (start 6.25 -2.05) (end 6.25 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 588ce524-d2b5-4d31-909b-6c061e7b62ab))
(fp_line (start 6.25 2.25) (end 5.5 2.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a5cbd2a5-fc94-45fb-9ecc-165259b7704f))
(fp_line (start 7.75 -2.4) (end 7.75 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 22f97257-0c13-4b2a-af34-c04c6664667b))
(fp_line (start 7.75 -2.05) (end 8.5 -2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 250c47da-1af6-4360-8c7a-0d84b8142096))
(fp_line (start 8.25 -2.4) (end 7.75 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 247a7552-9b56-4523-8adc-186e3a8eb62e))
(fp_line (start 8.5 -3.4) (end 8.25 -2.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fcc4cf05-36d2-400e-91d5-ba758cb6c018))
(fp_line (start 8.5 -2.05) (end 8.5 2.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7761e32a-c01b-495f-98b2-fbaea3bca1c7))
(fp_line (start 8.5 2.25) (end 7.75 2.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5f87682d-2a57-4c1d-8353-77766aef7d41))
(fp_line (start 9.56 -4.36) (end -2.56 -4.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2ffddc8e-fdb0-4a3a-8cc5-245c88ada497))
(fp_line (start 9.56 3.11) (end 9.56 -4.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ad0f6bd2-0a35-4663-90c9-d8c4275d8c9e))
(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 7879a198-d5d7-43eb-b227-df0841fc1486))
(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 9e2f4478-b8cc-42d8-9216-1a084c05e7b5))
(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 69310254-bf6c-4960-9247-49e60de217ff))
(fp_line (start -2.95 -4.75) (end -2.95 3.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 243658d2-e861-4c6c-ac28-2b16cc07ce8e))
(fp_line (start -2.95 3.5) (end 9.95 3.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 84fc79ce-49cb-4858-be09-fcde977c8e81))
(fp_line (start 9.95 -4.75) (end -2.95 -4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 87a04e5b-92bf-4d20-9571-6d233e4afa83))
(fp_line (start 9.95 3.5) (end 9.95 -4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 61aeb6b0-229f-4915-a6b4-793025e28c89))
(fp_line (start -2.95 -4.75) (end -0.95 -4.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d978886a-11e6-4411-9d8d-b25392a8b961))
(fp_line (start -2.95 -3.5) (end -2.95 -4.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 32856d69-f24d-4672-ae36-e1e258f2bae1))
(fp_line (start -2.45 -4.25) (end -2.45 3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f0348c75-aa05-45eb-905f-fb6d25c2d22c))
(fp_line (start -2.45 3) (end 9.45 3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 97167b8f-3bb8-4aa7-8fcf-f43a47bad225))
(fp_line (start 9.45 -4.25) (end -2.45 -4.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d452bf9a-951e-45bd-b816-53390b4baa5e))
(fp_line (start 9.45 3) (end 9.45 -4.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf033786-c1d1-4898-a72f-26a2b386899e))
(pad "1" thru_hole roundrect (at 0 0) (size 1.8 3.6) (drill 1.2) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.1388888889)
(net 2 "Net-(J1-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp f78659e3-9f86-4c98-ae8e-3215b3e599e9))
(pad "2" thru_hole oval (at 3.5 0) (size 1.8 3.6) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 1 "Net-(J1-Pin_2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 505d1e68-70aa-433e-93c6-09fecfcfb450))
(pad "3" thru_hole oval (at 7 0) (size 1.8 3.6) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 17 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp d1bfb129-e5b9-4dd4-8d57-bc3c6a5da452))
(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 129.7 118.415)
(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.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 -3.97 -4.115) (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) (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) (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) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 2 "Net-(J1-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp efa5f7dd-1549-4d95-838b-42c1fe36111c))
(pad "2" thru_hole circle (at 5 0) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 1 "Net-(J1-Pin_2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 79912918-652c-4dbe-9ba8-af6aa62216ae))
(pad "3" thru_hole circle (at 10 0) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 17 "GND") (pinfunction "Pin_3") (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" (layer "F.Cu")
(tstamp c05b9f39-9115-47f1-91c5-b77839cf6ca5)
(at 123.19 78.74 180)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "RatGDO-OpenSource.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 2.54 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp db10149f-bd47-49f5-85d7-ae9f130ff045)
)
(fp_text value "10k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 693ac263-050b-40b8-8489-e099cf3d77ff)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 5940fac1-0d94-422a-acb4-8b19b0464871)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 71c83f66-44ff-49c1-9bc1-96d2649a8872))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fbb1df44-c74b-47ce-bd41-46dde5aedffe))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 547e2b4a-0834-47da-bc4b-33e7da44d267))
(fp_line (start -1.68 0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bfaa68ba-e30b-404f-ab18-a5641f512e04))
(fp_line (start 1.68 -0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 670938c7-4aab-4fc6-9520-1db869f5a87a))
(fp_line (start 1.68 0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dccdccfd-50d2-4e79-bacd-c6bececd5cd0))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c670d41a-2eb3-43d1-9ff4-85c69bdcdbf0))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf5f65bf-75b0-4477-85a1-d231704a05f1))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 150cd051-3c76-4981-b521-89357c306327))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb2a485d-29fa-4a66-b197-4d086052b933))
(pad "1" smd roundrect (at -0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 5 "Net-(U1-MOSI{slash}D7)") (pintype "passive") (tstamp db8613f2-ccbe-468d-9cf4-d2904c1a1ced))
(pad "2" smd roundrect (at 0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 17 "GND") (pintype "passive") (tstamp 55279782-cfec-47bb-bbc6-9382d2379aed))
(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" (layer "F.Cu")
(tstamp f494e520-d29a-4c43-80ff-9dda18430cba)
(at 123.19 82.55)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "RatGDO-OpenSource.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/e37343f8-8d73-47c2-8214-5f986a1009e9")
(attr smd)
(fp_text reference "R1" (at -2.54 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 58710add-5e96-4f60-9982-d2f4329a324f)
)
(fp_text value "10k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9190ad5-c05d-4a13-9702-8779ab07bcfd)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 6a9256e2-00bb-4b48-a9a5-3336ea5f9ba0)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2d7dc13-2d59-44c1-8790-663db982bcce))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5b58070b-f259-44bb-8994-9f8788f3f2a7))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fa88f35f-7794-4da3-8b4a-eb22a8b01b2c))
(fp_line (start -1.68 0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d6a20858-1892-4ec0-aba2-0a7ca201121f))
(fp_line (start 1.68 -0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fbfbcd18-4fb0-4c12-bc99-7f042fa7d9ae))
(fp_line (start 1.68 0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d6cf1bf3-eb59-47f7-9b69-33badc56a02c))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b053bcd1-f3b8-41b8-a176-f21ac94d4adc))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ea180b2b-b1d3-4714-ba1c-73fbdd4abc22))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 63d89390-3d06-4595-8e17-dd5b4774e110))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 20542691-12ad-447f-b6c8-0afd999485b7))
(pad "1" smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 2 "Net-(J1-Pin_1)") (pintype "passive") (tstamp 08132efd-dc81-4eb6-9868-77534d4c86dd))
(pad "2" smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 5 "Net-(U1-MOSI{slash}D7)") (pintype "passive") (tstamp d2dd82b0-8b3f-4e96-8b9f-2ed218a016c6))
(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))
)
)
(gr_rect (start 113.91 57.15) (end 168.91 127.15)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 0ea8c1ed-7af8-4859-a786-81a34f31a0f7))
(gr_text "GPIO0" (at 158.68124 76.855989) (layer "B.SilkS") (tstamp 42f78a5e-bc96-4a8f-a5d5-e021d0141070)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "RST" (at 127.785908 66.525297) (layer "B.SilkS") (tstamp 5c35f829-d13a-403e-93b6-9e8e69017885)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "GPIO5" (at 158.68124 71.775989) (layer "B.SilkS") (tstamp 6a92cbf4-8ba9-49bd-bf5b-bbdfc8aabc60)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "GPIO3" (at 158.68124 69.235989) (layer "B.SilkS") (tstamp 6ea1a1a5-365d-49cc-8efa-efb9afc378a8)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "GPIO2" (at 158.68124 79.395989) (layer "B.SilkS") (tstamp 7540723f-303e-46c6-a805-199aa351e1ef)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "GPIO13" (at 127.785908 79.225297) (layer "B.SilkS") (tstamp 7659645a-a306-44de-a301-028f306a5408)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "5v" (at 155.919336 84.475989) (layer "B.SilkS") (tstamp 78ad06e1-4b5e-4ef9-82e6-14127c6a47a8)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "GPIO15" (at 127.785908 81.765297) (layer "B.SilkS") (tstamp 7e78238a-c721-4167-89c6-5a564d9dc400)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "EN" (at 127.785908 69.065297) (layer "B.SilkS") (tstamp 8d378379-76d2-43da-9f06-9dd6b129fc14)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "GPIO12" (at 127.785908 76.685297) (layer "B.SilkS") (tstamp 90e73584-6614-465d-a6a2-f6f432c5baed)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "GPIO1" (at 158.68124 66.695989) (layer "B.SilkS") (tstamp a60e8f8d-3bc4-4a11-9625-b7b1274df0ad)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "VCC-3v3" (at 127.785908 84.305297) (layer "B.SilkS") (tstamp b30808c5-72b9-4fb4-a433-4aba7fa90052)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "GND" (at 157.252669 81.935989) (layer "B.SilkS") (tstamp b7f42002-0802-4457-8203-5114cd357ec1)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "GPIO14" (at 127.785908 74.145297) (layer "B.SilkS") (tstamp c3841fea-d1ba-4629-8401-9287a19385f0)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "GPIO16" (at 127.785908 71.605297) (layer "B.SilkS") (tstamp f07fd4cb-6e20-41f1-8fcc-98f20c6b47f7)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "GPIO4" (at 158.68124 74.315989) (layer "B.SilkS") (tstamp f7578e5d-1802-4c24-aac3-5ef554d4d074)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "BLK\nOBST" (at 154.265587 126.429201) (layer "F.SilkS") (tstamp 12010628-6972-4834-af2b-906c3319e0f8)
(effects (font (size 1 1) (thickness 0.15)) (justify bottom))
)
(gr_text "RED\nCTRL" (at 134.546103 126.499836) (layer "F.SilkS") (tstamp 13ff5719-3af4-4010-a966-7f3230a766ad)
(effects (font (size 1 1) (thickness 0.15)) (justify bottom))