Electronics

Motor DC Geared Motor 12V 37 DC High Torque 2.5Kg With Gasket

AED 38.00

Low stock
1

Description

The Motor DC Geared Motor 12V 37 DC High Torque 2.5Kg With Gasket is a high-performance DC motor with a voltage range of 12V to 37V and a high torque of 2.5Kg. It can provide rotational speeds of 6-7 RPM at 12V and 13 RPM at 24V and features a D-type axial diameter for compatibility with various mounting options. The motor is designed for robust and smooth operation and comes with a gasket for improved stability and reliability.

Package Includes:

  • 1 x Motor DC Geared Motor 12V 37 DC High Torque 2.5Kg With Gasket

Features:

  • High Voltage Compatibility: With a voltage rating of 12V to 37V DC, this motor is suitable for a wide range of applications and projects.
  • High Torque: With a torque of 2.5kg, this motor provides ample power for a variety of tasks and can handle heavy loads with ease.
  • Versatile Speed: The motor provides a rotational speed of 6-7 RPM at 12V and 13 RPM at 24V, making it suitable for applications that require different levels of speed.
  • Durable Construction: The motor features a compact and sturdy design with a reduction ratio of 1:86, making it reliable and long-lasting.
  • Easy to Install: With a fixed aperture of 3mm (M3), this motor is easy to install and can be mounted with minimal effort.
  • Compatible with a Range of Applications: With its axial diameter of 6mm (D-type), this motor is compatible with a wide range of applications and projects, making it a versatile choice.

Description:

The Motor DC Geared Motor 12V 37 DC High Torque 2.5Kg With Gasket is a high-performance, geared motor that provides a powerful and reliable solution for a variety of applications. With its 12V to 37V DC voltage range and 2.5 kg of high torque, this motor is capable of delivering robust and smooth operation. At 12V, the motor provides a rotational speed of 6-7 RPM, while at 24V it can achieve speeds of up to 13 RPM. The motor features a D-type axial diameter, ensuring compatibility with a wide range of mounting options. Additionally, the included gasket helps to keep the motor secure and stable, further improving its performance and reliability. Whether you're working on a robotics project, an automated system, or any other application that requires a powerful and versatile DC geared motor, the Motor DC Geared Motor 12V 37 DC High Torque 2.5Kg With Gasket is an excellent choice.

Principle of Work:

A geared DC motor works by using a gear reduction system to convert the high-speed, low-torque output from the motor into a lower-speed, higher-torque output that is better suited for the intended task. The gears work by rotating the shaft at a slower speed while amplifying the amount of force (torque) being applied. This process allows the motor to provide more power to a load while also reducing the speed at which it is rotating. The gears used in a geared DC motor are typically made of metal and are precision-engineered to provide a precise reduction ratio and smooth operation. The combination of the motor and gears creates a system that can provide high levels of torque and power at a controlled speed, making it an ideal solution for a wide range of applications.

Pinout of the Module:

  • Negative: connected to GND
  • Positive: connected to VCC
  • Note: switching the terminal connection will not affect the motor but will affect the spinning direction

Applications: 

  • Robotics: This motor can be used in the construction of robots and automation systems, especially in small and medium-sized robots where precise control of the speed and torque is required.
  • Automated machinery: The motor can be used in automated machinery and equipment, where precise control of speed and torque is critical.
  • Toys and educational equipment: The compact size and low voltage requirements of this motor make it an ideal choice for toys and educational equipment, where safety and ease of use are key considerations.
  • Control systems: The motor can be used in control systems and applications where precise control of speed and torque is required.
  • Industrial equipment: The motor can be used in industrial equipment where precise control of speed and torque is critical.

Circuit:

Components needed:

  •  Arduino Uno board
  •  breadboard
  •  4 jumper wires
  •  DC toy motor
  •  330-ohm resistor
  •  PN2222 NPN transistor
  •  1N4004 diode

Library:

No need to install Library.

Code:  

Demonstration of how to control a DC motor using an Arduino. It includes the following functionalities:

  1. Pin configuration: The code sets pin 9 as an output pin, which will be used to control the DC motor.
  2. Loop function: The code turns the motor on for 3 seconds at full speed (255) and then off for another 3 seconds.
  3. Speed Up and Down Function: This function increases the speed of the motor from 0 to 255 and then decreases the speed back to 0.
  4. Serial Speed Function: This function allows you to set the speed of the motor by inputting a value from 0 to 255 through the Serial port.
