RS-550 12–24V DC Motor, 5800RPM, 1864 g·cm High Torque

  • ⚙️ RS-550 DC motor for powerful DIY applications
  • ⚡ Wide voltage range: 12–24VDC
  • 🚀 High speed up to 5800 RPM
  • 💪 High torque: 1864 g·cm for heavy-load tasks
  • 🧩 Ideal for drills, cutters, pumps, robots, and RC builds
  • 🔁 Smooth rotation with strong starting power
  • 🛠️ Easy integration with motor drivers/ESC and power supplies
  • ✅ Great choice for high-power motor projects

Apple Shopping Event

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

220,00 EGP

15 People watching this product now!

Payment Methods:

Description

The RS-550 12–24V DC Motor is a versatile and high-performance brushed DC motor designed for a wide range of small-scale and hobbyist applications. This motor offers a balanced combination of speed, torque, and compact size, making it ideal for robotics, DIY mechanical projects, and electronic systems. With a no-load speed of 5800 RPM and a high torque rating of 1864 g·cm, it provides reliable mechanical power for tasks requiring moderate force and rotational speed. Its design allows for easy integration with wheels, pulleys, gears, and small actuators, making it a practical choice for engineers, makers, and electronics enthusiasts alike. The motor operates efficiently across a voltage range of 12–24 volts DC, providing flexibility for different power sources and project requirements. Its compact and lightweight design ensures it fits seamlessly into small enclosures without compromising performance.

Features:

  • High-speed operation with a no-load speed of 5800 RPM.

  • Strong torque performance with a maximum stall torque of 1864 g·cm.

  • Wide operating voltage range from 12 to 24 volts DC.

  • Compact and lightweight design, suitable for small-scale mechanical assemblies.

  • Easy to integrate with gears, wheels, pulleys, and other mechanical components.

  • Reliable brushed DC construction for cost-effective and straightforward motor control.

  • Ideal for hobbyist and educational robotics projects.

Specifications:

  • Voltage: 12–24 V DC

  • No-load speed: 5800 RPM

  • Stall torque: 1864 g·cm

  • Shaft diameter: 3.175 mm

  • Motor type: Brushed DC, compact form factor

Applications:
The RS-550 DC motor is highly adaptable and can be applied in a variety of practical scenarios:

  1. Robotics: Perfect for driving wheels, gear systems, and small actuators in mobile robots or robotic arms, providing smooth and controlled motion.

  2. DIY Mechanical Projects: Ideal for hobby projects such as conveyor belts, miniature fans, or small-scale automation mechanisms.

  3. Pumps and Fans: Suitable for powering small fluid pumps or air-moving devices where compact size and sufficient torque are required.

  4. Educational Tools: Used in schools, universities, or maker spaces to teach principles of electric motors, mechanical transmission, and control systems.

  5. Prototyping and Custom Builds: A practical solution for engineers and hobbyists designing custom devices that need a reliable, high-speed motor with moderate torque.

