Skip to Content

Motor DC Single Shaft TT DC Gear Motor 1:48

The TT DC Gearbox Motor with a 1:48 gear ratio is a cost-effective and easy-to-use solution for adding motion to your DIY electronics and robotics projects. Its breadboard-friendly design allows for quick prototyping, while the 1:48 gear ratio delivers high torque at low speed—ideal for driving wheels, actuating arms, or powering mechanical components.

Package Includes:

  • 1 x Motor DC Single Shaft TT DC Gear Motor 1:48

10.50 AED 10.50 AED Tax Included
10.50 AED Tax Included

Not Available For Sale

This combination does not exist.

Terms and Conditions
30-day money-back guarantee
Shipping: 2-3 Business Days


 

Features:

  • Gear Ratio: 1:48
  • Low cost and beginner-friendly
  • Ideal for small robots and mechanical systems
  • Breadboard and terminal block compatible
  • Reversible rotation direction

 

Principle of Work:

When voltage is applied to the motor terminals, a magnetic field is generated inside the motor. This causes the rotor to spin, and through a gear train with a 1:48 ratio, the output shaft turns slowly but with increased torque. The gear reduction mechanism is what enables this motor to perform mechanical tasks efficiently with minimal input current.

Pinout:

1:48 TT Motor Pinout

How to Connect:

  • Red wire → +V (3–6V DC)
  • Black wire → GND

Swap the connections to reverse motor direction.

Applications:

  • Robotic cars and platforms
  • Actuators for levers and doors
  • Simple fans and mini pumps
  • Educational robotic kits

Circuit Example:

1:48 TT Motor Circuit

Sample Arduino Code:


// Control motor speed with PWM using a transistor on pin 9
const int motorPin = 9;

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

void loop() {
  serialSpeed(); // Control speed via Serial Monitor
}

void serialSpeed() {
  int speed;
  Serial.println("Type a speed (0-255) and press enter:");

  while (true) {
    if (Serial.available() > 0) {
      speed = Serial.parseInt();
      speed = constrain(speed, 0, 255);
      Serial.print("Setting speed to ");
      Serial.println(speed);
      analogWrite(motorPin, speed);
    }
  }
}

Hardware Notes:

  • Use a 2N2222 transistor to switch the motor
  • Use a flyback diode to prevent voltage spikes
  • Connect transistor base via 330Ω resistor to Arduino pin

Technical Specifications:

Working Voltage DC 3–6V
Speed 200 RPM
Gear Ratio 1:48
Gear Material Plastic
Axis Type Single Shaft
Rotation Bidirectional
Operating Temperature +10℃ to +50℃
Storage Temperature -10℃ to +40℃

Comparisons: Plastic vs Metal Gears

Feature Plastic Gear Metal Gear
Durability Less durable More durable
Torque Lower torque Higher torque
Noise Higher Lower
Cost Cheaper More expensive

Resources:

  • No additional library is needed to control the motor.
  • Ideal for learning PWM and basic motor control with Arduino.