Components Used:
Arduino UNO
Servo Motor
Jumper wires
Theory
Servo Motor : A Servo motor is a rotary actuator or motor that allows for a precise control in terms of angular position,acceleration and velocity,capabilities that a regular motor does not have.It makes use of a regular motor and pairs it with a sensor for position feedback.
Connections:
Code :
// Include the Servo library #include <Servo.h> // Declare the Servo pin int servoPin = 3; // Create a servo object Servo Servo1; void setup() { // We need to attach the servo to the used pin number Servo1.attach(servoPin); } void loop(){ // Make servo go to 0 degrees Servo1.write(0); delay(1000); // Make servo go to 90 degrees Servo1.write(90); delay(1000); // Make servo go to 180 degrees Servo1.write(180); delay(1000); }
//Any Issue feel free to comment