-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path2channel_mini_speedy.net
1130 lines (1130 loc) · 42.2 KB
/
2channel_mini_speedy.net
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
(export (version D)
(design
(source /home/daniel/Desktop/2channel_mini_speedy/2channel_mini_speedy/2channel_mini_speedy.sch)
(date "Tue 02 Nov 2021 12:32:04 PM CET")
(tool "Eeschema 5.1.9+dfsg1-1~bpo10+1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source 2channel_mini_speedy.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref D1)
(value LED)
(footprint LED_THT:LED_D3.0mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 60F5D1A2))
(comp (ref D3)
(value 1N4004)
(footprint Diode_THT:D_DO-41_SOD81_P2.54mm_Vertical_AnodeUp)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 60F5D38D))
(comp (ref R8)
(value 100K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F5F11F))
(comp (ref R2)
(value 680R)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F5F4CA))
(comp (ref R7)
(value 1K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F5F73C))
(comp (ref D2)
(value LED)
(footprint LED_THT:LED_D3.0mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 60F6E648))
(comp (ref D4)
(value 1N4004)
(footprint Diode_THT:D_DO-41_SOD81_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 60F6E64E))
(comp (ref R10)
(value 100K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F6E654))
(comp (ref R3)
(value 680R)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F6E65A))
(comp (ref R9)
(value 1K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F6E660))
(comp (ref U1)
(value TC4424EPA)
(footprint Package_DIP:DIP-8_W7.62mm)
(datasheet http://www.intersil.com/content/dam/Intersil/documents/el72/el7202-12-22.pdf)
(libsource (lib Driver_FET) (part EL7202CN) (description "High Speed, Dual Channel Power MOSFET Driver, DIP-8/SOIC-8"))
(sheetpath (names /) (tstamps /))
(tstamp 60F79DC9))
(comp (ref R12)
(value 1K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F7B20D))
(comp (ref R11)
(value 1K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F7B434))
(comp (ref R13)
(value 100K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F7B7D0))
(comp (ref R14)
(value 100K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F7BB53))
(comp (ref R16)
(value 2.4K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F7BEDF))
(comp (ref R15)
(value 2.4K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F7C1F7))
(comp (ref R17)
(value "160R 2W")
(footprint Resistor_THT:R_Axial_DIN0614_L14.3mm_D5.7mm_P15.24mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F7C71D))
(comp (ref R18)
(value "160R 2W")
(footprint Resistor_THT:R_Axial_DIN0614_L14.3mm_D5.7mm_P15.24mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F7C9E8))
(comp (ref C3)
(value 1uF)
(footprint Capacitor_THT:C_Disc_D4.3mm_W1.9mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 60F7D024))
(comp (ref D6)
(value LED)
(footprint LED_THT:LED_D3.0mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 60F7D9FF))
(comp (ref D5)
(value LED)
(footprint LED_THT:LED_D3.0mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 60F7DDF6))
(comp (ref J10)
(value "IGN Voltage sel")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 60FA1C90))
(comp (ref C4)
(value "10uF 35V")
(footprint Capacitor_THT:CP_Radial_Tantal_D5.0mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 60FB96FD))
(comp (ref C10)
(value "47uF 10V")
(footprint Capacitor_THT:CP_Radial_Tantal_D5.0mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 60FB9A85))
(comp (ref C5)
(value "0.1uF 50V")
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 60FBC42B))
(comp (ref C9)
(value "0.1uF 50V")
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 60FBC9D5))
(comp (ref U2)
(value LM2940T)
(footprint Package_TO_SOT_THT:TO-220-3_Vertical)
(datasheet http://www.st.com/content/ccc/resource/technical/document/datasheet/41/4f/b3/b0/12/d4/47/88/CD00000444.pdf/files/CD00000444.pdf/jcr:content/translations/en.CD00000444.pdf)
(libsource (lib Regulator_Linear) (part L7805) (description "Positive 1.5A 35V Linear Regulator, Fixed Output 5V, TO-220/TO-263/TO-252"))
(sheetpath (names /) (tstamps /))
(tstamp 60FBD8C2))
(comp (ref D7)
(value 1N5818)
(footprint Diode_THT:D_DO-41_SOD81_P3.81mm_Vertical_AnodeUp)
(datasheet http://www.vishay.com/docs/88525/1n5817.pdf)
(libsource (lib Diode) (part 1N5818) (description "30V 1A Schottky Barrier Rectifier Diode, DO-41"))
(sheetpath (names /) (tstamps /))
(tstamp 60FC4102))
(comp (ref D8)
(value 1N5919BG)
(footprint Diode_THT:D_A-405_P2.54mm_Vertical_KathodeUp)
(datasheet ~)
(libsource (lib Device) (part D_Zener) (description "Zener diode"))
(sheetpath (names /) (tstamps /))
(tstamp 60FD006B))
(comp (ref R23)
(value 2.49K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60FED221))
(comp (ref R24)
(value 470R)
(footprint Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60FED6CE))
(comp (ref C16)
(value 0.22uF)
(footprint Capacitor_THT:C_Disc_D4.3mm_W1.9mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 60FEDCA8))
(comp (ref C13)
(value 0.1uF)
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 60FEE06D))
(comp (ref R19)
(value 3.9K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 6100733C))
(comp (ref R21)
(value 470R)
(footprint Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 61007342))
(comp (ref C11)
(value 0.22uF)
(footprint Capacitor_THT:C_Disc_D4.3mm_W1.9mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61007348))
(comp (ref C8)
(value 0.1uF)
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6100734E))
(comp (ref R26)
(value 2.49K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 6100B429))
(comp (ref R27)
(value 470R)
(footprint Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 6100B42F))
(comp (ref C18)
(value 0.22uF)
(footprint Capacitor_THT:C_Disc_D4.3mm_W1.9mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6100B435))
(comp (ref C15)
(value 0.1uF)
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6100B43B))
(comp (ref R20)
(value 1K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 61017D03))
(comp (ref R25)
(value 470R)
(footprint Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 61036013))
(comp (ref C17)
(value 0.22uF)
(footprint Capacitor_THT:C_Disc_D4.3mm_W1.9mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61036019))
(comp (ref C14)
(value 0.1uF)
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6103601F))
(comp (ref R22)
(value 470R)
(footprint Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 61039925))
(comp (ref C12)
(value 0.22uF)
(footprint Capacitor_THT:C_Disc_D4.3mm_W1.9mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6103992B))
(comp (ref C7)
(value 0.1uF)
(footprint Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61039931))
(comp (ref C6)
(value 0.3uF)
(footprint Capacitor_THT:C_Disc_D4.3mm_W1.9mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61050163))
(comp (ref J5)
(value "Signal conditioner")
(footprint Package_DIP:DIP-8_W7.62mm)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x04_Counter_Clockwise) (description "Generic connector, double row, 02x04, counter clockwise pin numbering scheme (similar to DIP packge numbering), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 610600FD))
(comp (ref R5)
(value 1K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 610614A7))
(comp (ref R1)
(value 1K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 610617CE))
(comp (ref R4)
(value 1K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F745B7))
(comp (ref R6)
(value 1K)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F74A79))
(comp (ref C1)
(value 0.22uF)
(footprint Capacitor_THT:C_Disc_D4.3mm_W1.9mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 60F76C14))
(comp (ref C2)
(value 0.01uF)
(footprint Capacitor_THT:C_Disc_D4.3mm_W1.9mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 60F77014))
(comp (ref J1)
(value "TACH 2 pullup")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 60FA7F1E))
(comp (ref J2)
(value "TACH 1 pullup")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 60FA88D4))
(comp (ref J11)
(value "Molex MicroFit 3.0 43045-2400/Amphenol ICC 10127720-242LF")
(footprint Connector_Molex:Molex_Micro-Fit_3.0_43045-2400_2x12_P3.00mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x12_Counter_Clockwise) (description "Generic connector, double row, 02x12, counter clockwise pin numbering scheme (similar to DIP packge numbering), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 6124B479))
(comp (ref U3)
(value Mega2560-PRO)
(footprint Module:Mega2560-PRO-Stripped)
(libsource (lib Mega) (part Mega2560-PRO) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 617D5B95))
(comp (ref Q1)
(value STP75N04-TO220)
(footprint Package_TO_SOT_THT:TO-220-3_Vertical)
(datasheet ~)
(libsource (lib Device) (part STP75N04-TO220) (description "N-MOSFET transistor, drain/gate/source"))
(sheetpath (names /) (tstamps /))
(tstamp 6185D8EA))
(comp (ref Q2)
(value STP75N04-TO220)
(footprint Package_TO_SOT_THT:TO-220-3_Vertical)
(datasheet ~)
(libsource (lib Device) (part STP75N04-TO220) (description "N-MOSFET transistor, drain/gate/source"))
(sheetpath (names /) (tstamps /))
(tstamp 6185E7A5)))
(libparts
(libpart (lib Connector) (part Conn_01x02_Male)
(description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x02_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))))
(libpart (lib Connector_Generic) (part Conn_01x03)
(description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x03))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))))
(libpart (lib Connector_Generic) (part Conn_02x04_Counter_Clockwise)
(description "Generic connector, double row, 02x04, counter clockwise pin numbering scheme (similar to DIP packge numbering), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x04_Counter_Clockwise))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))))
(libpart (lib Connector_Generic) (part Conn_02x12_Counter_Clockwise)
(description "Generic connector, double row, 02x12, counter clockwise pin numbering scheme (similar to DIP packge numbering), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x12_Counter_Clockwise))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))
(pin (num 14) (name Pin_14) (type passive))
(pin (num 15) (name Pin_15) (type passive))
(pin (num 16) (name Pin_16) (type passive))
(pin (num 17) (name Pin_17) (type passive))
(pin (num 18) (name Pin_18) (type passive))
(pin (num 19) (name Pin_19) (type passive))
(pin (num 20) (name Pin_20) (type passive))
(pin (num 21) (name Pin_21) (type passive))
(pin (num 22) (name Pin_22) (type passive))
(pin (num 23) (name Pin_23) (type passive))
(pin (num 24) (name Pin_24) (type passive))))
(libpart (lib Device) (part C)
(description "Unpolarized capacitor")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part CP)
(description "Polarized capacitor")
(docs ~)
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part D)
(description Diode)
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part D_Zener)
(description "Zener diode")
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_Zener))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part LED)
(description "Light emitting diode")
(docs ~)
(footprints
(fp LED*)
(fp LED_SMD:*)
(fp LED_THT:*))
(fields
(field (name Reference) D)
(field (name Value) LED))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part R)
(description Resistor)
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part STP75N04-TO220)
(description "N-MOSFET transistor, drain/gate/source")
(docs ~)
(fields
(field (name Reference) Q)
(field (name Value) STP75N04-TO220))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name D) (type passive))
(pin (num 3) (name S) (type passive))))
(libpart (lib Diode) (part SB120)
(aliases
(alias SB130)
(alias SB140)
(alias SB150)
(alias SB160)
(alias 1N5817)
(alias 1N5818)
(alias 1N5819))
(description "20V 1A Schottky Barrier Rectifier Diode, DO-41")
(docs http://www.diodes.com/_files/datasheets/ds23022.pdf)
(footprints
(fp D*DO?41*))
(fields
(field (name Reference) D)
(field (name Value) SB120)
(field (name Footprint) Diode_THT:D_DO-41_SOD81_P10.16mm_Horizontal))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Driver_FET) (part EL7202CN)
(aliases
(alias MC33152)
(alias MC34152))
(description "High Speed, Dual Channel Power MOSFET Driver, DIP-8/SOIC-8")
(docs http://www.intersil.com/content/dam/Intersil/documents/el72/el7202-12-22.pdf)
(footprints
(fp DIP*W7.62mm*)
(fp SOIC*3.9x4.9mm*P1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) EL7202CN))
(pins
(pin (num 1) (name NC) (type NotConnected))
(pin (num 2) (name IN_A) (type input))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name IN_B) (type input))
(pin (num 5) (name OUT_B) (type output))
(pin (num 6) (name V+) (type power_in))
(pin (num 7) (name OUT_A) (type output))
(pin (num 8) (name NC) (type NotConnected))))
(libpart (lib Mega) (part Mega2560-PRO)
(fields
(field (name Reference) U)
(field (name Value) Mega2560-PRO))
(pins
(pin (num 5V) (name 5V) (type power_in))
(pin (num 3V3) (name 3V3) (type power_in))
(pin (num A0) (name A0) (type BiDi))
(pin (num A1) (name A1) (type BiDi))
(pin (num A2) (name A2) (type BiDi))
(pin (num A3) (name A3) (type BiDi))
(pin (num A4) (name A4) (type BiDi))
(pin (num A5) (name A5) (type BiDi))
(pin (num A6) (name A6) (type BiDi))
(pin (num A7) (name A7) (type BiDi))
(pin (num A8) (name A8) (type BiDi))
(pin (num A9) (name A9) (type BiDi))
(pin (num A10) (name A10) (type BiDi))
(pin (num A11) (name A11) (type BiDi))
(pin (num A12) (name A12) (type BiDi))
(pin (num A13) (name A13) (type BiDi))
(pin (num A14) (name A14) (type BiDi))
(pin (num A15) (name A15) (type BiDi))
(pin (num AREF) (name AREF) (type output))
(pin (num D2) (name D2) (type BiDi))
(pin (num D3) (name D3) (type BiDi))
(pin (num D4) (name D4) (type BiDi))
(pin (num D5) (name D5) (type BiDi))
(pin (num D6) (name D6) (type BiDi))
(pin (num D7) (name D7) (type BiDi))
(pin (num D8) (name D8) (type BiDi))
(pin (num D9) (name D9) (type BiDi))
(pin (num D10) (name D10) (type BiDi))
(pin (num D11) (name D11) (type BiDi))
(pin (num D12) (name D12) (type BiDi))
(pin (num D13) (name D13) (type BiDi))
(pin (num D14) (name D14) (type BiDi))
(pin (num D15) (name D15) (type BiDi))
(pin (num D16) (name D16) (type BiDi))
(pin (num D17) (name D17) (type BiDi))
(pin (num D18) (name D18) (type BiDi))
(pin (num D19) (name D19) (type BiDi))
(pin (num D20) (name D20) (type BiDi))
(pin (num D21) (name D21) (type BiDi))
(pin (num D22) (name D22) (type BiDi))
(pin (num D23) (name D23) (type BiDi))
(pin (num D24) (name D24) (type BiDi))
(pin (num D25) (name D25) (type BiDi))
(pin (num D26) (name D26) (type BiDi))
(pin (num D27) (name D27) (type BiDi))
(pin (num D28) (name D28) (type BiDi))
(pin (num D29) (name D29) (type BiDi))
(pin (num D30) (name D30) (type BiDi))
(pin (num D31) (name D31) (type BiDi))
(pin (num D32) (name D32) (type BiDi))
(pin (num D33) (name D33) (type BiDi))
(pin (num D34) (name D34) (type BiDi))
(pin (num D35) (name D35) (type BiDi))
(pin (num D36) (name D36) (type BiDi))
(pin (num D37) (name D37) (type BiDi))
(pin (num D38) (name D38) (type BiDi))
(pin (num D39) (name D39) (type BiDi))
(pin (num D40) (name D40) (type BiDi))
(pin (num D41) (name D41) (type BiDi))
(pin (num D42) (name D42) (type BiDi))
(pin (num D43) (name D43) (type BiDi))
(pin (num D44) (name D44) (type BiDi))
(pin (num D45) (name D45) (type BiDi))
(pin (num D46) (name D46) (type BiDi))
(pin (num D47) (name D47) (type BiDi))
(pin (num D48) (name D48) (type BiDi))
(pin (num D49) (name D49) (type BiDi))
(pin (num D50) (name D50) (type BiDi))
(pin (num D51) (name D51) (type BiDi))
(pin (num D52) (name D52) (type BiDi))
(pin (num D53) (name D53) (type BiDi))
(pin (num GND) (name GND) (type power_in))
(pin (num RST) (name RST) (type input))
(pin (num RX) (name RX) (type input))
(pin (num TX) (name TX) (type output))
(pin (num VIN) (name VIN) (type power_in))))
(libpart (lib Regulator_Linear) (part L7805)
(aliases
(alias L7806)
(alias L7808)
(alias L7885)
(alias L7809)
(alias L7812)
(alias L7815)
(alias L7818)
(alias L7824))
(description "Positive 1.5A 35V Linear Regulator, Fixed Output 5V, TO-220/TO-263/TO-252")
(docs http://www.st.com/content/ccc/resource/technical/document/datasheet/41/4f/b3/b0/12/d4/47/88/CD00000444.pdf/files/CD00000444.pdf/jcr:content/translations/en.CD00000444.pdf)
(footprints
(fp TO?252*)
(fp TO?263*)
(fp TO?220*))
(fields
(field (name Reference) U)
(field (name Value) L7805))
(pins
(pin (num 1) (name IN) (type power_in))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name OUT) (type power_out)))))
(libraries
(library (logical Connector)
(uri /usr/share/kicad/library/Connector.lib))
(library (logical Connector_Generic)
(uri /usr/share/kicad/library/Connector_Generic.lib))
(library (logical Device)
(uri /usr/share/kicad/library/Device.lib))
(library (logical Diode)
(uri /usr/share/kicad/library/Diode.lib))
(library (logical Driver_FET)
(uri /usr/share/kicad/library/Driver_FET.lib))
(library (logical Mega)
(uri /home/daniel/Desktop/2channel_mini_speedy/2channel_mini_speedy/Mega.lib))
(library (logical Regulator_Linear)
(uri /usr/share/kicad/library/Regulator_Linear.lib)))
(nets
(net (code 1) (name IGN1)
(node (ref J11) (pin 15))
(node (ref R17) (pin 2))
(node (ref R15) (pin 1)))
(net (code 2) (name IGN2-SIG)
(node (ref R12) (pin 2))
(node (ref U3) (pin D22)))
(net (code 3) (name TACH1)
(node (ref U3) (pin D19))
(node (ref C2) (pin 2))
(node (ref J5) (pin 8)))
(net (code 4) (name TACH2)
(node (ref U3) (pin D18))
(node (ref J5) (pin 7))
(node (ref C1) (pin 2)))
(net (code 5) (name IAT)
(node (ref R23) (pin 2))
(node (ref J11) (pin 11))
(node (ref C13) (pin 1))
(node (ref R24) (pin 2)))
(net (code 6) (name TPS)
(node (ref J11) (pin 12))
(node (ref C14) (pin 1))
(node (ref R25) (pin 2)))
(net (code 7) (name INJ1)
(node (ref D3) (pin 1))
(node (ref Q1) (pin 2))
(node (ref J11) (pin 13)))
(net (code 8) (name INJ2)
(node (ref Q2) (pin 2))
(node (ref D4) (pin 1))
(node (ref J11) (pin 14)))
(net (code 9) (name IGN1-SIG)
(node (ref R11) (pin 2))
(node (ref U3) (pin D23)))
(net (code 10) (name IGN2)
(node (ref R18) (pin 1))
(node (ref J11) (pin 16))
(node (ref R16) (pin 1)))
(net (code 11) (name VR1+)
(node (ref R5) (pin 2))
(node (ref J11) (pin 21))
(node (ref J2) (pin 1)))
(net (code 12) (name "Net-(J2-Pad2)")
(node (ref J2) (pin 2))
(node (ref R1) (pin 1)))
(net (code 13) (name +5V)
(node (ref C9) (pin 1))
(node (ref U2) (pin 3))
(node (ref C10) (pin 1))
(node (ref J10) (pin 3))
(node (ref U3) (pin 5V))
(node (ref U3) (pin 5V))
(node (ref D8) (pin 1))
(node (ref R4) (pin 2))
(node (ref R26) (pin 1))
(node (ref J5) (pin 5))
(node (ref J11) (pin 7))
(node (ref J11) (pin 19))
(node (ref R23) (pin 1))
(node (ref R1) (pin 2)))
(net (code 14) (name INJ1-SIG)
(node (ref R8) (pin 2))
(node (ref R7) (pin 2))
(node (ref U3) (pin D8)))
(net (code 15) (name INJ2-SIG)
(node (ref U3) (pin D9))
(node (ref R9) (pin 2))
(node (ref R10) (pin 2)))
(net (code 16) (name +12V)
(node (ref R3) (pin 2))
(node (ref J11) (pin 1))
(node (ref J11) (pin 2))
(node (ref J10) (pin 1))
(node (ref R2) (pin 2))
(node (ref C4) (pin 1))
(node (ref D7) (pin 2))
(node (ref C5) (pin 1))
(node (ref R19) (pin 1)))
(net (code 17) (name MAP-SIG)
(node (ref C6) (pin 1))
(node (ref U3) (pin A0))
(node (ref J11) (pin 24)))
(net (code 18) (name VR1-)
(node (ref J11) (pin 23))
(node (ref J5) (pin 1)))
(net (code 19) (name VR2+)
(node (ref R6) (pin 2))
(node (ref J11) (pin 20))
(node (ref J1) (pin 2)))
(net (code 20) (name VR2-)
(node (ref J5) (pin 4))
(node (ref J11) (pin 22)))
(net (code 21) (name O2-SIG)
(node (ref U3) (pin A2))
(node (ref R22) (pin 1))
(node (ref C12) (pin 1)))
(net (code 22) (name BRV-SIG)
(node (ref C11) (pin 1))
(node (ref U3) (pin A1))
(node (ref R21) (pin 1)))
(net (code 23) (name TPS-SIG)
(node (ref U3) (pin A3))
(node (ref R25) (pin 1))
(node (ref C17) (pin 1)))
(net (code 24) (name CLT-SIG)
(node (ref U3) (pin A4))
(node (ref R27) (pin 1))
(node (ref C18) (pin 1)))
(net (code 25) (name IAT-SIG)
(node (ref C16) (pin 1))
(node (ref U3) (pin A5))
(node (ref R24) (pin 1)))
(net (code 26) (name "Net-(J5-Pad2)")
(node (ref R5) (pin 1))
(node (ref J5) (pin 2)))
(net (code 27) (name "Net-(J1-Pad1)")
(node (ref J1) (pin 1))
(node (ref R4) (pin 1)))
(net (code 28) (name "Net-(J5-Pad3)")
(node (ref J5) (pin 3))
(node (ref R6) (pin 1)))
(net (code 29) (name GND)
(node (ref C13) (pin 2))
(node (ref R8) (pin 1))
(node (ref R10) (pin 1))
(node (ref C4) (pin 2))
(node (ref R20) (pin 2))
(node (ref C17) (pin 2))
(node (ref C14) (pin 2))
(node (ref D8) (pin 2))
(node (ref C10) (pin 2))
(node (ref C5) (pin 2))
(node (ref C9) (pin 2))
(node (ref U2) (pin 2))
(node (ref C16) (pin 2))
(node (ref C18) (pin 2))
(node (ref C15) (pin 2))
(node (ref U1) (pin 3))
(node (ref C11) (pin 2))
(node (ref C8) (pin 2))
(node (ref C12) (pin 2))
(node (ref C7) (pin 2))
(node (ref R14) (pin 1))
(node (ref R13) (pin 2))
(node (ref Q2) (pin 3))
(node (ref Q1) (pin 3))
(node (ref U3) (pin GND))
(node (ref U3) (pin GND))
(node (ref J11) (pin 8))
(node (ref J5) (pin 6))
(node (ref J11) (pin 18))
(node (ref J11) (pin 17))
(node (ref C1) (pin 1))
(node (ref C3) (pin 2))
(node (ref D6) (pin 1))
(node (ref C6) (pin 2))
(node (ref D5) (pin 1))
(node (ref C2) (pin 1)))
(net (code 30) (name "Net-(U3-PadTX)")
(node (ref U3) (pin TX)))
(net (code 31) (name "Net-(U3-PadVIN)")
(node (ref U3) (pin VIN)))
(net (code 32) (name "Net-(U3-PadVIN)")
(node (ref U3) (pin VIN)))
(net (code 33) (name "Net-(U3-PadRX)")
(node (ref U3) (pin RX)))
(net (code 34) (name "Net-(U3-PadD52)")
(node (ref U3) (pin D52)))
(net (code 35) (name "Net-(U3-PadD44)")
(node (ref U3) (pin D44)))
(net (code 36) (name "Net-(U3-PadD45)")
(node (ref U3) (pin D45)))
(net (code 37) (name "Net-(U3-PadD46)")
(node (ref U3) (pin D46)))
(net (code 38) (name "Net-(U3-PadD47)")
(node (ref U3) (pin D47)))
(net (code 39) (name "Net-(U3-PadD48)")
(node (ref U3) (pin D48)))
(net (code 40) (name "Net-(U3-PadD49)")
(node (ref U3) (pin D49)))
(net (code 41) (name "Net-(U3-PadD5)")
(node (ref U3) (pin D5)))
(net (code 42) (name "Net-(U3-PadD50)")
(node (ref U3) (pin D50)))
(net (code 43) (name "Net-(U3-PadD51)")
(node (ref U3) (pin D51)))
(net (code 44) (name "Net-(U3-PadD53)")
(node (ref U3) (pin D53)))
(net (code 45) (name "Net-(U3-PadD6)")
(node (ref U3) (pin D6)))
(net (code 46) (name "Net-(U3-PadD7)")
(node (ref U3) (pin D7)))
(net (code 47) (name "Net-(U3-PadRST)")
(node (ref U3) (pin RST)))
(net (code 48) (name CLT)
(node (ref J11) (pin 10))
(node (ref R27) (pin 2))
(node (ref C15) (pin 1))
(node (ref R26) (pin 2)))
(net (code 49) (name TACHO-OUT)
(node (ref J11) (pin 6))
(node (ref U3) (pin D17)))
(net (code 50) (name RX3)
(node (ref U3) (pin D15))
(node (ref J11) (pin 4)))
(net (code 51) (name TX3)
(node (ref J11) (pin 3))
(node (ref U3) (pin D14)))
(net (code 52) (name "Net-(U3-PadD43)")
(node (ref U3) (pin D43)))
(net (code 53) (name D16)
(node (ref U3) (pin D16))
(node (ref J11) (pin 5)))
(net (code 54) (name "Net-(U3-PadA12)")
(node (ref U3) (pin A12)))
(net (code 55) (name "Net-(U3-Pad3V3)")
(node (ref U3) (pin 3V3)))
(net (code 56) (name "Net-(U3-Pad3V3)")
(node (ref U3) (pin 3V3)))
(net (code 57) (name "Net-(U3-PadA10)")
(node (ref U3) (pin A10)))
(net (code 58) (name "Net-(U3-PadA11)")
(node (ref U3) (pin A11)))