• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
You are here:Home » Arduino 3V Motor Control : Level I Advanced Speed Variation

By Abhishek Ghosh September 17, 2015 7:40 am Updated on September 17, 2015

Arduino 3V Motor Control : Level I Advanced Speed Variation

Advertisement

This is a bit advanced guide. Arduino 3V Motor Control Level I Advanced Speed Variation is Second Hard Level Guide Where Diode, Transistor and Resister Has Been Used. We have the first guide – Arduino Basic 3V Motor Control. If you open your Arduino GUI application, under Tools dropdown menu, you will get “Serial Monitor” as option. We will use that Serial Monitor Window to input an arbitrary value from 0 to 255 and hit return key to give Arduino the signal that we need that value’s speed. Zero means stop. Here is a video of the end result, it is basically a screencast. It is showing an attached camera monitoring the motor in my hand (with cigarette packet’s part as fake blade) and on the Serial Monitor, I am changing the value :

Around the value of 63, there is braking like action for the given load to the motor. If it was a robotic wheel, I had to adjust this value of 63 to as closer to zero as possible. Instead of 0 to 255 points, I could use 0 to 190 for near perfect braking action and stop. With good amount of load, 0 to 255 will towards 0 to 100.

 

Level I Advanced Arduino 3V Motor Control : Things You Need and Must Know

 

This is actually not perfect way for 3V motor control, this is usually for who can never move their 3V motor digitally. We are providing 100% warranty that this guide will help you to control the rotational speed for any 3V DC Motor.

Advertisement

---

You should have a 3V DC motor, an Arduino UNO board, few Jumper Wires, a breadboard, a multimeter, a transistor (we used 2N 2222 in the video, any general purpose transistor will work), a diode (you can use a LED if you do not have diode) and as 220 Ohm resister. You can add another resistor as pull down resister of 10K Ohm value to the GND before it enters the Arduino board.

Other websites will say to buy specific numbered transistor (or force to buy TIPS) and diode. For so much basic work, nothing specific needed. Arduino is not hugely popular among the real embedded enthusiast and experts for many reasons, many websites took that advantage and made money.

 

Arduino 3V Motor Control : Circuit and Code

 

Third pin has a ~ sign, that means it can perform both analog and digital stuffs.
Here is the Circuit, we have marked the points where you should check using a multimeter :

Arduino 3V Motor Control Speed Variation

Look at the diagram to understand what is happening. We are applying 3.3V from Arduino board – that is external power supply for the motor. That electricity can not back flow towards the transistor as we have added a diode – diode is like oneway valve plus there is a 10K Ohm pull down resister.

We have project on Fritzing for this Arduino 3V Motor Control. You can download the circuit diagram and code from there ( read the instruction there before downloading ). The code was shared on Adafruit.

Here is code too :

Vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
int motorPin = 3;
void setup()
{
  pinMode(motorPin, OUTPUT);
  Serial.begin(9600);
  while (! Serial);
  Serial.println("Input For Speed Control a Value 0 to 255 and Hit Enter Key");
}
void loop()
{
  if (Serial.available())
  {
    int speed = Serial.parseInt();
    if (speed >= 0 && speed <= 255)
    {
      analogWrite(motorPin, speed);
    }
  }
}

Unidirectional speed but we made it to vary. We are explaining the coding part –

int motorPin = 3 – initialize a thing named motorPin at digital 3rd pin.
void setup() – dear microprocessor, first read this instruction for this setup.
pinMode(motorPin, OUTPUT) – the defined motorPin thing is the output.
Serial.begin(9600) – begin to process from Serial Monitor at 9600 baud.
while (! Serial) – condition.
Serial.println("Input ... Key") – Print “Input For Speed Control a Value 0 to 255 and Hit Enter Key” in the Serial Monitor.
void loop() – dear microprocessor, read this instruction for this setup to repeat.
if (Serial.available()) – check whether Serial Monitor is available.
int speed = Serial.parseInt() – get the speed what the human gives as input in Serial Monitor.
if (speed >= 0 && speed <= 255) - if the human gives a value as input in Serial Monitor between 0 to 255 then do the next action else do nothing.
analogWrite(motorPin, speed) - send current if the condition is true for the thing named motorPin at digital 3rd pin.

 

Arduino Advanced 3V Motor Control : Steps and Tips

 

Obviously you know how to create the circuit and how to upload the code. Do not connect the motor first - instead add multimeter there to measure the voltage output. The output will be like - 3.21 to 1.50 depending your input value via Serial Monitor, now add the motor.

3V Motor may not rotate due to need of higher frequency or some extra power to overcome the inertia. For that reason, in the video we have gave the motor a higher spin first then lowered the value - kind of first gear!

There will be back flow of 0.01V electricity towards the Arduino board - measure with multimeter. We nulled it with a 10K Ohm resister.

 

Arduino Advanced 3V Motor Control : Whats Next?

 

It is great that you can do it. But you should work with the code. Change the coding part and try to start with input value and slowdown to x value after y seconds.

So, that small part of the breadboard is a small circuit with 3 inputs and 2 outputs. You can actually make it a 1" x 1" PCB as basic motor controller.

Tagged With 3v motor controller , control motor 3v arduino , 3v electric motor control speed arduino , pinMode(motorPin OUTPUT); Serial being(9600); , https://yandex ru/clck/jsredir?from=yandex ru;search;web;;&text=&etext=1835 IbEp6TjxxUBL-vx9SE8e-r62rwBceAhD_aA-BGVAmV2xRMI2za4ja7F5nR0w7SfD 6d45344bb71f289c0602ad04c24549fd54969b86&uuid=&state=_BLhILn4SxNIvvL0W45KSic66uCIg23qh8iRG98qeIXme , controlador digital 3V DC , control 3v ckt by transistor , arduino motor diode , arduino electric motor 3v data sheet , 3v motor control
Facebook Twitter Pinterest

Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to Arduino 3V Motor Control : Level I Advanced Speed Variation

  • Nginx WordPress Installation Guide (All Steps)

    This is a Full Nginx WordPress Installation Guide With All the Steps, Including Some Optimization and Setup Which is Compatible With WordPress DOT ORG Example Settings For Nginx.

  • Arduino 3V DC Motor Control : Transistor, IC & More

    Here is a Detailed Guide on Arduino 3V DC Motor Control To Have a Basic Idea On Control With Transistor, IC etc. This is Basic of Robotics.

  • Arduino With DHT 11 Sensor and Arduino Online IDE : Basic IoT

    Arduino With DHT 11 Sensor and Arduino Online IDE is Example of Basic IoT Which Needs No Special Hardware But Arduino, DHT11, Internet Connection & Web Browser.

  • WordPress & PHP : Different AdSense Units on Mobile Devices

    Here is How To Serve Different AdSense Units on Mobile Devices on WordPress With PHP. WordPress Has Function Which Can Be Used In Free Way.

performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us

Subscribe To Our Free Newsletter

Get new posts by email:

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (24.3K Followers)
  • Twitter (5.8k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • Hybrid Multi-Cloud Environments Are Becoming UbiquitousJuly 12, 2023
  • Data Protection on the InternetJuly 12, 2023
  • Basics of BJT TransistorJuly 11, 2023
  • What is Confidential Computing?July 11, 2023
  • How a MOSFET WorksJuly 10, 2023
PC users can consult Corrine Chorney for Security.

Want to know more about us?

Read Notability and Mentions & Our Setup.

Copyright © 2023 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy