Você está na página 1de 3

Brushless Motor Control Using ESC and Arduino

Future Electronics Egypt Ltd. (Arduino Egypt).

Instead off connecting the wire connector in the above photo to receiver throttle channel, it will be connected to arduino as shown in pictures below. The servo library le is used for brushless motor controller

Future Electronics Egypt Ltd. (Arduino Egypt).

Arduino Code

#include <Servo.h> Servo myservo; // create servo object to control a servo int potpin = 0; // analog pin used to connect the potentiometer int val;! // variable to read the value from the analog pin void setup() {} { } myservo.attach(9); // attaches the servo on pin 9 to the servo object void loop() val = analogRead(potpin); val = map(val, 0, 1023, 0, 179); myservo.write(val); delay(15); // reads the value of the potentiometer // scale it to use it with the servo // sets position to the scaled value // waits for the servo to get there

Future Electronics Egypt Ltd. (Arduino Egypt).

Você também pode gostar