Interfacing Brushless DC Motor (BLDC) With Arduino

107K207111

Intro: Interfacing Brushless DC Motor (BLDC) With Arduino

This is a tutorial about how to interface and run a Brushless DC motor using Arduino. If you have any questions or comments please reply in comments or mail to rautmithil[at]gmail[dot]com. You can also get in touch with me @mithilraut on twitter.

To know more about me: www.mithilraut.com

STEP 1: List of Components

  1. Arduino UNO
  2. BLDC outrunner motor (Any other outrunner motor will work fine)
  3. Electronic Speed Controller (Choose according to the current rating of the motor)
  4. LiPo Battery (to power the motor)
  5. Male-Male Jumper cable * 3
  6. USB 2.0 cable type A/B (To upload the program and power the Arduino).

Note: Make sure you check the connectors of battery, ESC and Motors. In this case we have 3.5mm male bullet connectors on the Motor. So I soldered 3.5mm female bullet connectors on the output of ESC. The Battery had a 4.0mm Male Female connector. Hence I soldered appropriate female male connectors on the input side of ESC.

STEP 2: Connections

Connect the motor to the output of ESC. Here, the polarity doesn't matter. If you switch any 2 of the 3 wires, the motor will rotate in opposite direction.

Connect the '+' & '-' of battery to the Red(+) and Black(-) wires of ESC respectively.

From the 3pin servo cable coming out of the ESC, connect the Brown cable to the 'GND' pin on Arduino. Connect the Yellow cable to any digital pin. In our case its digital pin 12.

STEP 3: Programming Arduino UNO

If you are new to Arduino then you can download, install and setup the Arduino from here.

Connect the Arduino to the PC. Open Arduino IDE and write this code. Under 'Tools' select

Board: Arduino/Genuino UNO

Port: COM15 (Select appropriate COM port. To find out the COM port open device manager and look for Arduino UNO under 'Ports')

Click Upload button on the upper left corner.

#include <Servo.h>
Servo esc_signal;

void setup()
{
  esc_signal.attach(12);  //Specify here the pin number on which the signal pin of ESC is connected.
  esc_signal.write(30);   //ESC arm command. ESCs won't start unless input speed is less during initialization.
  delay(3000);            //ESC initialization delay.
}

void loop()
{
esc_signal.write(55);	  //Vary this between 40-130 to change the speed of motor. Higher value, higher speed.
delay(15);
}

STEP 4: Note

The correct way to run the motors is to

1. Connect the battery to the ESC to power up the ESC.

2. Power the Arduino.

If you do the other way round, the Arduino will run the arm sequence and the ESC will miss those commands since it isn't powered up. In this case press the reset button on the Arduino.

85 Comments

the servo libary gives a low from 50 of motor speed
I had to add delay(5000); to the very top in the void setup(). That way the arduino will wait for 5 seconds before arming and then the motor starts.
How i reverse the bldc using arduino coding?? (without alternate two esc wires)
There are special ESCs which offer that functionality through software control.
Is there any possibility that we would reverse the direction of Brushless DC Motors with ESC using Arduino programming ?
For traditional ESCs you cannot reverse the direction using software. You need special ESCs which can do that.
thank you for your response. I have special ESCs as well but for that I'm trying to search the Arduino code about the direction of ESC but I could not be able to find it yet .. Will you please help me as I'm using the same code as you applied .. I want to move it in a clockwise and anti clockwise directions …
Dear Sir,
For a small project at school I saw your website about the brushless DC motor. My idea was to make the motor myself like on this website: https://www.thingiverse.com/thing:2375081
My question is: Would that be possible with a homemade engine? (Everything can be bought)
Thank you in advance!
I am not sure. You will still need an ESC which is compatible with the motor.
from esc to aurdinuo 14 pin why it is connected
That's the ground cable.
Can I connect the ESC with the BLDC motor without an Arduino?
Yes, but you won't be able to control them.
Hi, How to run sensored bldc motor of rating 5kw using aurdino controller
I think the one with sensors either have a local feedback loop to control the speed or bring out the pins which can be connected to the system to feedback.
How can I reverse the direction of the BLDC motor? What is the ESC controller required to reverse the direction of the BLDC motor 1105?
Reversing the direction is done by switching 2 cables going from the ESC to the motor. This is a manual method. You may have to check for ESCs out there which offer to switch direction as well.
Hallo, how can I control the brushless motor and esc via my iPhone Bluetooth ?
I have already Hm-10 bluetooth, but I need 1- the sketch of this project
2- and IOS App
Can anyone please help me ?
Yes, you can exchange data between the phone and the Arduino using the Bluetooth module. Use that data to write the speed.
More Comments