Servo Motor Micro MG90S

Micro size 180 degree analog servo with metal gears DESCRIPTION The Servo Motor Micro MG90S is a...
Vendor: Keszoox
$5.49
$7.49
$5.49

Shipping

The shipping fee depends on your address

Standard: 9-15 business days,fee is down to $3.99

Express: 4-7 business days,fee is down to $5.99

Support Customization

WE'RE READY TO BUILD A CUSTOM PRODUCT FOR YOU.

If you're looking for a custom product, we can help. Kindly contact us via email support@keszoox.com and send us the details for your need, then we'll let you know how we can deliver the right solution.

Built And process your order

We make into production usually Within 1 - 3 Bussiness Days.

Expect customization orders.
Servo Motor Micro MG90S

Servo Motor Micro MG90S

$7.49 $5.49

Servo Motor Micro MG90S

$7.49 $5.49

Micro size 180 degree analog servo with metal gears

DESCRIPTION

The Servo Motor Micro MG90S is a micro size 180 degree analog servo with metal gears and robust construction.

PACKAGE INCLUDES:

  • 1 MG90S Servo motor with attached 9.5″ control cable
  • 3 arms/horns for various interface applications
  • Screws for mounting arms to the servo and mounting the servo

KEY FEATURES OF SERVO MOTOR MICRO MG90S:

  • Very small micro size
  • Fairly strong, can lift 3.75lb positioned 1 cm from center of shaft
  • 180 degree rotation
  • Sturdy metal gears
  • Analog drive

The MG90S Servo motor is an upgrade over the very common and inexpensive SG90 in that it adds metal gears, a little better torque and overall more robust construction.

These work well for basic servo experimentation and can be used in applications where small size is a virtue and that don’t require a huge amount of torque, but they are still pretty strong.

Servo motors can be commanded to go to a specific position and so are the usual go-to motor when accurate positioning is needed, such as for turning the front wheels on an RC model for steering or pivoting a sensor to look around on a robotic vehicle.

Servo motors are comprised of a DC motor, gears, a potentiometer to determine its position and a small electronic control board.

Standard servos have a specified limited range.  This is usually specified as 180 degrees.  Frequently the actual range is not quite the full 180 degrees and is limited by the mechanical gears and potentiometer used for position sensing that is contained in the device.  If the motor is run all the way to 0 or 180, it may start making unhappy sounds and start vibrating as it tries to drive to a position that it cannot get to.  This causes a high stall current condition and has the potential of stripping gears and damaging the motor, so it is best to either drive it to a safely reduced range such as 20-160 or experiment a bit to determine the actual usable range if you want to maximize the range.

Servos expect to see a pulse on their PWM pin every 20mSec.  The pulse is active HIGH and the width of the pulse determines the position (angle) of the servos shaft.  The pulse can vary between 1mSec and 2mSec.  A 1mSec pulse positions the shaft at 0 degrees.  A 1.5mSec pulse positions the shaft at 90 degrees (centered in its range).  A 2mSec pulse positions the shaft at 180 degrees.  Pulses with values between these can be used to position the shaft arbitrarily.

Motor Connections

The built-in cable has a 3-pin female connector that is usually mated with a male header.

1×3 Female Connector

  • Brown = Ground
  • Red = 5V
  • Orange = PWM Signal

OUR EVALUATION RESULTS:

In our testing these servos can lift about 3.75 lbs that is positioned on an arm 1 cm out from the shaft , so they are actually fairly strong little motors.  We also didn’t have any issues with the gears when pushed to their max.

The servo runs on 5V with a current draw about 10mA at idle and 120mA to 250mA when being commanded to move depending on how it is being operated.  Current draw can get up to a maximum of 700mA under a stall condition.  One MG90S can typically be driven off the 5V power pin of an Arduino when experimenting as long as you don’t stall the motor, but motors in general are electrically noisy and power hungry devices.  It is always better to drive them directly off of a separate power supply rather than trying to power from the on-board Arduino regulator whenever possible

If you do decide to run it directly off the Arduino, you can help avoid most problems by running the power and ground from the Arduino over to a breadboard and then to the servo.  By placing a fairly large electrolytic cap of around 470-1000uF across the power and ground on the breadboard, that will help to insulate the Arduino from some of the power surges of the motor.

