(inc GST)
The MG90S Metal Gear Micro Servo is a high-performance, precision-engineered servo motor designed for a wide range of applications, from robotics and RC vehicles to model airplanes and DIY projects. This compact yet powerful servo is a popular choice among hobbyists and engineers alike, thanks to its exceptional durability, precise control, and versatility.
Key Features:
-
Metal Gear Construction: The MG90S servo features an all-metal gear train, making it incredibly durable and resistant to wear and tear. This ensures consistent performance even under heavy loads and challenging conditions.
-
High Torque: Despite its compact size, this servo packs a punch with its high torque output. With a torque rating of up to 2.2 kg/cm (30 oz/in), it can handle demanding tasks effortlessly.
-
High Precision: The MG90S servo offers precise and smooth movement, with a resolution of 10μs (microseconds). This level of accuracy allows for fine control of your projects, whether you're steering a remote-controlled car or adjusting the angle of a camera.
-
Wide Operating Voltage Range: It operates efficiently across a wide voltage range, from 4.8V to 6.0V, making it compatible with various power sources, including standard AA batteries, LiPo batteries, and more.
-
Plug-and-Play Compatibility: This servo comes with standard 3-pin connectors, making it easy to connect to most popular servo controllers and microcontrollers, such as Arduino and Raspberry Pi.
-
Compact and Lightweight: With its compact dimensions and lightweight design (approximately 13 grams), the MG90S servo is easy to integrate into your projects without adding excessive weight or bulk.
-
Versatile Applications: The MG90S servo is suitable for a wide range of applications, including robotics, remote-controlled vehicles, model airplanes, animatronics, camera gimbals, and various other DIY projects where precise motion control is required.
-
Reliable and Long-lasting: Designed for long-term use, this servo has a high-quality potentiometer, ball-bearing construction, and durable metal gears that ensure it can withstand continuous use without compromising performance.
-
Affordable: The MG90S offers excellent value for its price, making it a cost-effective choice for both beginners and experienced hobbyists and engineers.
Whether you're building a robotic arm, an autonomous drone, or enhancing the functionality of your remote-controlled models, the MG90S Metal Gear Micro Servo is a dependable choice that delivers exceptional performance and precision. Its rugged construction, high torque, and compatibility with various platforms make it an ideal choice for a wide range of applications, helping you bring your projects to life with ease.
Package Included:
1 x MG90S servo
Technical | |
Operating Voltage | 4.8-6.0V |
Speed | 0.1sec/60degree(4.8v), 0.08sec/60degree(6v) |
Torque | 1.8kg/cm(4.8V ),2.2kg/cm(6V) |
Weight | 13.4g |
Dimensions (LxWxH) | 22.8 x 12.2 x 28.5mm |
Motor | |
Motor Type | coreless motor |
Ask a Question about MG90S Metal Gear Micro Servo For RC Model
-
Yes, You can claim GST credit if you have a GST number. To do it you have to mention the GST number at the time of checkout. GST option appears in the Billing Address. If you are an existing customer of flyrobo then you can log in to your account ( Account → Address Book → Edit Address) and Then enter your GST number.FlyRobo[ 16/11/2022 ]
-
#include
Servo myservo; // create servo object to control a servo // twelve servo objects can be created on most boards int pos = 0; // variable to store the servo position void setup() { myservo.attach(9); // attaches the servo on pin 9 to the servo object } void loop() { for (pos = 0; pos <= 180; pos += 1) { // goes from 0 degrees to 180 degrees // in steps of 1 degree myservo.write(pos); // tell servo to go to position in variable 'pos' delay(15); // waits 15 ms for the servo to reach the position } for (pos = 180; pos >= 0; pos -= 1) { // goes from 180 degrees to 0 degrees myservo.write(pos); // tell servo to go to position in variable 'pos' delay(15); // waits 15 ms for the servo to reach the position } } FlyRobo[ 16/12/2021 ]