Skip to main content

200 Rpm DC Motor Working

                200 Rpm DC Motor Working And Arduino Connection


               Basically a Motor is an device which converts an Electrical energy into Mechanical energy,where in case of Generator it converts the Mechanical energy into the Electrical energy.Basically a motor works under the principle of FARADAYS law who Invented the Motors in 1831.He is one of famous scientist in the history whose invention made an great Revolution.

               According to in invention whenever an conductor placed in Magnetic field an EMF is produced it is known as the Induced Emf as with that principle Motors are invented.
                                      
                                                                        Faraday motor       


              RPM generally defined as the REVOLUTION PER MINUTE where the revolution depends on the motors.Generally various RPM motors are available such that 10,30,100,200.The 200 Rpm motor is which gives the 200 revolution per minute and an equal torque it is operated from 4v from its given input voltage the Rpm may differ.The 200 rpm is produced at its maximum voltage.

                                             Thus in same case for arduino the speed and it can be controlled via motor shield and i have given the test code below

Interior section:


             


Arduino code:


#define DC_MOTOR_PIN 2//NBSL COMMERCIAL
void setup() {
 
  pinMode( DC_MOTOR_PIN, OUTPUT );
}
void loop() {
  Serial.begin(9600);
  digitalWrite( DC_MOTOR_PIN, HIGH );//motor runs
   Serial.println("Motor runs");
  delay(2000);
  digitalWrite( DC_MOTOR_PIN, LOW );//motor stops
   Serial.println("Motor stop");
  delay(2000);
   digitalWrite( DC_MOTOR_PIN, HIGH );//again motor runs
   Serial.println("Going again");
 
}

CHECK HOW IS IT WORK:


                



                                                    POWERED BY
                                                            NBSL

Comments

  1. This comment has been removed by a blog administrator.

    ReplyDelete

Post a Comment

Popular posts from this blog

SOIL MOISTURE SENSOR USING ARDUINO WITH CONNECTION AND CODE

SOIL MOISTURE SENSOR USING ARDUINO WITH CONNECTION AND CODE Soil moisture sensor is the sensing element which determine the volumetric amount of water in the soil .The sensor sense the amount of water by passing an minute voltage at its terminal .Then when the water presence is detected it send an minute voltage to the amplifying circuit and it is further amplified and send to the Arduino. Components Required:                       1) Arduino                       2) Soil Moisture sensor                       3) Led                       4) Connecting wires...

India Space Research

INDIAN SPACE RESEARCH                                      The Technology is developing day by day and new innovations are coming out day by day. Many things are runs with help of satellites for example TV receiver, Weather Forecasting, Global positioning systems(GPS), Defense purposes. Thus Aerospace development is very important for an country. INDIA , places 5 th place in space developments. The ISRO is the Indian organization of space research Developments. What is ISRO? ISRO expands as Indian Space Research Organization, which is the Indian space Development organization. ISRO Ranks 5 th place in space research. Who founded ISRO?  Indian Space Research Organization (ISRO) was founded by Jawaharlal Nehru, who is the First Prime Minister of INDIA and Scientist Vikram Sarabhai, who is known as the father of space programs in the year 1962 as Indian National Com...

How does ant walk in straight line

How does ant walk in straight line? Normally, Ants live as big colony and it is organized. When the ant found food it takes a small piece of food and returns to its colony, while returning from the food area to its colony ant releases chemical called pheromones with the help of pheromones  other ants in their colony goes to the food area and brings the food to their colony. The pheromones evaporates at certain time of interval so other ants which carry food also releases pheromones it helps in reaching of other ants from colony to reach food. Every each set of ant consists of unique set of pheromones so it helps to find other colony and its does not allow other colony ant to enter in their colony and even it attacks them. How does old book smell good? Smell of book is basically by the paper and ink and the paper is primarily made up of wood and the wood is made up of cellulose and lignin . Over years, the book is exposed to heat, light, moisture and it bega...