MG90S Mini Digital 180 Degree Servo 2.2kg

  • 180° rotation with digital precision
  • High torque and fast response
  • Excellent holding power
  • Compact and durable plastic case
  • Dust- and splash-resistant
  • Standard JR plug (Futaba compatible)

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

Original price was: 180,00 EGP.Current price is: 160,00 EGP.

8 People watching this product now!

Payment Methods:

Description

The Towerpro MG90S Mini Digital Servo is 180° rotation servo. It is a Digital Servo Motor which receives and processes PWM signal faster and better. It equips sophisticated internal circuitry that provides good torque, holding power, and faster updates in response to external forces.

The good optimized performance and reliability of our servos have made them the favorite choice of many RC hobbyists.

They are packed within a tight sturdy plastic case which makes them water and dust resistant which is a very useful feature in RC planes, Boats, and RC Monster Trucks etc. It equips 3-wire JR servo plug which is compatible with Futaba connectors too.

Wire Description

RED Positive

Brown – Negative

Orange Signal


Features : 

  1. High resolution
  2. Accurate positioning
  3. Fast control response
  4. Constant torque throughout the servo travel range
  5. Excellent holding power

Package Includes : 

1 x Towerpro MG90S Mini Digital 180 Degree Servo

Set of Horns

  1. One Point
  2. Two Point
  3. Four Point