Overall, the RS-550 12–24V DC Motor is a compact yet powerful solution for a variety of mechanical and electronic applications. Its balance of high speed, strong torque, and flexible voltage operation makes it a dependable choice for projects where performance, size, and versatility are essential.

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Motorto H-bridge OUTmotor leads into an H-bridge driver's output terminals
📟
RS-550 12-24V DC Motor, 5800RPM, 1864 g cm High Torque
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
RS-550 12-24V DC Motor, 5800RPM, 1864 g cm High Torque - Arduino Uno
RS-550 12-24V DC Motor, 5800RPM, 1864 g cm High Torque - Arduino Nano
RS-550 12-24V DC Motor, 5800RPM, 1864 g cm High Torque - Arduino Mega
RS-550 12-24V DC Motor, 5800RPM, 1864 g cm High Torque - ESP32
RS-550 12-24V DC Motor, 5800RPM, 1864 g cm High Torque - ESP8266
RS-550 12-24V DC Motor, 5800RPM, 1864 g cm High Torque - STM32
RS-550 12-24V DC Motor, 5800RPM, 1864 g cm High Torque - Raspberry Pi Pico
📄 File: rs-550_12-24v_dc_motor,_5800rpm,_1864_g_cm_high_torque_-_arduino_uno.inoArduino Uno
659 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RS-550 12-24V DC Motor, 5800RPM, 1864 g cm High Torque needs an H-bridge driver (e.g. L298N/L293D/L9110S) between it and the board - a GPIO pin alone can't supply a motor's current. IN1=8, IN2=9, ENA(speed)=10 on Arduino Uno.
6#define IN1 8
7#define IN2 9
8#define ENA 10
9
10void setup() {
11 Serial.begin(115200);
12 pinMode(IN1, OUTPUT);
13 pinMode(IN2, OUTPUT);
14 pinMode(ENA, OUTPUT);
15}
16
17void loop() {
18 digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW);
19 analogWrite(ENA, 200); // run forward at ~78% speed
20 delay(2000);
21 digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); // stop
22 delay(1000);
23}
📄 File: rs-550_12-24v_dc_motor,_5800rpm,_1864_g_cm_high_torque_-_arduino_nano.inoArduino Nano
660 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RS-550 12-24V DC Motor, 5800RPM, 1864 g cm High Torque needs an H-bridge driver (e.g. L298N/L293D/L9110S) between it and the board - a GPIO pin alone can't supply a motor's current. IN1=8, IN2=9, ENA(speed)=10 on Arduino Nano.
6#define IN1 8
7#define IN2 9
8#define ENA 10
9
10void setup() {
11 Serial.begin(115200);
12 pinMode(IN1, OUTPUT);
13 pinMode(IN2, OUTPUT);
14 pinMode(ENA, OUTPUT);
15}
16
17void loop() {
18 digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW);
19 analogWrite(ENA, 200); // run forward at ~78% speed
20 delay(2000);
21 digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); // stop
22 delay(1000);
23}
📄 File: rs-550_12-24v_dc_motor,_5800rpm,_1864_g_cm_high_torque_-_arduino_mega.inoArduino Mega
660 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RS-550 12-24V DC Motor, 5800RPM, 1864 g cm High Torque needs an H-bridge driver (e.g. L298N/L293D/L9110S) between it and the board - a GPIO pin alone can't supply a motor's current. IN1=8, IN2=9, ENA(speed)=10 on Arduino Mega.
6#define IN1 8
7#define IN2 9
8#define ENA 10
9
10void setup() {
11 Serial.begin(115200);
12 pinMode(IN1, OUTPUT);
13 pinMode(IN2, OUTPUT);
14 pinMode(ENA, OUTPUT);
15}
16
17void loop() {
18 digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW);
19 analogWrite(ENA, 200); // run forward at ~78% speed
20 delay(2000);
21 digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); // stop
22 delay(1000);
23}
📄 File: rs-550_12-24v_dc_motor,_5800rpm,_1864_g_cm_high_torque_-_esp32.inoESP32
657 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RS-550 12-24V DC Motor, 5800RPM, 1864 g cm High Torque needs an H-bridge driver (e.g. L298N/L293D/L9110S) between it and the board - a GPIO pin alone can't supply a motor's current. IN1=26, IN2=27, ENA(speed)=25 on ESP32.
6#define IN1 26
7#define IN2 27
8#define ENA 25
9
10void setup() {
11 Serial.begin(115200);
12 pinMode(IN1, OUTPUT);
13 pinMode(IN2, OUTPUT);
14 pinMode(ENA, OUTPUT);
15}
16
17void loop() {
18 digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW);
19 analogWrite(ENA, 200); // run forward at ~78% speed
20 delay(2000);
21 digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); // stop
22 delay(1000);
23}
📄 File: rs-550_12-24v_dc_motor,_5800rpm,_1864_g_cm_high_torque_-_esp8266.inoESP8266
659 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RS-550 12-24V DC Motor, 5800RPM, 1864 g cm High Torque needs an H-bridge driver (e.g. L298N/L293D/L9110S) between it and the board - a GPIO pin alone can't supply a motor's current. IN1=D5, IN2=D6, ENA(speed)=D7 on ESP8266.
6#define IN1 D5
7#define IN2 D6
8#define ENA D7
9
10void setup() {
11 Serial.begin(115200);
12 pinMode(IN1, OUTPUT);
13 pinMode(IN2, OUTPUT);
14 pinMode(ENA, OUTPUT);
15}
16
17void loop() {
18 digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW);
19 analogWrite(ENA, 200); // run forward at ~78% speed
20 delay(2000);
21 digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); // stop
22 delay(1000);
23}
📄 File: rs-550_12-24v_dc_motor,_5800rpm,_1864_g_cm_high_torque_-_stm32.inoSTM32
663 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RS-550 12-24V DC Motor, 5800RPM, 1864 g cm High Torque needs an H-bridge driver (e.g. L298N/L293D/L9110S) between it and the board - a GPIO pin alone can't supply a motor's current. IN1=PB0, IN2=PB1, ENA(speed)=PA8 on STM32.
6#define IN1 PB0
7#define IN2 PB1
8#define ENA PA8
9
10void setup() {
11 Serial.begin(115200);
12 pinMode(IN1, OUTPUT);
13 pinMode(IN2, OUTPUT);
14 pinMode(ENA, OUTPUT);
15}
16
17void loop() {
18 digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW);
19 analogWrite(ENA, 200); // run forward at ~78% speed
20 delay(2000);
21 digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); // stop
22 delay(1000);
23}
📄 File: rs-550_12-24v_dc_motor,_5800rpm,_1864_g_cm_high_torque_-_raspberry_pi_pico.inoRaspberry Pi Pico
669 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RS-550 12-24V DC Motor, 5800RPM, 1864 g cm High Torque needs an H-bridge driver (e.g. L298N/L293D/L9110S) between it and the board - a GPIO pin alone can't supply a motor's current. IN1=14, IN2=15, ENA(speed)=16 on Raspberry Pi Pico.
6#define IN1 14
7#define IN2 15
8#define ENA 16
9
10void setup() {
11 Serial.begin(115200);
12 pinMode(IN1, OUTPUT);
13 pinMode(IN2, OUTPUT);
14 pinMode(ENA, OUTPUT);
15}
16
17void loop() {
18 digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW);
19 analogWrite(ENA, 200); // run forward at ~78% speed
20 delay(2000);
21 digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); // stop
22 delay(1000);
23}
Bare DC motor - needs an H-bridge driver module (L298N/L293D/L9110S) wired between it and the microcontroller.

Specification

Specification

WeightWeight40 g
Dimensions5,5 × 3,2 × 2,7 cm
NameRS-550 12–24V DC Motor
TypeBrushed DC Motor
Voltage12–24 V DC
No-load Speed5800 RPM
Stall Torque1864 g·cm
Shaft Diameter3.175 mm
ApplicationRobotics, small mechanical projects, DIY fans and pumps, educational prototypes

Customer Reviews