-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrcs_circuit_diagram.kicad_pcb
More file actions
3469 lines (3415 loc) · 217 KB
/
Copy pathrcs_circuit_diagram.kicad_pcb
File metadata and controls
3469 lines (3415 loc) · 217 KB
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 false)
(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 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "VCC")
(net 2 "GND")
(net 3 "Net-(D1-K)")
(net 4 "Net-(D1-A)")
(net 5 "Net-(D2-K)")
(net 6 "Net-(D3-K)")
(net 7 "Net-(D3-A)")
(net 8 "Net-(D4-K)")
(net 9 "Net-(D4-A)")
(net 10 "Net-(D5-K)")
(net 11 "Net-(D5-A)")
(net 12 "Net-(D6-K)")
(net 13 "Net-(D6-A)")
(net 14 "Net-(D7-K)")
(net 15 "Net-(D7-A)")
(net 16 "Net-(J1-Pin_1)")
(net 17 "/sol2")
(net 18 "/sol3")
(net 19 "/sol4")
(net 20 "/sol5")
(net 21 "/sol6")
(footprint "Diode_THT:D_DO-41_SOD81_P10.16mm_Horizontal" (layer "F.Cu")
(tstamp 007f49c4-a523-4327-9d67-b34370781e93)
(at 176 64.92 -90)
(descr "Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf")
(tags "Diode DO-41_SOD81 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm")
(property "Sheetfile" "rcs_circuit_diagram.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "40V 1A Schottky Barrier Rectifier Diode, DO-41")
(property "ki_keywords" "diode Schottky")
(path "/90714077-e869-4c18-b526-4924b76884ef")
(attr through_hole)
(fp_text reference "Snubber6" (at 5.08 -2.47 -270) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 125f6eb7-9a25-4eda-a4f4-6bfe263e794c)
)
(fp_text value "1N5819" (at 5.08 2.47 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa5c6bea-3b5a-4e3f-b3c5-029cdfe0865d)
)
(fp_text user "K" (at 0 -2.1 -270) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ff635df7-0fe5-4695-b6ac-c8bfac480c9b)
)
(fp_text user "K" (at 0 -2.1 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2518e055-62fd-4bce-8035-24e159d4611b)
)
(fp_text user "${REFERENCE}" (at 5.47 0 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 483c2e7e-77c9-4794-80d0-dfc8b8c07670)
)
(fp_line (start 1.34 0) (end 2.36 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 062629ea-f597-4195-8512-0334107f46af))
(fp_line (start 2.36 -1.47) (end 2.36 1.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c7120add-96c2-4e92-a683-40b9ee37a326))
(fp_line (start 2.36 1.47) (end 7.8 1.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0bf75715-c9d5-42c2-b606-dc1e8ea744d4))
(fp_line (start 3.14 -1.47) (end 3.14 1.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7b79393a-4a98-41f9-857e-0624b7f18fcf))
(fp_line (start 3.26 -1.47) (end 3.26 1.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a5d417fd-c262-4aa7-803c-d8fa14d3ab70))
(fp_line (start 3.38 -1.47) (end 3.38 1.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cae62dd4-71b4-4119-b13a-9fec34ede4c9))
(fp_line (start 7.8 -1.47) (end 2.36 -1.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ee9670f5-ce48-446b-8057-7ab9cf8c7c86))
(fp_line (start 7.8 1.47) (end 7.8 -1.47)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 55bbb99c-5fa5-478e-a6d0-84f7dd6d5ccc))
(fp_line (start 8.82 0) (end 7.8 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 00a69670-ccea-4a28-b96d-a99112ab4da1))
(fp_line (start -1.35 -1.6) (end -1.35 1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ac472c83-b367-45e1-88fe-7e18d53c7c1d))
(fp_line (start -1.35 1.6) (end 11.51 1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5bd9da32-24a4-47ea-bf77-8076e3d42e69))
(fp_line (start 11.51 -1.6) (end -1.35 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1cf8ed3d-2795-438a-b32b-0957be6d73ac))
(fp_line (start 11.51 1.6) (end 11.51 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 870efd5d-6964-48ee-8521-f6af1f5f8901))
(fp_line (start 0 0) (end 2.48 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c4fda472-981c-4668-bdf7-228d0127543c))
(fp_line (start 2.48 -1.35) (end 2.48 1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 96868eda-412c-490f-b8d7-e937cbeefc10))
(fp_line (start 2.48 1.35) (end 7.68 1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 276a11c0-2a72-44bb-97be-731d38043ebe))
(fp_line (start 3.16 -1.35) (end 3.16 1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 55c693ac-e952-4c9d-a276-ead61b6bb2a0))
(fp_line (start 3.26 -1.35) (end 3.26 1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a6d921ad-4f93-4638-9aef-ea38e843cd32))
(fp_line (start 3.36 -1.35) (end 3.36 1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 78c03c6f-681b-405f-8775-2adf671042b9))
(fp_line (start 7.68 -1.35) (end 2.48 -1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 455084a5-cefd-442a-b37d-1b6b1d0c549f))
(fp_line (start 7.68 1.35) (end 7.68 -1.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 17f8ba4a-c01c-4b74-9e23-b10db4162c7e))
(fp_line (start 10.16 0) (end 7.68 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 33beee64-ca0d-4a60-aa60-a17a158508c5))
(pad "1" thru_hole rect (at 0 0 270) (size 2.2 2.2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 1 "VCC") (pinfunction "K") (pintype "passive") (tstamp 1af307e1-96d1-4b7e-829b-f52584801ca7))
(pad "2" thru_hole oval (at 10.16 0 270) (size 2.2 2.2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 14 "Net-(D7-K)") (pinfunction "A") (pintype "passive") (tstamp 748f6c3d-1f81-48c3-a18f-0ed9891729e7))
(model "${KICAD6_3DMODEL_DIR}/Diode_THT.3dshapes/D_DO-41_SOD81_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 00e9898f-b0f7-4b0f-8ce4-2c7f6d130113)
(at 139.48 83)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "rcs_circuit_diagram.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/3886e7ab-05d2-4dc3-8d18-32141251b71b")
(attr smd)
(fp_text reference "C1" (at 0 -1.16) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7fb82f4b-2c0b-4a25-90d2-91a2f8214043)
)
(fp_text value "680 uF" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 31ab3812-1859-4a69-8003-1de3f975843a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 70c60beb-69d3-4bcd-9e1d-50cb4ef56b79)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27a1c4a2-b394-43a6-956b-0f9020bd589d))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1af2126b-bd81-4fd8-abb4-b32152d86927))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7dc720e6-6950-4400-9912-1bd43801a6b4))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1ed0ef4a-6ff0-4c71-97b3-6df12dba9a74))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1b50391c-af21-4ef3-9ad2-6753ee4f7be5))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c1aefb70-2322-4675-946b-2aa93b91cae2))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3a652c16-4dd7-4382-9019-785d07675ac3))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e2e5ca02-90fb-4f17-b8b5-f915af9bf1a7))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1b06aee0-b417-4109-8859-118ea3481961))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 96478aff-274a-461f-ae74-b0ab5f3fb11d))
(pad "1" smd roundrect (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "VCC") (pintype "passive") (tstamp b166d74b-71f0-4458-89fb-84a1ed208465))
(pad "2" smd roundrect (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 04a29660-4f0c-4085-b220-f48f93b2dfbb))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_THT:TO-220-3_Vertical" (layer "F.Cu")
(tstamp 0833b939-e454-4e78-aef8-a0f9c1456fc3)
(at 101 85.08 90)
(descr "TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf")
(tags "TO-220-3 Vertical RM 2.54mm")
(property "Sheetfile" "rcs_circuit_diagram.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "62A Id, 30V Vds, 8.7 mOhm Rds, N-Channel HEXFET Power MOSFET, TO-220")
(property "ki_keywords" "N-Channel HEXFET MOSFET Logic-Level")
(path "/2aef1133-327e-439a-8bd0-3e62ddadd3e0")
(attr through_hole)
(fp_text reference "MOSFET8" (at 2.54 -4.27 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 64daad88-ad03-49b0-9b78-f57139634a26)
)
(fp_text value "IRLB8721" (at 2.54 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c60750d4-9026-4713-9e3c-76d158cc6a26)
)
(fp_text user "${REFERENCE}" (at 2.54 -4.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 60b09659-23e5-4f22-acfd-8f43f100e621)
)
(fp_line (start -2.58 -3.27) (end -2.58 1.371)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c07d3999-1387-41e6-ba30-c8a961422223))
(fp_line (start -2.58 -3.27) (end 7.66 -3.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6b7397b8-875f-44b1-9b3e-7946d5a085a0))
(fp_line (start -2.58 -1.76) (end 7.66 -1.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8c64b3b2-d664-4d64-a0be-dfb2bef82a23))
(fp_line (start -2.58 1.371) (end 7.66 1.371)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d96f69df-b193-4a38-b05f-a2b3be973740))
(fp_line (start 0.69 -3.27) (end 0.69 -1.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b99e9f52-bdb7-40fb-b6f0-9827cb15336a))
(fp_line (start 4.391 -3.27) (end 4.391 -1.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 85e17540-84e6-45f1-9345-f144b8f470d2))
(fp_line (start 7.66 -3.27) (end 7.66 1.371)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 367333cc-dc39-408c-a7ae-0f5af662ea87))
(fp_line (start -2.71 -3.4) (end -2.71 1.51)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e1b0a501-7032-42bc-921a-7925a53bc9c1))
(fp_line (start -2.71 1.51) (end 7.79 1.51)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d14f6266-da93-4de8-83f1-a0d59ee456d4))
(fp_line (start 7.79 -3.4) (end -2.71 -3.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5b5e2920-4396-48bd-9171-20fa32341c9e))
(fp_line (start 7.79 1.51) (end 7.79 -3.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d78034a-dd31-4aae-b930-4972b95abb6a))
(fp_line (start -2.46 -3.15) (end -2.46 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9417ad71-e8e1-49ad-ab42-8a4f22661cb7))
(fp_line (start -2.46 -1.88) (end 7.54 -1.88)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ff08c05e-d3a7-4ff7-90b1-00902a798caf))
(fp_line (start -2.46 1.25) (end 7.54 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 87c7b88f-7945-4291-86aa-70d04d8be516))
(fp_line (start 0.69 -3.15) (end 0.69 -1.88)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dd12d518-4ea2-4618-b2d4-c932366df67e))
(fp_line (start 4.39 -3.15) (end 4.39 -1.88)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 98491706-8f29-4ad7-bee9-6d33aa60d6c7))
(fp_line (start 7.54 -3.15) (end -2.46 -3.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3cb65989-58d9-40f6-8f2b-dd5b9a43ab5a))
(fp_line (start 7.54 1.25) (end 7.54 -3.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0b798253-e5d3-4631-ba34-4de21824af32))
(pad "1" thru_hole rect (at 0 0 90) (size 1.905 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 18 "/sol3") (pinfunction "G") (pintype "input") (tstamp f93fe963-5326-4097-8c08-3b00e22f8091))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.905 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 8 "Net-(D4-K)") (pinfunction "D") (pintype "passive") (tstamp 4a99e90b-58c1-4c1d-88d1-7809272470da))
(pad "3" thru_hole oval (at 5.08 0 90) (size 1.905 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "S") (pintype "passive") (tstamp 8172bc68-49eb-4c42-b95c-e6adbbac0dfe))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-220-3_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_THT:TO-220-3_Vertical" (layer "F.Cu")
(tstamp 0a88e92e-8f16-42e0-a0b6-4ee922cb2755)
(at 144 60)
(descr "TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf")
(tags "TO-220-3 Vertical RM 2.54mm")
(property "Sheetfile" "rcs_circuit_diagram.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "62A Id, 30V Vds, 8.7 mOhm Rds, N-Channel HEXFET Power MOSFET, TO-220")
(property "ki_keywords" "N-Channel HEXFET MOSFET Logic-Level")
(path "/05a118ef-1f06-40dd-aead-e2c7f1478e60")
(attr through_hole)
(fp_text reference "MOSFET4" (at 2.54 -4.27) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b76b87c9-b83a-4ad4-bffb-4a5e45abdd40)
)
(fp_text value "IRLB8721" (at 2.54 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d0c4442-1c39-4721-a524-97e0c0da885f)
)
(fp_text user "${REFERENCE}" (at 2.54 -4.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e73f77ea-3328-47e7-9a1f-eca76308f23e)
)
(fp_line (start -2.58 -3.27) (end -2.58 1.371)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f7d91f07-34c2-47a0-911c-31280343fe0e))
(fp_line (start -2.58 -3.27) (end 7.66 -3.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e021806-a09a-4126-b410-2d7641134945))
(fp_line (start -2.58 -1.76) (end 7.66 -1.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0ffba3fc-3501-4751-b888-aad9530cc916))
(fp_line (start -2.58 1.371) (end 7.66 1.371)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0ff653f2-4f8e-423b-8a69-30d3d0a9dc84))
(fp_line (start 0.69 -3.27) (end 0.69 -1.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 91357a26-09e0-4793-9baa-ae3df202c2b4))
(fp_line (start 4.391 -3.27) (end 4.391 -1.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aae58950-6dc3-40ba-b4df-a1609c4f52c8))
(fp_line (start 7.66 -3.27) (end 7.66 1.371)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c1f12f64-4e96-47aa-80fb-178ea4ed0e8a))
(fp_line (start -2.71 -3.4) (end -2.71 1.51)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e42f870c-6678-4310-afc0-ed304a668167))
(fp_line (start -2.71 1.51) (end 7.79 1.51)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 19f2ddd1-9f81-4c7d-b1df-7aeed0ea5f45))
(fp_line (start 7.79 -3.4) (end -2.71 -3.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a0ad6cc2-9ee9-486e-916f-513413662bc7))
(fp_line (start 7.79 1.51) (end 7.79 -3.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ad3d40aa-07b5-42a1-9740-ec5d8fca5460))
(fp_line (start -2.46 -3.15) (end -2.46 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 10743c90-d49a-4001-9667-ccfdd60eccac))
(fp_line (start -2.46 -1.88) (end 7.54 -1.88)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9127fef2-e12e-4c0d-8cce-8e53f61b04b6))
(fp_line (start -2.46 1.25) (end 7.54 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eaae7c04-091e-40e2-9bb3-5dfe13088589))
(fp_line (start 0.69 -3.15) (end 0.69 -1.88)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 000cf284-9cbb-440c-b6bd-a0c1129a79ec))
(fp_line (start 4.39 -3.15) (end 4.39 -1.88)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 34de375a-de00-4e44-8f70-bebaa9ee70fa))
(fp_line (start 7.54 -3.15) (end -2.46 -3.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f85706c6-7fa5-43ea-9467-5c5d0ebe86cb))
(fp_line (start 7.54 1.25) (end 7.54 -3.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6728a2ed-c900-4f44-8c92-c650405b0c4e))
(pad "1" thru_hole rect (at 0 0) (size 1.905 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 17 "/sol2") (pinfunction "G") (pintype "input") (tstamp b7450c3b-e466-4aab-88c6-aa38631e7858))
(pad "2" thru_hole oval (at 2.54 0) (size 1.905 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "Net-(D3-K)") (pinfunction "D") (pintype "passive") (tstamp dd8d1a68-57fb-4fe1-aa15-43f2a80a6cd0))
(pad "3" thru_hole oval (at 5.08 0) (size 1.905 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "S") (pintype "passive") (tstamp 6e53df8d-33e2-49d1-8d3d-e2714eae6ea1))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-220-3_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_THT:TO-220-3_Vertical" (layer "F.Cu")
(tstamp 0f91227c-aed0-45b9-adb2-fef4d7558bd8)
(at 160.08 64 180)
(descr "TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf")
(tags "TO-220-3 Vertical RM 2.54mm")
(property "Sheetfile" "rcs_circuit_diagram.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "62A Id, 30V Vds, 8.7 mOhm Rds, N-Channel HEXFET Power MOSFET, TO-220")
(property "ki_keywords" "N-Channel HEXFET MOSFET Logic-Level")
(path "/f0f1347a-72b7-45f8-8db4-5f2e02a52060")
(attr through_hole)
(fp_text reference "MOSFET17" (at 2.54 -4.27) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c7c9ed6-13c5-427f-a881-e94f4f5f2817)
)
(fp_text value "IRLB8721" (at 2.54 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 96f498de-17bb-4e44-b11a-d8815c928c40)
)
(fp_text user "${REFERENCE}" (at 2.54 -4.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c625b52-e992-4409-8cb3-ae8d6f48a2b7)
)
(fp_line (start -2.58 -3.27) (end -2.58 1.371)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b1d338e4-a1cb-4397-b7bb-67750033c30a))
(fp_line (start -2.58 -3.27) (end 7.66 -3.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 89655eda-1b56-4d72-973a-700a4be83c04))
(fp_line (start -2.58 -1.76) (end 7.66 -1.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5dc4835b-f0a2-4704-8407-e9fd28e039b3))
(fp_line (start -2.58 1.371) (end 7.66 1.371)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d67fffda-b6fa-4b3b-9058-2dd54e39f7d2))
(fp_line (start 0.69 -3.27) (end 0.69 -1.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 45083596-f84a-44f2-afaf-29aeb636d365))
(fp_line (start 4.391 -3.27) (end 4.391 -1.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eede52df-78ae-40e2-b8e2-6cafb1440157))
(fp_line (start 7.66 -3.27) (end 7.66 1.371)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b968a2ab-b949-4016-a19f-96828b7a6eac))
(fp_line (start -2.71 -3.4) (end -2.71 1.51)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 487972e4-69cf-430f-a6f5-9ddc2ef6cab6))
(fp_line (start -2.71 1.51) (end 7.79 1.51)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 974553cd-54e4-42e3-b794-aa3e5f9733d3))
(fp_line (start 7.79 -3.4) (end -2.71 -3.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 96b2a790-8a50-4cce-b8a6-9fefe07e6cf4))
(fp_line (start 7.79 1.51) (end 7.79 -3.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 17fa0181-32b2-4d65-b17e-f535be874436))
(fp_line (start -2.46 -3.15) (end -2.46 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 27028976-45ab-4a16-b3ae-af493102e632))
(fp_line (start -2.46 -1.88) (end 7.54 -1.88)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d3403ed-9aa8-43d4-b9dc-fe640aa011e4))
(fp_line (start -2.46 1.25) (end 7.54 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 594ac423-5d45-44af-8708-b4abd2165868))
(fp_line (start 0.69 -3.15) (end 0.69 -1.88)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 140db76b-4cfc-413f-a237-dcf0229467c5))
(fp_line (start 4.39 -3.15) (end 4.39 -1.88)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 406c3b7c-a11f-4962-998c-c9a6ff44ff85))
(fp_line (start 7.54 -3.15) (end -2.46 -3.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a0f3c0b4-8bc5-4752-a782-8e11841983e3))
(fp_line (start 7.54 1.25) (end 7.54 -3.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 61a856d8-6a40-41bb-90a1-44ebb63b3190))
(pad "1" thru_hole rect (at 0 0 180) (size 1.905 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 19 "/sol4") (pinfunction "G") (pintype "input") (tstamp ac8a7039-d569-44d2-9293-25a67603f018))
(pad "2" thru_hole oval (at 2.54 0 180) (size 1.905 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 14 "Net-(D7-K)") (pinfunction "D") (pintype "passive") (tstamp c23c0405-c02a-4665-8de1-7956870723c2))
(pad "3" thru_hole oval (at 5.08 0 180) (size 1.905 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "S") (pintype "passive") (tstamp 95e70717-9021-4fd1-b530-190ec1ec655f))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-220-3_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:TO-263-5_TabPin3" (layer "F.Cu")
(tstamp 102c29d8-7451-4f51-985c-e43235ac02f7)
(at 130.5 81)
(descr "TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/")
(tags "D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426")
(property "Sheetfile" "rcs_circuit_diagram.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "5V 3A Step-Down Voltage Regulator, TO-263")
(property "ki_keywords" "Step-Down Voltage Regulator 5V 3A")
(path "/3af77d0b-16ef-4c92-b30c-b2f4bf0db671")
(attr smd)
(fp_text reference "U1" (at 0 -6.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 28d3b622-531d-4894-ba19-b55de3d120d0)
)
(fp_text value "LM2596S-5" (at 0 6.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0dbf0851-c6da-4d20-a365-4df236de0b3c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 57729f9d-c83b-435c-a968-e5c59e7dd890)
)
(fp_line (start -4.825 -5.2) (end -4.825 -4.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 218ad387-3445-4f27-97b4-f88f8023a054))
(fp_line (start -4.825 -4.25) (end -9.95 -4.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d851dff7-d3a2-4542-8f8a-870d3cc1f675))
(fp_line (start -4.825 4.25) (end -5.925 4.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6aa67200-d1df-4f56-a1ba-6e651be99cc9))
(fp_line (start -4.825 5.2) (end -4.825 4.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1de641fc-4e99-4393-83db-458402110b33))
(fp_line (start -3.325 -5.2) (end -4.825 -5.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 564ecdc4-4feb-4be3-8e69-e84d8982ff26))
(fp_line (start -3.325 5.2) (end -4.825 5.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6a5ad551-523e-48ac-8460-9e0a8a88e59e))
(fp_line (start -10.2 -5.65) (end -10.2 5.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 28b73663-8100-4ee8-bc2d-b69677770be7))
(fp_line (start -10.2 5.65) (end 6.45 5.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1bbab8c9-ea8d-42e4-9fcf-f9a6599b2043))
(fp_line (start 6.45 -5.65) (end -10.2 -5.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 37470bc7-62a5-4583-911c-6b032084f96f))
(fp_line (start 6.45 5.65) (end 6.45 -5.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 759871a2-fb9a-45df-bb37-cf9e83be461a))
(fp_line (start -9.325 -3.8) (end -9.325 -3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f1e295a8-3222-4cf2-806c-fe61d55c594c))
(fp_line (start -9.325 -3) (end -4.625 -3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8634d714-0bc8-44c1-b053-b3bec900fb0f))
(fp_line (start -9.325 -2.1) (end -9.325 -1.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8c537dfb-10db-4390-a9e9-258c4a52f9db))
(fp_line (start -9.325 -1.3) (end -4.625 -1.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d1a934e6-7da9-4477-925f-0ab127742ac4))
(fp_line (start -9.325 -0.4) (end -9.325 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 673f2962-5b96-48fa-886a-f2f7077b7ee4))
(fp_line (start -9.325 0.4) (end -4.625 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1ef8224b-9526-47f9-9991-bb92eb4212bf))
(fp_line (start -9.325 1.3) (end -9.325 2.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 75fd77a4-5e8f-4dbf-963e-55cd73f5eee1))
(fp_line (start -9.325 2.1) (end -4.625 2.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d55427f-7088-46cd-b0e3-b79c82388e46))
(fp_line (start -9.325 3) (end -9.325 3.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 50dd29b1-0940-40ed-91ed-6965effb0695))
(fp_line (start -9.325 3.8) (end -4.625 3.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4cac7465-1970-42de-bd02-bdc0f07d86b8))
(fp_line (start -4.625 -4) (end -3.625 -5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp daf8b811-54b5-43ae-8c18-486dbd9026b9))
(fp_line (start -4.625 -3.8) (end -9.325 -3.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aade35b7-9ef6-4a97-85f5-7f4447c4bd8e))
(fp_line (start -4.625 -2.1) (end -9.325 -2.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 007d9334-a2fa-4ede-b128-c490b9fa5c5b))
(fp_line (start -4.625 -0.4) (end -9.325 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 708466c1-c3a3-424e-bac2-2b7f8431ec4a))
(fp_line (start -4.625 1.3) (end -9.325 1.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4085fedd-42b0-4807-bd65-06192f470512))
(fp_line (start -4.625 3) (end -9.325 3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c6a54b0d-4549-496e-9db2-fc95a370674a))
(fp_line (start -4.625 5) (end -4.625 -4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2da6b75b-8610-4209-97f1-675a437248fa))
(fp_line (start -3.625 -5) (end 4.625 -5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fcf58f4b-38b3-4102-82c8-d30a80b833de))
(fp_line (start 4.625 -5) (end 4.625 5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dbb80ddd-c1c7-473c-a904-74bfc658444c))
(fp_line (start 4.625 -5) (end 5.625 -5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 013830dc-dd65-440c-b417-e2fc556a21db))
(fp_line (start 4.625 5) (end -4.625 5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f7351840-09dc-483a-889e-bbd26c3548fc))
(fp_line (start 5.625 -5) (end 5.625 5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp becca683-2e78-45b2-83f7-6a7b6480fecc))
(fp_line (start 5.625 5) (end 4.625 5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f12c2413-5c04-4bd9-a180-18c3f3969c46))
(pad "1" smd roundrect (at -7.65 -3.4) (size 4.6 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.227273)
(net 1 "VCC") (pinfunction "VIN") (pintype "power_in") (tstamp e50602a2-760d-406f-afa6-911ba285966d))
(pad "2" smd roundrect (at -7.65 -1.7) (size 4.6 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.227273)
(net 5 "Net-(D2-K)") (pinfunction "OUT") (pintype "output") (tstamp 9acae4cb-a068-4453-9f40-2eb8a49e4513))
(pad "3" smd roundrect (at -7.65 0) (size 4.6 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.227273)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 3bb9e54a-5cb3-434c-a769-dd53b62a72fc))
(pad "3" smd roundrect (at -0.925 -2.775) (size 4.55 5.25) (layers "F.Cu" "F.Paste") (roundrect_rratio 0.054945)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 7a2cfc46-897d-4c9d-b2f3-db43ee8454db))
(pad "3" smd roundrect (at -0.925 2.775) (size 4.55 5.25) (layers "F.Cu" "F.Paste") (roundrect_rratio 0.054945)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 2e792746-b32c-4619-b983-0a88d72f0d1c))
(pad "3" smd roundrect (at 1.5 0) (size 9.4 10.8) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.026596)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp fde2cf9e-573a-464f-9f92-770b63989db7))
(pad "3" smd roundrect (at 3.925 -2.775) (size 4.55 5.25) (layers "F.Cu" "F.Paste") (roundrect_rratio 0.054945)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 81d1f39f-4be0-4062-8a2c-4babc4d29a31))
(pad "3" smd roundrect (at 3.925 2.775) (size 4.55 5.25) (layers "F.Cu" "F.Paste") (roundrect_rratio 0.054945)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c40ab2dc-964e-4076-b8cf-3d7b70d918ea))
(pad "4" smd roundrect (at -7.65 1.7) (size 4.6 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.227273)
(net 1 "VCC") (pinfunction "FB") (pintype "input") (tstamp b783e5d9-cf92-4e0c-afa2-17614c670e26))
(pad "5" smd roundrect (at -7.65 3.4) (size 4.6 1.1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.227273)
(net 2 "GND") (pinfunction "~{ON}/OFF") (pintype "input") (tstamp ab734da7-ee30-4527-9f2d-f46bb21abaad))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/TO-263-5_TabPin3.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 11898905-622f-4342-9688-a5350b983816)
(at 128.48 73)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "rcs_circuit_diagram.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/ca5835bb-30ca-4ea4-b007-fcea35a3cb69")
(attr smd)
(fp_text reference "C2" (at 0 -1.16) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f564053f-be46-43b0-b6eb-cb3ce80eb38f)
)
(fp_text value "220 uF" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 53fecbed-77e3-4e7e-9f28-fd7ecc8230d5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 9f4a457d-49ab-474e-8c85-742cef3c4f1f)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 239a8d94-a9e2-4765-9ba6-6d5347e3d622))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f69f5101-13ad-49d3-8a2e-58b4707c5a72))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d9b3363a-c544-4935-90bc-1b4e26ae9ebb))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2a077180-1644-48e3-bd39-5f970189c704))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 21bbfb47-4baf-4356-9b3b-c18e9a3abe40))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6fa36859-7ef0-4da2-b7b5-a5ccc97cc61b))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d732bf27-2fbe-4cfe-878f-3102166e3415))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp abb46767-a3e5-44f7-9135-9688120e209f))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 86107470-0c2b-45d2-ab5e-da0f3373068a))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5d5acae2-250e-49e2-b445-2a8559529ada))
(pad "1" smd roundrect (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "VCC") (pintype "passive") (tstamp 4736eafc-bef4-4df2-8689-c24b4fb15014))
(pad "2" smd roundrect (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp a1c7118a-07c5-4906-80cf-4bbba9afe5fb))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tstamp 12369ba8-1f92-491e-9da3-6a9108c4ef62)
(at 139.2125 57)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "rcs_circuit_diagram.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/bb90b6d5-5802-460b-bbaf-7be0912990f7")
(attr smd)
(fp_text reference "D3" (at -0.03 -1.43) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c3df0252-1ce9-40a1-9fbe-4888a4ad5bdc)
)
(fp_text value "Red" (at 0.98 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 89a5a47c-ef82-487a-bd9d-a5ff686fd512)
)
(fp_text user "${REFERENCE}" (at -0.03 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 8fbbfcd7-18df-4737-90f3-d66995c69fe9)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4a1c5746-dbdc-4c81-94ff-5721f5c2f8c5))
(fp_line (start -1.485 0.735) (end 0.8 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 54e861b9-6e3c-4df0-87d0-e8c436e47a77))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d4529280-bf9f-4771-82be-11bef0f0372d))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2733c252-538e-45c4-b9c3-9653e93e5c90))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 036510e1-a953-4683-9a77-2594d9144928))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fbbb6d13-a5ca-40e5-ae48-c48601ac2849))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 897a1f1c-e1f8-48bc-abd7-830255cff39b))
(fp_line (start -0.8 -0.1) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c5f6bd19-9f38-4fc8-8577-c88b14c4fdb5))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5491fddc-7638-4860-b26b-c48afbc47fcd))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5800b6cf-3fca-41e3-820d-4d6bf707e891))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 52270329-64b3-46da-9a25-3b0bc9aa311b))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4d56ca90-615c-4bec-a5ca-c76eab782e2b))
(pad "1" smd roundrect (at -0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(D3-K)") (pinfunction "K") (pintype "passive") (tstamp 4fba2364-4ea9-4663-99e3-5d185893b151))
(pad "2" smd roundrect (at 0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(D3-A)") (pinfunction "A") (pintype "passive") (tstamp 1279d22c-8552-4c4a-a451-3e9f7e033daf))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_THT:TO-220-3_Vertical" (layer "F.Cu")
(tstamp 1b1302bc-3b43-46fd-ac80-17fb85cbd407)
(at 101 74 90)
(descr "TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf")
(tags "TO-220-3 Vertical RM 2.54mm")
(property "Sheetfile" "rcs_circuit_diagram.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "62A Id, 30V Vds, 8.7 mOhm Rds, N-Channel HEXFET Power MOSFET, TO-220")
(property "ki_keywords" "N-Channel HEXFET MOSFET Logic-Level")
(path "/7a7e00d9-d474-4682-be70-93cbc32ed9aa")
(attr through_hole)
(fp_text reference "MOSFET7" (at 2.54 -4.27 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 842f268a-12e9-4df4-9424-b56cc634fb21)
)
(fp_text value "IRLB8721" (at 2.54 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5462babf-ce9c-4c37-9ed7-452a2ebe3f0d)
)
(fp_text user "${REFERENCE}" (at 2.54 -4.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3bd6bc43-a1db-4800-801b-2832279423fd)
)
(fp_line (start -2.58 -3.27) (end -2.58 1.371)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b3e2b57d-49fc-4034-bb2c-1baeb963f7b3))
(fp_line (start -2.58 -3.27) (end 7.66 -3.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ebe4d241-dcf8-4992-b4ad-fd8dd0650457))
(fp_line (start -2.58 -1.76) (end 7.66 -1.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e1220abe-e508-4eca-9b6b-3957740e3236))
(fp_line (start -2.58 1.371) (end 7.66 1.371)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ac8112c3-a9ac-4164-ba18-25644495544b))
(fp_line (start 0.69 -3.27) (end 0.69 -1.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae7590c1-1610-4aa0-ba20-941164980a3d))
(fp_line (start 4.391 -3.27) (end 4.391 -1.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d667ab7-c172-4357-a3a0-14a22c995623))
(fp_line (start 7.66 -3.27) (end 7.66 1.371)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 86c4de24-9305-4cd4-8ecd-9e5af8fe84cd))
(fp_line (start -2.71 -3.4) (end -2.71 1.51)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a2ba1d22-cb5a-4c42-95f5-f315084f7953))
(fp_line (start -2.71 1.51) (end 7.79 1.51)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8e0df1f0-3a26-4bf8-ae25-0242a4f06d51))
(fp_line (start 7.79 -3.4) (end -2.71 -3.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 20c478f0-da3d-4784-bae8-fab3d3226d6b))
(fp_line (start 7.79 1.51) (end 7.79 -3.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1cbe85a1-961f-4b05-a1fb-19853916628d))
(fp_line (start -2.46 -3.15) (end -2.46 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 76939fb6-06a3-46a9-9f44-e5bc16989218))
(fp_line (start -2.46 -1.88) (end 7.54 -1.88)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb86aa8e-5958-4df5-ae97-207b9cff7947))
(fp_line (start -2.46 1.25) (end 7.54 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ddb4bd4b-35bb-4228-9857-0adb2c44d9d9))
(fp_line (start 0.69 -3.15) (end 0.69 -1.88)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f2f8b5d-d1ce-460a-9ea4-a302e54c953f))
(fp_line (start 4.39 -3.15) (end 4.39 -1.88)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ba19c088-d6fb-45c2-9aba-b74bbb7b69fa))
(fp_line (start 7.54 -3.15) (end -2.46 -3.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 08a8b729-d8f1-42e2-95e6-2631ae327d95))
(fp_line (start 7.54 1.25) (end 7.54 -3.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e28bb2b3-9967-4efd-b982-bc8f864c0978))
(pad "1" thru_hole rect (at 0 0 90) (size 1.905 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 18 "/sol3") (pinfunction "G") (pintype "input") (tstamp 3528dfb7-f235-409e-8d38-dd7e2a8faa29))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.905 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 8 "Net-(D4-K)") (pinfunction "D") (pintype "passive") (tstamp 745c6b9f-d92b-4358-be23-69e18c789221))
(pad "3" thru_hole oval (at 5.08 0 90) (size 1.905 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "S") (pintype "passive") (tstamp 7f80e27b-7b40-4404-a755-f13056887491))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-220-3_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 2175080c-89f0-4801-bee7-e62a516577b6)
(at 135 58)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "rcs_circuit_diagram.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated")
(property "ki_keywords" "connector")
(path "/ff53f3a1-b4e4-455f-844a-856d228d28ad")
(attr through_hole)
(fp_text reference "J3" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3942a28f-ed70-407b-bed1-5701f8a0542e)
)
(fp_text value "Conn_01x02_Pin" (at 0 4.87) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d0127645-7d70-4067-b4f3-d2f650778334)
)
(fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5ee33911-bdba-44ac-94c6-f05190dee254)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f1deb98f-4ed8-443d-83df-dce397df9650))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 914fd166-fa73-4d09-be96-c94aa59c27c6))
(fp_line (start -1.33 1.27) (end -1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1868ef6c-9a44-4619-948d-c27bc42a1915))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3066422a-d323-4fa6-b5d5-86cd99579e74))
(fp_line (start -1.33 3.87) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f668fa6b-0ac9-4eca-b238-65f940a88daa))
(fp_line (start 1.33 1.27) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 92da9701-fd4c-41b8-80c7-fca4e2180985))
(fp_line (start -1.8 -1.8) (end -1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4aafa7b4-9c89-4b58-bcbc-9793d0c7fa6a))
(fp_line (start -1.8 4.35) (end 1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 620dd17e-3474-4ae3-881b-e0928e8bf508))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a66600c7-085e-49b3-8b9a-605b17b755d7))
(fp_line (start 1.8 4.35) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0a3241ff-64d4-48fa-8214-1e2a61617d05))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b13dd9de-86e2-4164-8d86-ef369b5700b8))
(fp_line (start -1.27 3.81) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf59a071-27aa-4c19-92a9-a875a8f3a31a))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 91a26f90-f53f-42f0-b6c0-47e7034e812a))
(fp_line (start 1.27 -1.27) (end 1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 23e49f95-f3db-4a7b-898e-95a7c743556d))
(fp_line (start 1.27 3.81) (end -1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f4d47b6b-7211-4e0e-a316-7dade587b12c))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "Net-(D1-K)") (pinfunction "Pin_1") (pintype "passive") (tstamp f4feefa1-3c50-4138-a3a5-959e4ef645c5))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "VCC") (pinfunction "Pin_2") (pintype "passive") (tstamp 14478c04-ca3c-4c9e-bdaa-e9cbf04528cc))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 25ce6bce-15a7-48ce-a534-0fe20c4164e7)
(at 131.46 89 90)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "rcs_circuit_diagram.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated")
(property "ki_keywords" "connector")
(path "/7a005299-6073-4b66-b5e5-79dde03a7785")
(attr through_hole)
(fp_text reference "J15" (at 0 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8fef0046-860b-451b-a9bb-c80e41b9ff55)
)
(fp_text value "Conn_01x02_Pin" (at 1 5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9b2003f2-357c-4ba3-a26a-dee14c54fc2c)
)
(fp_text user "${REFERENCE}" (at 0 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c453a8b2-b8c7-4577-84fe-7e4a8ea8dbb8)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ed4f781-daf7-41f8-8e29-d542cbe3ace9))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61421dd2-f4b7-487e-8522-22e27583347c))
(fp_line (start -1.33 1.27) (end -1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 29d10be8-9d13-43a6-b953-358d842e4024))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 730e66b4-b403-4815-a4ee-a0274a9f7c25))
(fp_line (start -1.33 3.87) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cb9e25c0-8372-456a-a789-5fcd04ecd5b4))
(fp_line (start 1.33 1.27) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 379f421e-4c78-4782-8cec-e7a1458c9446))
(fp_line (start -1.8 -1.8) (end -1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2858f61a-8c67-4468-824c-a08538638b7f))
(fp_line (start -1.8 4.35) (end 1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 16087788-1325-40e8-aae2-48417cbc317a))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1e454fde-eb4a-445a-8a2b-9e57a3c709ea))
(fp_line (start 1.8 4.35) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5ed6a66e-7696-4609-89d5-afac5e7f6d07))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e9b31354-10f2-4f24-b931-2feebe302695))
(fp_line (start -1.27 3.81) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 66252c77-034a-4df9-bea3-04974fe1a2fd))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fedaf846-32a9-4039-8f53-731c2cb58611))
(fp_line (start 1.27 -1.27) (end 1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 89926bcb-0777-4a08-99f8-f30671e052df))
(fp_line (start 1.27 3.81) (end -1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 311caddb-1856-452d-93de-526a0ff6d437))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "Net-(D7-K)") (pinfunction "Pin_1") (pintype "passive") (tstamp 62cc87a1-3087-4301-a49c-d9223c66e1ec))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "VCC") (pinfunction "Pin_2") (pintype "passive") (tstamp 46b45335-98f7-4bcc-b38e-18b211de9358))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 2a9e9154-3021-4e4c-8c01-8ea899a61a49)
(at 99 105 90)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "rcs_circuit_diagram.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated")
(property "ki_keywords" "connector")
(path "/ef341602-fe08-448f-bd3a-e4d4687249bf")
(attr through_hole)
(fp_text reference "J9" (at 0 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4832fd06-bec1-4b62-9d3f-92dac4b6a5a6)
)
(fp_text value "Conn_01x02_Pin" (at 0 4.87 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e44720f-8b4c-4883-af22-b86289bcd779)
)
(fp_text user "${REFERENCE}" (at 0 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e7ee82ba-4e84-45bf-a2ea-d768ed4c6c05)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e58c27e4-d6df-492f-9261-6f5cea3ed468))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 037b47f1-3c75-451d-b7f5-85661435345e))
(fp_line (start -1.33 1.27) (end -1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ba0984a8-6ff5-4f9e-8254-1dec2124465d))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a59e90ca-0a45-4ca3-a76d-54d3a7e391c9))
(fp_line (start -1.33 3.87) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 646a0ba5-04c8-4186-95b6-9ac5bae5c0f5))
(fp_line (start 1.33 1.27) (end 1.33 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 44294aa0-0f6b-4bd0-bfcd-ab637705c5f2))
(fp_line (start -1.8 -1.8) (end -1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d97ec0d3-d9c1-4c04-ac5e-401a13657434))
(fp_line (start -1.8 4.35) (end 1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c2d75808-55fb-47b5-a519-38eadb2a2aee))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0576f2e2-4d36-40d2-b4a7-141b3ca0bd69))
(fp_line (start 1.8 4.35) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0270b0c2-9260-4724-b148-dcbe0f3cd3e5))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 85b60ab4-7382-445b-8d3d-5a0e13a614f6))
(fp_line (start -1.27 3.81) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d0516b4b-fc32-4cb9-8f9e-facb604f2a69))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 311c82f3-b7ca-49b5-8018-384507f5a5c5))
(fp_line (start 1.27 -1.27) (end 1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2cb147a7-e7ee-468a-a681-c28fe0809358))
(fp_line (start 1.27 3.81) (end -1.27 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp be8ada56-e354-4002-90d9-e9184c1196d8))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "Net-(D4-K)") (pinfunction "Pin_1") (pintype "passive") (tstamp a61d5b25-7a60-4d66-a4c2-a36b3c0eb96f))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "VCC") (pinfunction "Pin_2") (pintype "passive") (tstamp 403ab1e9-551d-42ea-a7a4-f54dbd1a59c1))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 2d181568-ba98-4d54-a090-57e5a9614922)
(at 139.49 59)
(descr "Resistor SMD 0402 (1005 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" "rcs_circuit_diagram.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, US symbol")
(property "ki_keywords" "R res resistor")
(path "/8f547abc-5d48-46b0-8073-3f6cb4a2447a")
(attr smd)
(fp_text reference "R2" (at 0 -1.17) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a595da48-cefe-414c-99f4-696a555900e7)
)
(fp_text value "4.7k" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2afe8823-0d04-4a8b-a116-cc73f17e8612)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp e7730b94-b666-4b07-abd5-4566deb71fa6)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2dda16b9-9931-4b2c-8f71-3859b6375951))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9699d70b-ae0d-4785-82ee-a7a793e01e4e))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ad1571bd-0d50-4df7-b82e-98eb5aba8269))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4ab5bc1f-3265-42aa-b756-004dbe21e7ca))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 00190483-03ce-4bb6-bad7-13dcdf5b062c))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f650e79f-1057-435c-b178-984f1264d513))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e3d92576-ef4d-4afa-9d8b-7a3ee451b3a8))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 27d741dc-f2be-4dcc-a43c-177785d1f7bc))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb85b22c-cff9-40e7-9eca-865c1edcf2b7))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e5b61a08-87ce-42fd-9dab-5ca873015872))
(pad "1" smd roundrect (at -0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "VCC") (pintype "passive") (tstamp e8351eaf-164b-4eac-833c-4a5e13f7ec3d))
(pad "2" smd roundrect (at 0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(D3-A)") (pintype "passive") (tstamp 5a112387-ca11-4145-8e6e-beac865727c1))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)