This is a good project ! The best way to do it is to purchase an Arduino. That is the way I would wire it !
You will need :
1x Arduino
3x 2n3055 npn transistors
1x relay
1x 5A fuse
1x soldering board
lots of wires !
Inputs :
- Neutral position switch (like tercel gts said)
- Engine speed signal (BLU/BLK on Igniter)
- Clutch start switch (BLK/RED on switch or starter relay)
- Fused 12v input from battery
Outputs :
- 12v to starter relay (BLK/RED on relay or clutch switch)
- 12v to ECM (C22 BLK/WHT)
- 12v to relay (crankshaft position sensor, any wire, for inj. cut off)
See image :
Conditions to start the engine :
Input 1 must be at 12v (logic 1)
Input 2 must be at the voltage when engine is less than 500rpm. (analog 500)
Input 3 must be at 0v (logic 0)
if(input_1 == 1 && input_2 < 500 && input_3 == 0){
while(input_2 > 500){
output_1 = 1;
output_2 = 1;
}
output_1 = 0;
output_2 = 0;
}
Conditions to stop the engine :
Input 1 must be at 0v (logic 0)
Input 2 must be at the voltage when engine is more than 500rpm. (analog 500)
Input 3 must be at 12v (logic 1)
if(input_1 == 0 && input_2 > 500 && input_3 == 1){
output_3 = 1;
delay(1000);
output_3 = 0;
}
There you go ! If you have any questions PM me I will be more than happy to answer !