Daniel Howden
Published © GPL3+

Ignition System for a Motorcycle

I have a project bike build on the go and I am wanting to use the Arduino to manufacture an ignition system for it

BeginnerWork in progressOver 4 days4,565
Ignition System for a Motorcycle

Things used in this project

Hardware components

12v power supply
Just to use in place of the 12v battery while I develop this
×1
power transistor
To give me enough boost for the coil
×1
electric motor
This is a temp thing so I can simulate the rotation of the engine
×1
Resistor 10k ohm
Resistor 10k ohm
×1
Resistor 100k ohm
Resistor 100k ohm
×1
Arduino UNO
Arduino UNO
×1
Breadboard (generic)
Breadboard (generic)
×1

Story

Read more

Custom parts and enclosures

Timing gear lock plate

This will be 3D printed

Power supply cover

This will be 3D printed

Schematics

Base diagram

Code

Starter code

C/C++
int coil_pin = 10; // digital command pin

void setup () {
pinMode (pin_coil, OUTPUT);
}

void loop () {
  digitalWrite (coil_pin, LOW);
  delay (136); // about 95% of 144ms
  digitalWrite (coil_pin, HIGH);
  delay (8); // about 95% of 144ms
}

Credits

Daniel Howden
1 project • 2 followers
Contact

Comments

Please log in or sign up to comment.