MG996R 360° Continuous Rotation Servo Motor – 11 kg·cm High Torque, Metal Gears

  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: 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%

230,00 EGP

7 People watching this product now!

Payment Methods:

Description

This High-Torque MG996R Digital Servo features metal gearing resulting in extra high 10kg stalling torque in a tiny package. The MG996R is essentially an upgraded version of the famous MG995 servo, and features upgraded shock-proofing and a redesigned PCB and IC control system that make it much more accurate than its predecessor.

The gearing and motor have also been upgraded to improve dead bandwidth and centering. The unit comes complete with 30cm wire and 3 pin ‘S’ type female header connector that fits most receivers, including Futaba, JR, GWS, Cirrus, Blue Bird, Blue Arrow, Corona, Berg, Spektrum, and Hitec.

This high-torque standard servo can rotate approximately 120 degrees (60 in each direction). You can use any servo code, hardware, or library to control these servos, so it’s great for beginners who want to make stuff move without building a motor controller with feedback & gear box, especially since it will fit in small places. The MG996R Metal Gear Servo also comes with a selection of arms and hardware to get you set up nice and fast!

Specifications

  • Weight: 55 g
  • Dimension: 40.7 x 19.7 x 42.9 mm approx.
  • Stall torque: 9.4 kgf·cm (4.8 V ), 11 kgf·cm (6 V)
  • Operating speed: 0.17 s/60º (4.8 V), 0.14 s/60º (6 V)
  • Rotation Angle: 120deg. (+- 60 from center)
  • Operating voltage: 4.8 V to 6 V
  • Running Current 500 mA
  • Stall Current 2.5 A (6V)
  • Dead band width: 5 µs
  • Stable and shockproof double ball bearing design
  • Metal Gears for longer life
  • Temperature range: 0 ºC – 55 ºC

Connection :

  • Orange: PWM
  • Red: VCC
  • Brown: GND
🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
MG996R (360)Signal/VCC/GNDboard PWM-capable pin / 5-6V / GND
📟
MG996R 360 Continuous Rotation Servo Motor - 11 kg cm High Torque
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
MG996R 360 Continuous Rotation Servo Motor - 11 kg cm High Torque - Arduino Uno
MG996R 360 Continuous Rotation Servo Motor - 11 kg cm High Torque - Arduino Nano
MG996R 360 Continuous Rotation Servo Motor - 11 kg cm High Torque - Arduino Mega
MG996R 360 Continuous Rotation Servo Motor - 11 kg cm High Torque - ESP32
MG996R 360 Continuous Rotation Servo Motor - 11 kg cm High Torque - ESP8266
MG996R 360 Continuous Rotation Servo Motor - 11 kg cm High Torque - STM32
MG996R 360 Continuous Rotation Servo Motor - 11 kg cm High Torque - Raspberry Pi Pico
📄 File: mg996r_360_continuous_rotation_servo_motor_-_11_kg_cm_high_torque_-_arduino_uno.inoArduino Uno
611 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 9 on Arduino Uno. A continuous-rotation servo ignores angle and instead treats 90 as stop, <90 as one direction, >90 as the other - speed is set by how far from 90.
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 myServo.write(180); // full speed one direction
18 delay(2000);
19 myServo.write(90); // stop
20 delay(1000);
21 myServo.write(0); // full speed other direction
22 delay(2000);
23 myServo.write(90); // stop
24 delay(1000);
25}
📄 File: mg996r_360_continuous_rotation_servo_motor_-_11_kg_cm_high_torque_-_arduino_nano.inoArduino Nano
612 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 9 on Arduino Nano. A continuous-rotation servo ignores angle and instead treats 90 as stop, <90 as one direction, >90 as the other - speed is set by how far from 90.
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 myServo.write(180); // full speed one direction
18 delay(2000);
19 myServo.write(90); // stop
20 delay(1000);
21 myServo.write(0); // full speed other direction
22 delay(2000);
23 myServo.write(90); // stop
24 delay(1000);
25}
📄 File: mg996r_360_continuous_rotation_servo_motor_-_11_kg_cm_high_torque_-_arduino_mega.inoArduino Mega
612 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 9 on Arduino Mega. A continuous-rotation servo ignores angle and instead treats 90 as stop, <90 as one direction, >90 as the other - speed is set by how far from 90.
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 myServo.write(180); // full speed one direction
18 delay(2000);
19 myServo.write(90); // stop
20 delay(1000);
21 myServo.write(0); // full speed other direction
22 delay(2000);
23 myServo.write(90); // stop
24 delay(1000);
25}
📄 File: mg996r_360_continuous_rotation_servo_motor_-_11_kg_cm_high_torque_-_esp32.inoESP32
607 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 25 on ESP32. A continuous-rotation servo ignores angle and instead treats 90 as stop, <90 as one direction, >90 as the other - speed is set by how far from 90.
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 myServo.write(180); // full speed one direction
18 delay(2000);
19 myServo.write(90); // stop
20 delay(1000);
21 myServo.write(0); // full speed other direction
22 delay(2000);
23 myServo.write(90); // stop
24 delay(1000);
25}
📄 File: mg996r_360_continuous_rotation_servo_motor_-_11_kg_cm_high_torque_-_esp8266.inoESP8266
609 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin D1 on ESP8266. A continuous-rotation servo ignores angle and instead treats 90 as stop, <90 as one direction, >90 as the other - speed is set by how far from 90.
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 myServo.write(180); // full speed one direction
18 delay(2000);
19 myServo.write(90); // stop
20 delay(1000);
21 myServo.write(0); // full speed other direction
22 delay(2000);
23 myServo.write(90); // stop
24 delay(1000);
25}
📄 File: mg996r_360_continuous_rotation_servo_motor_-_11_kg_cm_high_torque_-_stm32.inoSTM32
609 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin PA8 on STM32. A continuous-rotation servo ignores angle and instead treats 90 as stop, <90 as one direction, >90 as the other - speed is set by how far from 90.
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 myServo.write(180); // full speed one direction
18 delay(2000);
19 myServo.write(90); // stop
20 delay(1000);
21 myServo.write(0); // full speed other direction
22 delay(2000);
23 myServo.write(90); // stop
24 delay(1000);
25}
📄 File: mg996r_360_continuous_rotation_servo_motor_-_11_kg_cm_high_torque_-_raspberry_pi_pico.inoRaspberry Pi Pico
619 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 15 on Raspberry Pi Pico. A continuous-rotation servo ignores angle and instead treats 90 as stop, <90 as one direction, >90 as the other - speed is set by how far from 90.
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 myServo.write(180); // full speed one direction
18 delay(2000);
19 myServo.write(90); // stop
20 delay(1000);
21 myServo.write(0); // full speed other direction
22 delay(2000);
23 myServo.write(90); // stop
24 delay(1000);
25}
Continuous-rotation high-torque servo - speed/direction control instead of position.

Specification

Specification

WeightWeight55,0000 g
Dimensions40,7 × 19,7 × 42,9 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-typeMetal
no-of-teeth25

Customer Reviews