Hello,
I want to run brushless motor with ESC using arduino mega 2560. I am using DLFPV motors and SIMONK30A esc.
I have attached the white signal pin to arduino digital pin 8 and black wire to the ground. ESC is powered using zippy compact 3300 60c series battery.
However it is not running at all.
I am using this code.
#include <Servo.h>
Servo esc1;
int motor = 1000;
void setup() {
Serial.begin(9600);
esc1.attach( 8 );
esc1.writeMicroseconds(700);
}
void loop() {
esc1.writeMicroseconds(motor);
}