Skip to product information

MG90S Metal Gear Servo
Sale price
R 45.98 ZAR
Regular price
R 66.78 ZAR
The MG90S Metal Gear Servo offers precise control with its durable metal gears, ensuring reliable performance and extended lifespan in demanding applications. Its compact size and high torque make it ideal for robotics, RC vehicles, and automation projects requiring consistent, expert-level actuation.
Pickup currently not available

PRODUCT INFORMATION
Specifications
Spec | Value |
---|---|
Torque (kg @ 4.8V) | 1.8 |
Speed (sec/60°) | 0.1 |
Spline Count | 20 |
Operating Voltage (V DC) | 4.8 to 6 |
Weight | 13.4g |
Dimensions | 22.8 x 12.2 x 28.5mm |
#include <Servo.h> // Include the Servo library |
Servo myServo; // Create a Servo object |
void setup() { |
myServo.attach(9); // Attach the servo to pin 9 (change to your pin) |
} |
void loop() { |
myServo.write(0); // Move the servo to 0 degrees |
delay(1000); // Wait 1 second |
myServo.write(90); // Move the servo to 90 degrees |
delay(1000); // Wait 1 second |
myServo.write(180); // Move the servo to 180 degrees |
delay(1000); // Wait 1 second |
} |