hIOTron
Created August 12, 2021 © GPL3+

Servo Motor Control with Arduino Due

In this project, we will see how to control servo motor with Arduino due

Servo Motor Control with Arduino Due

Things used in this project

Hardware components

Arduino Due
Arduino Due
×1
SG90 Micro-servo motor
SG90 Micro-servo motor
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Code

Run a Program

Arduino
#include <Servo.h>

Servo myservo;                 // providing a name

int angle = 0;                     // variable to store the servo position

void setup() {
  myservo.attach(2);        // attaches the servo on pin 2 to the servo object
}

void loop() {
  for (angle = 0; angle <= 180; angle += 1) {     // goes from 0 degrees to 180 degrees, in steps of 1 degree
    myservo.write(angle);                                     // tell servo to go to position in variable 'angle'
    delay(15);                                                        // waits 15ms for the servo to reach the position
  }
  for (angle = 180; angle >= 0; angle -= 1) {     // goes from 180 degrees to 0 degrees
    myservo.write(angle);              
    delay(15);                                                       // waits 15ms for the servo to reach the position
  }
}

Credits

hIOTron
78 projects • 2 followers
hIOTron is an internet of things based company that offers an IoT Platform, products, IoT Solutions, and IoT Training.
Contact

Comments

Please log in or sign up to comment.