Arduino Car Alternator to Brushless Motor conversion
Below is the simple Arduino control car alternator working as a powrfull motor
Here simple ESC 30 Amps were used
1). Need 12VDC connected to the internal coil of alternator first
2). 12VDC also need to be connected to ESC
3). Arduino will get 5V from the ESC buit-in 5VDC output
4). ESC connected to arduino pin # 8
5). 10 K resistor connected to arduino A0
https://web.facebook.com/ksfelectronics
servo esc;
void setup()
{
esc.attach(8);
esc.writeMicroseconds(1000);
}
void loop(){
int val;
val= analogRead(A0);
val= map(val, 0, 1023,1000,2000);
esc.writeMicroseconds(val);
}
Check the video:
https://www.youtube.com/watch?v=LzQ_vyZUGTU