-
Notifications
You must be signed in to change notification settings - Fork 0
/
speeduino_ntv650.net
1470 lines (1470 loc) · 54.6 KB
/
speeduino_ntv650.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 C:\temp\git\speeduinoNTV650\speeduino_ntv650.sch)
(date "30.08.2019 13:10:11")
(tool "Eeschema (5.1.4)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source speeduino_ntv650.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /pulse_sensor/) (tstamps /5D5F08C5/)
(title_block
(title)
(company)
(rev)
(date)
(source pulse_sensor.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /pulse_sensor/vr_condicioner/) (tstamps /5D5F08C5/5D5F1B22/)
(title_block
(title)
(company)
(rev)
(date)
(source vr_condicioner.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /map_sensor/) (tstamps /5D5EEFF5/)
(title_block
(title)
(company)
(rev)
(date)
(source map_sensor.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name /O2_sensor/) (tstamps /5D6317A4/)
(title_block
(title)
(company)
(rev)
(date)
(source O2_sensor.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name "/Throttle Position Sensor/") (tstamps /5D633C36/)
(title_block
(title)
(company)
(rev)
(date)
(source ThrottlePositionSensor.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 7) (name "/Inlet Air Temperature sensor/") (tstamps /5D63B349/)
(title_block
(title)
(company)
(rev)
(date)
(source InletAirTemperatureSensor.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 8) (name "/Battery Reference Voltage/") (tstamps /5D63F6DA/)
(title_block
(title)
(company)
(rev)
(date)
(source BatteryReferenceVoltage.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 9) (name "/ADC Clamping circuit/") (tstamps /5D644FA3/)
(title_block
(title)
(company)
(rev)
(date)
(source ADCClampingCircuit.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 10) (name "/Coolant Temperature Sensor/") (tstamps /5D648515/)
(title_block
(title)
(company)
(rev)
(date)
(source CoolantTemperatureSensor.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 11) (name "/Stepper Driver/") (tstamps /5D64D917/)
(title_block
(title)
(company)
(rev)
(date)
(source StepperDriver.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 12) (name /Injector/) (tstamps /5D65DEE2/)
(title_block
(title)
(company)
(rev)
(date)
(source Injector.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 13) (name /Injector2/) (tstamps /5D676664/)
(title_block
(title)
(company)
(rev)
(date)
(source Injector.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 14) (name /IgnitorOutput/) (tstamps /5D68FA4A/)
(title_block
(title)
(company)
(rev)
(date)
(source IgnitorOutput.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 15) (name "/Power supply/") (tstamps /5D6BFA4A/)
(title_block
(title)
(company)
(rev)
(date)
(source PowerSupply.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 16) (name "/PWM Idle/") (tstamps /5D6DB8FB/)
(title_block
(title)
(company)
(rev)
(date)
(source IdleOut.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref ARD1)
(value ArduinoMegaProMini)
(footprint ntv650_ecu:ArduinoMegaProMini)
(libsource (lib ntv650_ecu) (part ArduinoMegaProMini) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D5F79DA))
(comp (ref J1)
(value Conn_01x25_DB-25)
(footprint ntv650_ecu:DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x25) (description "Generic connector, single row, 01x25, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D6030E9))
(comp (ref C1)
(value 0.01mF)
(footprint Capacitors_ThroughHole:C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /pulse_sensor/) (tstamps /5D5F08C5/))
(tstamp 5D5E4511))
(comp (ref R3)
(value 10k)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /pulse_sensor/vr_condicioner/) (tstamps /5D5F08C5/5D5F1B22/))
(tstamp 5D5F7520))
(comp (ref R4)
(value 10k)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /pulse_sensor/vr_condicioner/) (tstamps /5D5F08C5/5D5F1B22/))
(tstamp 5D5F7527))
(comp (ref C2)
(value 1nF)
(footprint Capacitors_ThroughHole:C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /pulse_sensor/vr_condicioner/) (tstamps /5D5F08C5/5D5F1B22/))
(tstamp 5D5F7530))
(comp (ref R5)
(value 10k)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /pulse_sensor/vr_condicioner/) (tstamps /5D5F08C5/5D5F1B22/))
(tstamp 5D5F7570))
(comp (ref R6)
(value 10k)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /pulse_sensor/vr_condicioner/) (tstamps /5D5F08C5/5D5F1B22/))
(tstamp 5D5F7577))
(comp (ref C3)
(value 1nF)
(footprint Capacitors_ThroughHole:C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /pulse_sensor/vr_condicioner/) (tstamps /5D5F08C5/5D5F1B22/))
(tstamp 5D5F7580))
(comp (ref R2)
(value 1k)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /pulse_sensor/vr_condicioner/) (tstamps /5D5F08C5/5D5F1B22/))
(tstamp 5D5F75A2))
(comp (ref R1)
(value 1k)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /pulse_sensor/vr_condicioner/) (tstamps /5D5F08C5/5D5F1B22/))
(tstamp 5D5F75AC))
(comp (ref P1)
(value MAX9926_9927)
(footprint Housings_SSOP:QSOP-16_3.9x4.9mm_Pitch0.635mm)
(libsource (lib ntv650_ecu) (part MAX9926_9927) (description ""))
(sheetpath (names /pulse_sensor/vr_condicioner/) (tstamps /5D5F08C5/5D5F1B22/))
(tstamp 5D5F760F))
(comp (ref R7)
(value 750)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /map_sensor/) (tstamps /5D5EEFF5/))
(tstamp 5D61FACC))
(comp (ref C4)
(value 0.3uF)
(footprint Capacitors_ThroughHole:C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /map_sensor/) (tstamps /5D5EEFF5/))
(tstamp 5D6205A4))
(comp (ref C5)
(value 1uF)
(footprint Capacitors_ThroughHole:C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /map_sensor/) (tstamps /5D5EEFF5/))
(tstamp 5D629BB2))
(comp (ref C6)
(value 0.01uF)
(footprint Capacitors_ThroughHole:C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /map_sensor/) (tstamps /5D5EEFF5/))
(tstamp 5D62B2EC))
(comp (ref C7)
(value 0.1uF)
(footprint Capacitors_ThroughHole:C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /O2_sensor/) (tstamps /5D6317A4/))
(tstamp 5D631A96))
(comp (ref C8)
(value 0.22uF)
(footprint Capacitors_ThroughHole:C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /O2_sensor/) (tstamps /5D6317A4/))
(tstamp 5D631E33))
(comp (ref R8)
(value 470)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /O2_sensor/) (tstamps /5D6317A4/))
(tstamp 5D631EDD))
(comp (ref C9)
(value 0.1uF)
(footprint Capacitors_ThroughHole:C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Throttle Position Sensor/") (tstamps /5D633C36/))
(tstamp 5D63881D))
(comp (ref C10)
(value 0.22uF)
(footprint Capacitors_ThroughHole:C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Throttle Position Sensor/") (tstamps /5D633C36/))
(tstamp 5D638823))
(comp (ref R9)
(value 470)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Throttle Position Sensor/") (tstamps /5D633C36/))
(tstamp 5D638829))
(comp (ref C11)
(value 0.1uF)
(footprint Capacitors_ThroughHole:C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Inlet Air Temperature sensor/") (tstamps /5D63B349/))
(tstamp 5D63C6E2))
(comp (ref C12)
(value 0.22uF)
(footprint Capacitors_ThroughHole:C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Inlet Air Temperature sensor/") (tstamps /5D63B349/))
(tstamp 5D63C6E8))
(comp (ref R11)
(value 470)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Inlet Air Temperature sensor/") (tstamps /5D63B349/))
(tstamp 5D63C6EE))
(comp (ref R10)
(value 2.49K)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Inlet Air Temperature sensor/") (tstamps /5D63B349/))
(tstamp 5D63C8DD))
(comp (ref C13)
(value 0.1uF)
(footprint Capacitors_ThroughHole:C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Battery Reference Voltage/") (tstamps /5D63F6DA/))
(tstamp 5D6406D2))
(comp (ref C14)
(value 0.22uF)
(footprint Capacitors_ThroughHole:C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Battery Reference Voltage/") (tstamps /5D63F6DA/))
(tstamp 5D6406D8))
(comp (ref R14)
(value 470)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Battery Reference Voltage/") (tstamps /5D63F6DA/))
(tstamp 5D6406DE))
(comp (ref R12)
(value 3.9K)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(fields
(field (name Точность) 0,5%))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Battery Reference Voltage/") (tstamps /5D63F6DA/))
(tstamp 5D640D55))
(comp (ref R13)
(value 1K)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Battery Reference Voltage/") (tstamps /5D63F6DA/))
(tstamp 5D6423C2))
(comp (ref IC1)
(value SP721)
(footprint Housings_SOIC:SOIC-8-1EP_3.9x4.9mm_Pitch1.27mm)
(libsource (lib ntv650_ecu) (part SP721) (description ""))
(sheetpath (names "/ADC Clamping circuit/") (tstamps /5D644FA3/))
(tstamp 5D6469EB))
(comp (ref C15)
(value 0.1uF)
(footprint Capacitors_ThroughHole:C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Coolant Temperature Sensor/") (tstamps /5D648515/))
(tstamp 5D64A106))
(comp (ref C16)
(value 0.22uF)
(footprint Capacitors_ThroughHole:C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Coolant Temperature Sensor/") (tstamps /5D648515/))
(tstamp 5D64A10C))
(comp (ref R16)
(value 470)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Coolant Temperature Sensor/") (tstamps /5D648515/))
(tstamp 5D64A112))
(comp (ref R15)
(value 2.49K)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Coolant Temperature Sensor/") (tstamps /5D648515/))
(tstamp 5D64A133))
(comp (ref A1)
(value Pololu_Breakout_A4988)
(footprint "ntv650_ecu:A4988 Stepper Motor Driver Carrier")
(datasheet https://www.pololu.com/product/2980/pictures)
(libsource (lib Driver_Motor) (part Pololu_Breakout_A4988) (description "Pololu Breakout Board, Stepper Driver A4988"))
(sheetpath (names "/Stepper Driver/") (tstamps /5D64D917/))
(tstamp 5D64F049))
(comp (ref R17)
(value 2.4K)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Injector/) (tstamps /5D65DEE2/))
(tstamp 5D662C68))
(comp (ref D1)
(value "LED INJ")
(footprint LED_THT:LED_D5.0mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /Injector/) (tstamps /5D65DEE2/))
(tstamp 5D6633CA))
(comp (ref D2)
(value D)
(footprint Diode_THT:D_DO-41_SOD81_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /Injector/) (tstamps /5D65DEE2/))
(tstamp 5D663BD7))
(comp (ref Q1)
(value STP62NS04Z)
(footprint TO_SOT_Packages_THT:TO-220-3_Vertical)
(datasheet http://www.fairchildsemi.com/ds/BU/BUZ11.pdf)
(libsource (lib ntv650_ecu) (part STP62NS04Z) (description "30A Id, 50V Vds, N-Channel Power MOSFET, TO-220"))
(sheetpath (names /Injector/) (tstamps /5D65DEE2/))
(tstamp 5D6699BD))
(comp (ref R18)
(value 100K)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Injector/) (tstamps /5D65DEE2/))
(tstamp 5D66AAEC))
(comp (ref R19)
(value 1K)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Injector/) (tstamps /5D65DEE2/))
(tstamp 5D66AF50))
(comp (ref R20)
(value 2.4K)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Injector2/) (tstamps /5D676664/))
(tstamp 5D662C68))
(comp (ref D3)
(value "LED INJ")
(footprint LED_THT:LED_D5.0mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /Injector2/) (tstamps /5D676664/))
(tstamp 5D6633CA))
(comp (ref D4)
(value D)
(footprint Diode_THT:D_DO-41_SOD81_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /Injector2/) (tstamps /5D676664/))
(tstamp 5D663BD7))
(comp (ref Q2)
(value STP62NS04Z)
(footprint TO_SOT_Packages_THT:TO-220-3_Vertical)
(datasheet http://www.fairchildsemi.com/ds/BU/BUZ11.pdf)
(libsource (lib ntv650_ecu) (part STP62NS04Z) (description "30A Id, 50V Vds, N-Channel Power MOSFET, TO-220"))
(sheetpath (names /Injector2/) (tstamps /5D676664/))
(tstamp 5D6699BD))
(comp (ref R21)
(value 100K)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Injector2/) (tstamps /5D676664/))
(tstamp 5D66AAEC))
(comp (ref R22)
(value 1K)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Injector2/) (tstamps /5D676664/))
(tstamp 5D66AF50))
(comp (ref R23)
(value 1K)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /IgnitorOutput/) (tstamps /5D68FA4A/))
(tstamp 5D68FD75))
(comp (ref R25)
(value 100K)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /IgnitorOutput/) (tstamps /5D68FA4A/))
(tstamp 5D6901D8))
(comp (ref R29)
(value 160)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /IgnitorOutput/) (tstamps /5D68FA4A/))
(tstamp 5D690569))
(comp (ref R28)
(value 2.4K)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /IgnitorOutput/) (tstamps /5D68FA4A/))
(tstamp 5D69086A))
(comp (ref D6)
(value "LED AGN1")
(footprint LED_THT:LED_D5.0mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /IgnitorOutput/) (tstamps /5D68FA4A/))
(tstamp 5D6941C6))
(comp (ref IC2)
(value TC4424)
(footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
(libsource (lib ntv650_ecu) (part TC4424) (description ""))
(sheetpath (names /IgnitorOutput/) (tstamps /5D68FA4A/))
(tstamp 5D696903))
(comp (ref C17)
(value 1uF)
(footprint Capacitors_ThroughHole:C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /IgnitorOutput/) (tstamps /5D68FA4A/))
(tstamp 5D69783F))
(comp (ref R30)
(value 160)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /IgnitorOutput/) (tstamps /5D68FA4A/))
(tstamp 5D69DC84))
(comp (ref R24)
(value 1K)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /IgnitorOutput/) (tstamps /5D68FA4A/))
(tstamp 5D6A1E97))
(comp (ref R26)
(value 100K)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /IgnitorOutput/) (tstamps /5D68FA4A/))
(tstamp 5D6A1E9D))
(comp (ref D5)
(value "LED AGN2")
(footprint LED_THT:LED_D5.0mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /IgnitorOutput/) (tstamps /5D68FA4A/))
(tstamp 5D6A1EA3))
(comp (ref R27)
(value 2.4K)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /IgnitorOutput/) (tstamps /5D68FA4A/))
(tstamp 5D6AA65A))
(comp (ref RV1)
(value ERZV14D220)
(footprint Varistors:RV_Disc_D12_W3.9_P7.5)
(datasheet ~)
(libsource (lib Device) (part Varistor) (description "Voltage dependent resistor"))
(sheetpath (names "/Power supply/") (tstamps /5D6BFA4A/))
(tstamp 5D6BFEE4))
(comp (ref U1)
(value LM2937xT)
(footprint TO_SOT_Packages_THT:TO-220-3_Vertical)
(datasheet http://www.ti.com/lit/ds/symlink/lm2937.pdf)
(libsource (lib Regulator_Linear) (part LM2937xT) (description "500-mA Low Dropout Regulator, TO-220"))
(sheetpath (names "/Power supply/") (tstamps /5D6BFA4A/))
(tstamp 5D6C04F0))
(comp (ref D7)
(value 1N5818)
(footprint Diodes_ThroughHole:D_DO-41_SOD81_P7.62mm_Horizontal)
(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 "/Power supply/") (tstamps /5D6BFA4A/))
(tstamp 5D6C0E6C))
(comp (ref C18)
(value 10uF)
(footprint Capacitors_ThroughHole:C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names "/Power supply/") (tstamps /5D6BFA4A/))
(tstamp 5D6C14ED))
(comp (ref C19)
(value 0.1uF)
(footprint Capacitors_ThroughHole:C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Power supply/") (tstamps /5D6BFA4A/))
(tstamp 5D6C19A2))
(comp (ref D8)
(value 1N5919BG)
(footprint Diodes_ThroughHole:D_DO-41_SOD81_P7.62mm_Horizontal)
(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 "/Power supply/") (tstamps /5D6BFA4A/))
(tstamp 5D6C36C1))
(comp (ref Q3)
(value STP62NS04Z)
(footprint TO_SOT_Packages_THT:TO-220-3_Vertical)
(datasheet http://www.fairchildsemi.com/ds/BU/BUZ11.pdf)
(libsource (lib ntv650_ecu) (part STP62NS04Z) (description "30A Id, 50V Vds, N-Channel Power MOSFET, TO-220"))
(sheetpath (names "/PWM Idle/") (tstamps /5D6DB8FB/))
(tstamp 5D6E0837))
(comp (ref R31)
(value 100K)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/PWM Idle/") (tstamps /5D6DB8FB/))
(tstamp 5D6E0843))
(comp (ref R32)
(value 1K)
(footprint Resistor_SMD:R_2010_5025Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/PWM Idle/") (tstamps /5D6DB8FB/))
(tstamp 5D6E0849)))
(libparts
(libpart (lib Connector_Generic) (part Conn_01x25)
(description "Generic connector, single row, 01x25, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x25))
(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))
(pin (num 25) (name Pin_25) (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 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 Varistor)
(description "Voltage dependent resistor")
(docs ~)
(footprints
(fp RV_*)
(fp Varistor*))
(fields
(field (name Reference) RV)
(field (name Value) Varistor))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (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_Motor) (part Pololu_Breakout_A4988)
(description "Pololu Breakout Board, Stepper Driver A4988")
(docs https://www.pololu.com/product/2980/pictures)
(footprints
(fp Pololu*Breakout*15.2x20.3mm*))
(fields
(field (name Reference) A)
(field (name Value) Pololu_Breakout_A4988)
(field (name Footprint) Module:Pololu_Breakout-16_15.2x20.3mm))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name VDD) (type power_in))
(pin (num 3) (name 1B) (type output))
(pin (num 4) (name 1A) (type output))
(pin (num 5) (name 2A) (type output))
(pin (num 6) (name 2B) (type output))
(pin (num 7) (name GND) (type power_in))
(pin (num 8) (name VMOT) (type power_in))
(pin (num 9) (name ~ENABLE) (type input))
(pin (num 10) (name MS1) (type input))
(pin (num 11) (name MS2) (type input))
(pin (num 12) (name MS3) (type input))
(pin (num 13) (name ~RESET) (type input))
(pin (num 14) (name ~SLEEP) (type input))
(pin (num 15) (name STEP) (type input))
(pin (num 16) (name DIR) (type input))))
(libpart (lib Regulator_Linear) (part LM7805_TO220)
(aliases
(alias LM7806_TO220)
(alias LM7808_TO220)
(alias LM7809_TO220)
(alias LM7810_TO220)
(alias LM7812_TO220)
(alias LM7815_TO220)
(alias LM7818_TO220)
(alias LM7824_TO220)
(alias LM78M05_TO220)
(alias SPX2920U-3.3_TO220)
(alias SPX2920U-5.0_TO220)
(alias LF15_TO220)
(alias LF18_TO220)
(alias LF25_TO220)
(alias LF33_TO220)
(alias LF50_TO220)
(alias LF60_TO220)
(alias LF80_TO220)
(alias LF85_TO220)
(alias LF120_TO220)
(alias LF47_TO220)
(alias LF90_TO220)
(alias LM341T-05_TO220)
(alias LM341T-12_TO220)
(alias LM341T-15_TO220)
(alias LM2937xT))
(description "Positive 1A 35V Linear Regulator, Fixed Output 5V, TO-220")
(docs http://www.fairchildsemi.com/ds/LM/LM7805.pdf)
(footprints
(fp TO?220*))
(fields
(field (name Reference) U)
(field (name Value) LM7805_TO220)
(field (name Footprint) Package_TO_SOT_THT:TO-220-3_Vertical))
(pins
(pin (num 1) (name VI) (type power_in))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name VO) (type power_out))))
(libpart (lib ntv650_ecu) (part ArduinoMegaProMini)
(footprints
(fp ard))
(fields
(field (name Reference) ARD?)
(field (name Value) ArduinoMegaProMini))
(pins
(pin (num 0) (name RX) (type input))
(pin (num 1) (name TX) (type output))
(pin (num 2) (name D2) (type BiDi))
(pin (num 3) (name D3) (type BiDi))
(pin (num 4) (name D4) (type BiDi))
(pin (num 5) (name D5) (type BiDi))
(pin (num 6) (name D6) (type BiDi))
(pin (num 7) (name D7) (type BiDi))
(pin (num 8) (name D8) (type BiDi))
(pin (num 9) (name D9) (type BiDi))
(pin (num 10) (name D10) (type BiDi))
(pin (num 11) (name D11) (type BiDi))
(pin (num 12) (name D12) (type BiDi))
(pin (num 13) (name D13) (type BiDi))
(pin (num 14) (name D14) (type BiDi))
(pin (num 15) (name D15) (type BiDi))
(pin (num 16) (name D16) (type BiDi))
(pin (num 17) (name D17) (type BiDi))
(pin (num 18) (name D18) (type BiDi))
(pin (num 19) (name D19) (type BiDi))
(pin (num 20) (name D20) (type BiDi))
(pin (num 21) (name D21) (type BiDi))
(pin (num 22) (name D22) (type BiDi))
(pin (num 23) (name D23) (type BiDi))
(pin (num 24) (name D24) (type BiDi))
(pin (num 25) (name D25) (type BiDi))
(pin (num 26) (name D26) (type BiDi))
(pin (num 27) (name D27) (type BiDi))
(pin (num 28) (name D28) (type BiDi))
(pin (num 29) (name D29) (type BiDi))
(pin (num 30) (name D30) (type BiDi))
(pin (num 31) (name D31) (type BiDi))
(pin (num 32) (name D32) (type BiDi))
(pin (num 33) (name D33) (type BiDi))
(pin (num 34) (name D34) (type BiDi))
(pin (num 35) (name D35) (type BiDi))
(pin (num 36) (name D36) (type BiDi))
(pin (num 37) (name D37) (type BiDi))
(pin (num 38) (name D38) (type BiDi))
(pin (num 39) (name D39) (type BiDi))
(pin (num 40) (name D40) (type BiDi))
(pin (num 41) (name D41) (type BiDi))
(pin (num 42) (name D42) (type BiDi))
(pin (num 43) (name D43) (type BiDi))
(pin (num 44) (name D44) (type BiDi))
(pin (num 45) (name D45) (type BiDi))
(pin (num 46) (name D46) (type BiDi))
(pin (num 47) (name D47) (type BiDi))
(pin (num 48) (name D48) (type BiDi))
(pin (num 49) (name D49) (type BiDi))
(pin (num 50) (name D50) (type BiDi))
(pin (num 51) (name D51) (type BiDi))
(pin (num 52) (name D52) (type BiDi))
(pin (num 53) (name D53) (type BiDi))
(pin (num 54) (name A0) (type BiDi))
(pin (num 55) (name A1) (type BiDi))
(pin (num 56) (name A2) (type BiDi))
(pin (num 57) (name A3) (type BiDi))
(pin (num 58) (name A4) (type BiDi))
(pin (num 59) (name A5) (type BiDi))
(pin (num 60) (name A6) (type BiDi))
(pin (num 61) (name A7) (type BiDi))
(pin (num 62) (name A8) (type BiDi))
(pin (num 63) (name A9) (type BiDi))
(pin (num 64) (name A10) (type BiDi))
(pin (num 65) (name A11) (type BiDi))
(pin (num 66) (name A12) (type BiDi))
(pin (num 67) (name A13) (type BiDi))
(pin (num 68) (name A14) (type BiDi))
(pin (num 69) (name A15) (type BiDi))
(pin (num 70) (name RESET) (type input))
(pin (num 71) (name SCK) (type input))
(pin (num 72) (name MISO) (type output))
(pin (num 73) (name GND) (type power_in))
(pin (num 74) (name MOSI) (type input))
(pin (num 75) (name 5V) (type power_in))
(pin (num 76) (name RST) (type power_in))
(pin (num 77) (name AREF) (type input))
(pin (num 78) (name Vcc) (type power_out))
(pin (num 79) (name Vcc) (type power_out))
(pin (num 80) (name GND) (type power_in))
(pin (num 81) (name Vin) (type power_in))
(pin (num 82) (name GND) (type input))
(pin (num 83) (name VCC) (type input))
(pin (num 84) (name RX) (type input))
(pin (num 85) (name TX) (type output))
(pin (num 86) (name RST) (type input))
(pin (num 87) (name GND) (type power_in))
(pin (num 88) (name Vin) (type power_in))))
(libpart (lib ntv650_ecu) (part MAX9926_9927)
(fields
(field (name Reference) P)
(field (name Value) MAX9926_9927))
(pins
(pin (num 1) (name IN_THRS1) (type passive))
(pin (num 2) (name EXT1) (type passive))
(pin (num 3) (name BIAS1) (type passive))
(pin (num 4) (name COUT1) (type passive))
(pin (num 5) (name COUT2) (type passive))
(pin (num 6) (name BIAS2) (type passive))
(pin (num 7) (name EXT2) (type passive))
(pin (num 8) (name INT_THRS2) (type passive))
(pin (num 9) (name IN2+) (type passive))
(pin (num 10) (name IN2-) (type passive))
(pin (num 11) (name GND) (type passive))
(pin (num 12) (name DIRN/OUT2) (type passive))
(pin (num 13) (name ZERO_EN/OUT1) (type passive))
(pin (num 14) (name VCC) (type passive))
(pin (num 15) (name IN1-) (type passive))
(pin (num 16) (name IN1+) (type passive))))
(libpart (lib ntv650_ecu) (part SP721)
(fields
(field (name Reference) IC)
(field (name Value) SP721))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))
(pin (num 4) (name ~) (type passive))
(pin (num 5) (name ~) (type passive))
(pin (num 6) (name ~) (type passive))
(pin (num 7) (name ~) (type passive))
(pin (num 8) (name ~) (type passive))))
(libpart (lib ntv650_ecu) (part STP62NS04Z)
(aliases
(alias IRF3205)
(alias IRF540N)
(alias IRF740)
(alias IRLB8721PBF)
(alias IRLZ34N)