1 x Set of Screws

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
MG90SSignal/VCC/GNDboard PWM-capable pin / 5V / GND
📟
MG90S Mini Digital 180 Degree Servo 2.2kg
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
MG90S Mini Digital 180 Degree Servo 2.2kg - Arduino Uno
MG90S Mini Digital 180 Degree Servo 2.2kg - Arduino Nano
MG90S Mini Digital 180 Degree Servo 2.2kg - Arduino Mega
MG90S Mini Digital 180 Degree Servo 2.2kg - ESP32
MG90S Mini Digital 180 Degree Servo 2.2kg - ESP8266
MG90S Mini Digital 180 Degree Servo 2.2kg - STM32
MG90S Mini Digital 180 Degree Servo 2.2kg - Raspberry Pi Pico
📄 File: mg90s_mini_digital_180_degree_servo_2.2kg_-_arduino_uno.inoArduino Uno
567 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 9 on Arduino Uno. Power the servo from a separate 5V supply for anything beyond a single small SG90 - a board's own 5V pin can't supply a servo's stall current.
6#include <Servo.h>
7
8Servo myServo;
9#define SERVO_PIN 9
10
11void setup() {
12 Serial.begin(115200);
13 myServo.attach(SERVO_PIN);
14}
15
16void loop() {
17 for (int angle = 0; angle <= 180; angle += 5) {
18 myServo.write(angle);
19 delay(20);
20 }
21 for (int angle = 180; angle >= 0; angle -= 5) {
22 myServo.write(angle);
23 delay(20);
24 }
25}
📄 File: mg90s_mini_digital_180_degree_servo_2.2kg_-_arduino_nano.inoArduino Nano
568 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 9 on Arduino Nano. Power the servo from a separate 5V supply for anything beyond a single small SG90 - a board's own 5V pin can't supply a servo's stall current.
6#include <Servo.h>
7
8Servo myServo;
9#define SERVO_PIN 9
10
11void setup() {
12 Serial.begin(115200);
13 myServo.attach(SERVO_PIN);
14}
15
16void loop() {
17 for (int angle = 0; angle <= 180; angle += 5) {
18 myServo.write(angle);
19 delay(20);
20 }
21 for (int angle = 180; angle >= 0; angle -= 5) {
22 myServo.write(angle);
23 delay(20);
24 }
25}
📄 File: mg90s_mini_digital_180_degree_servo_2.2kg_-_arduino_mega.inoArduino Mega
568 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 9 on Arduino Mega. Power the servo from a separate 5V supply for anything beyond a single small SG90 - a board's own 5V pin can't supply a servo's stall current.
6#include <Servo.h>
7
8Servo myServo;
9#define SERVO_PIN 9
10
11void setup() {
12 Serial.begin(115200);
13 myServo.attach(SERVO_PIN);
14}
15
16void loop() {
17 for (int angle = 0; angle <= 180; angle += 5) {
18 myServo.write(angle);
19 delay(20);
20 }
21 for (int angle = 180; angle >= 0; angle -= 5) {
22 myServo.write(angle);
23 delay(20);
24 }
25}
📄 File: mg90s_mini_digital_180_degree_servo_2.2kg_-_esp32.inoESP32
563 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 25 on ESP32. Power the servo from a separate 5V supply for anything beyond a single small SG90 - a board's own 5V pin can't supply a servo's stall current.
6#include <Servo.h>
7
8Servo myServo;
9#define SERVO_PIN 25
10
11void setup() {
12 Serial.begin(115200);
13 myServo.attach(SERVO_PIN);
14}
15
16void loop() {
17 for (int angle = 0; angle <= 180; angle += 5) {
18 myServo.write(angle);
19 delay(20);
20 }
21 for (int angle = 180; angle >= 0; angle -= 5) {
22 myServo.write(angle);
23 delay(20);
24 }
25}
📄 File: mg90s_mini_digital_180_degree_servo_2.2kg_-_esp8266.inoESP8266
565 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin D1 on ESP8266. Power the servo from a separate 5V supply for anything beyond a single small SG90 - a board's own 5V pin can't supply a servo's stall current.
6#include <Servo.h>
7
8Servo myServo;
9#define SERVO_PIN D1
10
11void setup() {
12 Serial.begin(115200);
13 myServo.attach(SERVO_PIN);
14}
15
16void loop() {
17 for (int angle = 0; angle <= 180; angle += 5) {
18 myServo.write(angle);
19 delay(20);
20 }
21 for (int angle = 180; angle >= 0; angle -= 5) {
22 myServo.write(angle);
23 delay(20);
24 }
25}
📄 File: mg90s_mini_digital_180_degree_servo_2.2kg_-_stm32.inoSTM32
565 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin PA8 on STM32. Power the servo from a separate 5V supply for anything beyond a single small SG90 - a board's own 5V pin can't supply a servo's stall current.
6#include <Servo.h>
7
8Servo myServo;
9#define SERVO_PIN PA8
10
11void setup() {
12 Serial.begin(115200);
13 myServo.attach(SERVO_PIN);
14}
15
16void loop() {
17 for (int angle = 0; angle <= 180; angle += 5) {
18 myServo.write(angle);
19 delay(20);
20 }
21 for (int angle = 180; angle >= 0; angle -= 5) {
22 myServo.write(angle);
23 delay(20);
24 }
25}
📄 File: mg90s_mini_digital_180_degree_servo_2.2kg_-_raspberry_pi_pico.inoRaspberry Pi Pico
575 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 15 on Raspberry Pi Pico. Power the servo from a separate 5V supply for anything beyond a single small SG90 - a board's own 5V pin can't supply a servo's stall current.
6#include <Servo.h>
7
8Servo myServo;
9#define SERVO_PIN 15
10
11void setup() {
12 Serial.begin(115200);
13 myServo.attach(SERVO_PIN);
14}
15
16void loop() {
17 for (int angle = 0; angle <= 180; angle += 5) {
18 myServo.write(angle);
19 delay(20);
20 }
21 for (int angle = 180; angle >= 0; angle -= 5) {
22 myServo.write(angle);
23 delay(20);
24 }
25}
Digital micro servo, higher torque than SG90, 0-180 degree position control.

Specification

Specification

WeightWeight20 g
Dimensions3 × 1,5 × 3 cm
TypeMini Digital Servo
Rotation180°
Torque2.2 kg·cm
Operating Voltage4.8–6V DC
MaterialMetal gears & plastic body
UsageRobotics, RC cars/planes, DIY projects, automation

Customer Reviews