MG996R Digital High Torque Servo Motor 360 degree

  • 360° Continuous Rotation for robotics and wheeled movement
  • High Torque (~10kg·cm @ 6V) for heavy-duty tasks
  • Metal Gears ensure strength and durability
  • Digital Control for precise and fast response
  • Wide Voltage Range (4.8V–7.2V) for flexible power options

Apple Shopping Event

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

220,00 EGP

20 People watching this product now!

Payment Methods:

Description

SEO Description:
The MG996R 360° Digital High Torque Servo Motor delivers high power, precision, and durability. Ideal for robotics, RC projects, and automation applications. Featuring metal gears, smooth 360° continuous rotation, and strong torque. Shop now!

Detailed Description:
The MG996R 360° Digital High Torque Servo Motor is a reliable and powerful servo designed for high-performance applications. It features metal gears for enhanced durability and precision, ensuring long-lasting operation even under heavy loads. With a torque of up to 11kg.cm at 6V, this servo is perfect for robotics, RC cars, boats, and industrial automation projects.

Unlike standard servos, the MG996R supports continuous 360° rotation, making it ideal for wheeled robots, conveyor belts, and rotating mechanisms. It operates on a PWM signal for precise speed and direction control, offering smooth and responsive movement.

Key Features:

360° Continuous Rotation – Perfect for wheeled robots and automation projects
High Torque (Up to 11kg.cm @ 6V) – Handles heavy loads effortlessly
Metal Gear Construction – Ensures durability and long lifespan
Wide Operating Voltage (4.8V – 7.2V) – Compatible with various power sources
Fast Response Time (0.17 sec/60° @ 6V) – Smooth and precise control
Standard 3-Pin Connector – Easy to integrate with Arduino, Raspberry Pi, and other microcontrollers

Applications:

🔹 Robotics – Drive wheels, robotic arms, and mechanisms
🔹 RC Vehicles – Cars, boats, and planes for enhanced control
🔹 Automation – Conveyor belts, rotating displays, and DIY projects
🔹 Mechatronics – Educational and industrial applications

Upgrade your project with the MG996R 360° Digital High Torque Servo Motor for powerful, smooth, and reliable motion control.

Specifications:

  • Model: MG996R
  • Rotation: 360° continuous rotation
  • Operating Voltage: 4.8V – 7.2V
  • Torque: Up to 11kg.cm (at 6V)
  • Speed: 0.17 sec/60° (at 6V)
  • Gear Type: Metal gears for durability
  • Signal Type: PWM
  • Connector: 3-pin (VCC, GND, Signal)
  • Applications: Robotics, RC cars, boats, automation, and more
🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
MG996R (360)Signal/VCC/GNDboard PWM-capable pin / 5-6V / GND
📟
MG996R Digital High Torque Servo Motor 360 degree
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
MG996R Digital High Torque Servo Motor 360 degree - Arduino Uno
MG996R Digital High Torque Servo Motor 360 degree - Arduino Nano
MG996R Digital High Torque Servo Motor 360 degree - Arduino Mega
MG996R Digital High Torque Servo Motor 360 degree - ESP32
MG996R Digital High Torque Servo Motor 360 degree - ESP8266
MG996R Digital High Torque Servo Motor 360 degree - STM32
MG996R Digital High Torque Servo Motor 360 degree - Raspberry Pi Pico
📄 File: mg996r_digital_high_torque_servo_motor_360_degree_-_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_digital_high_torque_servo_motor_360_degree_-_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_digital_high_torque_servo_motor_360_degree_-_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_digital_high_torque_servo_motor_360_degree_-_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_digital_high_torque_servo_motor_360_degree_-_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_digital_high_torque_servo_motor_360_degree_-_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_digital_high_torque_servo_motor_360_degree_-_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.

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

MG996R Digital High Torque Servo Motor 360 degree متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Motors | Drivers | Pumps | Actuators وServo Motors، بسعر 220,00 EGP. كود المنتج لدينا: EK1778. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

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

  • Product Name: MG996R Digital High Torque Servo Motor – 360° Rotation
  • Type: Digital Servo Motor
  • Rotation: 360° continuous rotation
  • Torque: 9–11 kg·cm (at 6V)
  • Operating Voltage: 4.8V – 7.2V DC
  • Speed: ~0.19 sec/60° at 6V
  • Gears: Metal gears
  • الخامة: Plastic body with metal shaft

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

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

Specification

Specification

WeightWeight55 g
Dimensions4 × 2 × 3,6 cm
Product NameMG996R Digital High Torque Servo Motor – 360° Rotation
TypeDigital Servo Motor
Rotation360° continuous rotation
Torque9–11 kg·cm (at 6V)
Operating Voltage4.8V – 7.2V DC
Speed~0.19 sec/60° at 6V
GearsMetal gears
MaterialPlastic body with metal shaft
Weight~55 g
ColorWhite / Gray
ApplicationsRobotics, RC vehicles, robotic arms, Arduino and microcontroller projects
FeaturesHigh torque, durable metal gears, precise control, widely compatible

Customer Reviews