200 Rpm DC Motor Working And Arduino Connection
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.
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
This comment has been removed by a blog administrator.
ReplyDelete