© Copyright 2026. All Rights Reserved
Servo motors are high torque motors that are commonly used in robotics and several other applications due to the fact that it is easy to control their rotation. Servo motors have a geared output shaft, which can be electrically controlled to turn one (1) degree at a time. For the sake of control, unlike normal DC motors, servo motors usually have additional pin asides the two power pins (Vcc and GND), which is the signal pin. The signal pin is used to control the servo motor, turning its shaft to any desired angle.The TowerPro Servo Motor SG-90 is lightweight, high-quality, and lightning-fast.
The servo is designed to work with almost all the radio control systems. It is with excellent performance that brings you to another horizon of flight. The Servo Motor SG-90 mini servo with accessories is perfect for Remote controlled helicopter, plane, car, boat, and truck use.
SG-90Servo Motor SG-90 Working:


#include <Servo.h>
Servo servo;
int angle = 10;
void setup() {
servo.attach(8);
servo.write(angle);
}
void loop()
{
// scan from 0 to 180 degrees
for(angle = 10; angle < 180; angle++)
{
servo.write(angle);
delay(15);
}
// now scan back from 180 to 0 degrees
for(angle = 180; angle > 10; angle--)
{
servo.write(angle);
delay(15);
}
}
1 x TowerPro Servo Motor SG-90