MG996R Metal Gear Servo Motor – 180° Rotation, 11 kg·cm High Torque

  1. Weight: 55g
  2. Dimension: 40.7×19.7×42.9mm
  3. Stall torque: 9.4kg/cm (4.8v); 11kg/cm (6.0v)
  4. Operating speed: 0.19sec/60degree (4.8v); 0.15sec/60degree (6.0v)
  5. Operating voltage: 4.8 ~ 6.6V
  6. Gear Type: Half-Metal gear
  7. Dead band width: 1us
  8. Wire length: 32cm

Apple Shopping Event

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

225,00 EGP

13 People watching this product now!

Payment Methods:

Description

TowerPro Servo Motors are optimum-quality and affordable cost servos.! They are suitable for a wide range of applications, including RC aircraft, automobiles, and robotics, Or just to have some fun with whatever crazy project you’re working on.

When you purchase TowerPro motors in India, they are almost usually NOT ORIGINAL, and these are no exception… These are NOT ORIGINAL Tower Pro Servos, either. However, they are dead cheap and Serve the purpose. We put them to the test and found them to be of good quality for the price.

Wire Description

  • Red – Positive
  • Brown – Negative
  • Orange – Signal

 


Features:

  1. Gear Type: Metal gear
  2. Servo Plug: JR (Fits JR and Futaba)
  3. Servo arms & screws included, and fit with Futaba servo arm
  4. It’s a universal “S” type connector that fits most receivers, including Futaba, JR, Hitec , GWS, Cirrus, Blue Bird, Blue Arrow, Corona, Berg, and Spektrum.
  5. CE & RoHS approved
  6. We have upgraded our servo gear set and shaft to aluminum 6061-T6. It is stronger and lighter than copper.

Package Includes:

1 x TowerPro MG996R Digital High Torque Servo Motor and Accessories Parts(as shown in the image)

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
MG996RSignal/VCC/GNDboard PWM-capable pin / 5-6V (separate supply recommended) / GND
📟
MG996R Metal Gear Servo Motor - 180 Rotation, 11 kg cm High Torque
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
MG996R Metal Gear Servo Motor - 180 Rotation, 11 kg cm High Torque - Arduino Uno
MG996R Metal Gear Servo Motor - 180 Rotation, 11 kg cm High Torque - Arduino Nano
MG996R Metal Gear Servo Motor - 180 Rotation, 11 kg cm High Torque - Arduino Mega
MG996R Metal Gear Servo Motor - 180 Rotation, 11 kg cm High Torque - ESP32
MG996R Metal Gear Servo Motor - 180 Rotation, 11 kg cm High Torque - ESP8266
MG996R Metal Gear Servo Motor - 180 Rotation, 11 kg cm High Torque - STM32
MG996R Metal Gear Servo Motor - 180 Rotation, 11 kg cm High Torque - Raspberry Pi Pico
📄 File: mg996r_metal_gear_servo_motor_-_180_rotation,_11_kg_cm_high_torque_-_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: mg996r_metal_gear_servo_motor_-_180_rotation,_11_kg_cm_high_torque_-_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: mg996r_metal_gear_servo_motor_-_180_rotation,_11_kg_cm_high_torque_-_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: mg996r_metal_gear_servo_motor_-_180_rotation,_11_kg_cm_high_torque_-_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: mg996r_metal_gear_servo_motor_-_180_rotation,_11_kg_cm_high_torque_-_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: mg996r_metal_gear_servo_motor_-_180_rotation,_11_kg_cm_high_torque_-_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: mg996r_metal_gear_servo_motor_-_180_rotation,_11_kg_cm_high_torque_-_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}
High-torque standard-size servo, 0-180 degree position control.

نظرة عامة ومواصفات المنتج — بالعربية

MG996R Metal Gear Servo Motor – 180° Rotation, 11 kg·cm High Torque متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Motors | Drivers | Pumps | Actuators وServo Motors، بسعر 225,00 EGP. كود المنتج لدينا: EK350. المنتج متوفر في المخزون وجاهز للشحن الفوري لكل محافظات مصر مع إمكانية الدفع عند الاستلام.

أهم المواصفات الفنية:

  • جهد التشغيل (فولت): 4.8 ~ 6.6
  • Temperature Range: 0- 55℃
  • Stall Torque 4 8V Kg Cm: 9.40
  • Stall Torque 6 6V Kg Cm: 11
  • Operating Speed 4 8V: 0.19sec/60°
  • Operating Speed 6 6V: 0.15sec/60°
  • Dead Bandwidth: 1uS
  • Gear Type: Half Metal

منتج أصلي بجودة مضمونة من إكوسترا، مع دعم فني ومتابعة بعد البيع لكل عملائنا في مصر.

تصفّح المزيد من Motors | Drivers | Pumps | Actuators في إكوسترا.

Specification

Specification

WeightWeight55,0000 g
Dimensions4 × 2 × 3,6 cm
operating-voltage-vdc4.8 ~ 6.6
temperature-range0- 55℃
stall-torque-4-8v-kg-cm9.40
stall-torque-6-6v-kg-cm11
operating-speed-4-8v0.19sec/60°
operating-speed-6-6v0.15sec/60°
dead-bandwidth1uS
gear-typeHalf Metal
no-of-teeth25
angle0~180°

Customer Reviews