The program below can be used to exercise a servo motor by using a potentiometer to set the position of the servo.  This setup can also be used to determine the limits of the servos range by running the servo near its end-points and observing where it mechanically stops relative to the position command that is being issued.  The constants MIN_VALUE and MAX_VALUE are used to set the 2 end-points in the program below.

Servo Motor Micro MG90S Test Program

/*
  Exercise Servo motor
  Use a potentiometer on pin A0 to command a servo attached to pin 9 to move to
  a specific position.  The Servo MIN_VALUE and MAX_VALUE can be adjusted to 
  avoid hitting the servo stops
  Uses built-in Servo.h library
*/
#include "Servo.h"
#define SERVO_PIN 9   // Can use any PWM pin
#define POT_PIN A0    // Can use any analog pin
#define MIN_VALUE 0   // Minimum Servo position
#define MAX_VALUE 180 // Maximum Servo position

Servo servo;          // creates servo object used to control the servo motor
int value_pot = 0;    // Current value of the potentiometer
int value_servo = 0;  // Current servo position
int value_servo_old = 0; // Used to hold old servo value to look for change.
//===============================================================================
//  Initialization
//===============================================================================
void setup()
{
  servo.attach(SERVO_PIN); // assigns PWM pin to the servo object
  Serial.begin (9600);     // Set Serial Monitor window comm speed
}
//===============================================================================
//  Main
//===============================================================================
void loop()
{
  value_pot = analogRead(POT_PIN); // Reads value of the potentiometer. Return value = 0 to 1023
  value_servo = map(value_pot, 0, 1023, MIN_VALUE, MAX_VALUE); // remap pot value to servo value
  if (value_servo != value_servo_old) {   // Only do something if there's a change in the servo position
    servo.write(value_servo);        // Update servo position
    Serial.print("Pot Value: ");  // Update Serial Monitor window with what's going on
    Serial.print(value_pot);
    Serial.print("tServo Value: ");
    Serial.println(value_servo);
    value_servo_old = value_servo;
    delay(25); // give servo time to move
  }
}

BEFORE THEY ARE SHIPPED, THESE SERVO MOTORS ARE:

  • Inspected
  • Basic operation of servo motor verified
  • Repackaged for safe storage.

Notes: 

  1. None

TECHNICAL SPECIFICATIONS

Motor Model Generic MG90S (China)
Drive Type Analog
Degree Rotation 180° (±15°)
Operating Ratings
Voltage 4.8-6 VDC  (5V Typical)
Current (idle) 10mA (typical)
Current (typical during movement) 120-250mA
Current (stall) 700mA (measured)
Stall Torque 2.2kg-cm (per spec)
Speed 0.12s / 60 degree (varies with VDC)
Dimensions
 Cable Length  24cm  (9.5″)
 Motor Housing L x W x H 23 x 12 x 26mm (0.9 x0 .5 x  1″)
 Motor Height (w/ shaft) 32mm (1.26″)
Motor Housing Width with Mounting Ears 32mm (1.26″)

 

WE'RE READY TO BUILD A CUSTOM PRODUCT FOR YOU.

Contact us:
Support@keszoox.com
What we can help:
If you're looking for a wire or cable assembly, we can help.
What we need your help next:
Kindly contact us via email support@keszoox.com and send us the details fo your need, then we'll let you know how we can deliver the right solution.

Shipping Policy

All orders are dispatched from our warehouse. The shipments are fully tracked—from our door to yours. Please allow 3-5 business days for your order to be processed in addition to the shipping times below.

Shipping Times

Standard: 9-15 business days. Express: 4-7 business days.

Please note that shipping providers are extremely busy during this time, and some orders might experience a delay on top of usual delivery times. If your order is late, please allow 5-10 days more than indicated in standard shipping times before contacting our customer service. Thank you for your understanding.

Tracking

All orders are 100% tracked. You’ll receive an email with a tracking number and a link to track your parcel once your order leaves our warehouse. Please allow 24-48 hours for the tracking link to start showing shipping information.

Related Products

Recently Viewed Products