Blogroll

Powered by Blogger.

Saturday 29 March 2014

Control DC Motor Direction Using L293D Motor Driver and Arduino

by realfinetime  |  in Motor Driver at  23:23

L293D is a popular motor driver. It is special by its high current and voltage rating. Each L293D can be used to control two motors. Each side controls each motor. 1A and 2A is the control pins for motor M1. Similarly 3A and 4A is the control pins for motor  M2. Here, the circuit is demonstrated to control M1 only. Control pins are normally connected to Microcontrollers. I used Arduino to give control signals. Circuit Diagram is as shown in figure given below.


Direction of rotation as per the control signals is represented in the following table.

Program for clockwise rotation of motor.

int oneA = 13;
int twoA = 12;

void setup() {                
  pinMode(oneA, OUTPUT);      
  pinMode(twoA, OUTPUT);   
}

void loop() {
  digitalWrite(oneA, HIGH);   // 1A = 1
  digitalWrite(twoA, LOW);    // 2A = 0
  delay(1000);                       // wait for a second
}


Program for anticlockwise rotation of motor.

int oneA = 13;
int twoA = 12;

void setup() {                
  pinMode(oneA, OUTPUT);      
  pinMode(twoA, OUTPUT);   
}

void loop() {
  digitalWrite(oneA, LOW);     // 1A = 0
  digitalWrite(twoA, HIGH);    // 2A = 1
  delay(1000);                       // wait for a second
}

15 comments:

  1. Thanks, i will try this schematic for 2 motors.

    ReplyDelete
  2. This comment has been removed by the author.

    ReplyDelete
    Replies
    1. Hii You post a nice blog about Arduino Uno. You have good Explained of this Arduino Uno post .
      Thanks for sharing. https://robomart.com/arduino-uno

      Delete
  3. The information is meaningful and magnificent which is shared here aboutwebster oem motors

    ReplyDelete
  4. good post. I just stumbled upon your blog and wanted to say that I have really enjoyed reading your blog posts. I hope you post again soon. Big thanks for the useful info.Pto Generators For Sale Ireland

    ReplyDelete
  5. Great article by the great author, it is very massive and informative but still preaches the way to sounds like that it has some beautiful thoughts described so I really appreciate this article. Best Used Outboard motors for sale service provider.

    ReplyDelete
  6. I am very impressed with your post because this post is very beneficial for me and provide a new knowledge to me
    VideoPad Video Editor Crack
    Jihosoft File Recovery

    ReplyDelete
  7. So nice I am enjoying for that post as for u latest version of this Security tool Available
    wondershare dr.fone crack

    ReplyDelete
  8. Thank you a bunch for sharing this with all of us you actually realize what you are talking about! Bookmarked. Please also seek advice from my site =). We could have a hyperlink change contract between us! murata capacitor replacement

    ReplyDelete
  9. This comment has been removed by the author.

    ReplyDelete

IMPORTANT NOTICE

All the circuits, published in this blog is only after testing and getting proper results in my private lab. When you try these circuits, you should check the supply voltage, polarity of components, presence of childrens nearby and shorts in the circuits. This website will not be responsible for any harm happened to you or your components caused by your carelessness.

For More Electronic Tips



Proudly Powered by Blogger.