const int motorPin = 9;

void setup()
{
  pinMode(motorPin, OUTPUT);
  Serial.begin(9600);
}


void loop()
{ 
  int onTime = 3000;
  int offTime = 3000;

  analogWrite(motorPin, 255); 
  delay(onTime);                
  analogWrite(motorPin, 0);  
  delay(offTime);               
}

void speedUpandDown()
{
  int speed;
  int delayTime = 20; 

  for(speed = 0; speed <= 255; speed++)
  {
    analogWrite(motorPin,speed);    
    delay(delayTime);               
  }
  for(speed = 255; speed >= 0; speed--)
  {
    analogWrite(motorPin,speed);    
    delay(delayTime);               
  }
}

void serialSpeed()
{
  int speed;

  Serial.println("Type a speed (0-255) into the box above,");
  Serial.println("then click [send] or press [return]");
  Serial.println();  

  while(true)  
  {
    while (Serial.available() > 0)
    {
      speed = Serial.parseInt();  
      speed = constrain(speed, 0, 255); 

      Serial.print("Setting speed to ");  
      Serial.println(speed);

      analogWrite(motorPin, speed);  
    }
  }
}  

The code sets pin 9 on the Arduino board as the output pin for the motor, using the following line: const int motorPin = 9;.

In the setup() function, the pin mode of motorPin is set to OUTPUT using pinMode(motorPin, OUTPUT);, and serial communication is initialized with Serial.begin(9600).

The loop() the function contains the main code that will run repeatedly. It uses the analogWrite() function to turn the motor on (full speed) for onTime milliseconds and then turn the motor off for offTime milliseconds. The analogWrite() the function takes two arguments: the pin number and a value between 0 and 255 that represents the duty cycle of the PWM signal applied to the pin. A value of 255 means 100% duty cycle, which means the pin is on for the full period of the PWM signal.

There are two other functions in the code: speedUpandDown() and serialSpeed(). speedUpandDown() increases the motor speed from 0 to 255 and then decreases it back to 0 in increments of 20 milliseconds using a for loop. serialSpeed() allows you to set the motor speed by entering a value between 0 and 255 into the serial monitor of the Arduino software. The function Serial.parseInt() is used to read the value entered in the serial monitor and constrain() is used to ensure that the speed value is within the range of 0 to 255. The speed value is then passed to the analogWrite() function to set the speed of the motor.

 

Technical Details:

  • voltage rating:12V 
  • Speed parameter: 12v, 6-7RPM;24v- 13RPM
  • Torque:2.5kg
  • reduction ratio:1:86
  • motor diameter:32.8mm
  • Motor length:22m
  • fixed aperture:3mm(M3)
  • Gearbox diameter;37mm 
  • Gearbox length:25mm
  • step height:4.5mm
  • shaft length:19mm
  • axial diameter of Motor: 6mm(D-type)

Resources:

Comparisons:

DC Geared 37B280 60mm 4.5V 102 RPM motor: Advantages:

  • Lower voltage rating (4.5V), which may be suitable for applications that require a lower power consumption.
  • Higher speed parameter (102 RPM) for fast and efficient operations.
  • Smaller dimensions (overall length of 60mm, motor diameter of 24mm, and gearbox diameter of 37mm) that can save space and make it easier to install in compact systems.

Disadvantages:

  • Lower torque compared to the 12V motor.
  • Not suitable for high-power applications.

Where to use: This motor is ideal for low-power applications that require fast and efficient operations, such as small robotic projects or hobbyist toys.

Motor DC Geared Motor 12V 37 DC High Torque 2.5Kg With Gasket: Advantages:

  • Higher voltage rating (12V), making it suitable for higher power applications.
  • Higher torque (2.5kg) for powerful and reliable operations.
  • Suitable for applications that require a strong driving force, such as in automation or lifting heavy objects.

Disadvantages:

  • Higher voltage can consume more power and generate more heat.
  • Larger dimensions (motor diameter of 32.8mm, motor length of 22mm, and gearbox length of 25mm) may make it less suitable for compact systems.
  • Lower speed parameter compared to the 4.5V motor.

Where to use: This motor is ideal for high-power applications that require strong driving force, such as in automation or lifting heavy objects.