The Center Shaft Metal Geared Motor is a robust and versatile motor designed to deliver high torque and precise control. Equipped with a metal gearbox and a central shaft, this motor is ideal for applications requiring reliable and efficient mechanical movement. Common use cases include robotics, automation systems, conveyor belts, and other machinery where precise control and high torque are essential.
Parameter | Value |
---|---|
Operating Voltage | 6V - 12V |
Rated Current | 0.5A - 1.2A |
Stall Current | 2.5A |
Rated Torque | 1.5 kg.cm - 5 kg.cm |
Stall Torque | 10 kg.cm |
Gear Ratio | 1:30, 1:50, 1:100 (varies) |
Shaft Diameter | 6mm |
Shaft Length | 20mm |
Motor Dimensions | 50mm x 25mm x 25mm |
Weight | 150g |
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Power supply (6V - 12V) |
2 | GND | Ground |
3 | IN1 | Motor control input 1 |
4 | IN2 | Motor control input 2 |
To use the Center Shaft Metal Geared Motor in a circuit, follow these steps:
// Example code to control the Center Shaft Metal Geared Motor using Arduino UNO
// and L298N motor driver
const int IN1 = 9; // Motor control input 1
const int IN2 = 10; // Motor control input 2
void setup() {
pinMode(IN1, OUTPUT); // Set IN1 as an output
pinMode(IN2, OUTPUT); // Set IN2 as an output
}
void loop() {
// Rotate motor in one direction
digitalWrite(IN1, HIGH); // Set IN1 high
digitalWrite(IN2, LOW); // Set IN2 low
delay(2000); // Run for 2 seconds
// Stop the motor
digitalWrite(IN1, LOW); // Set IN1 low
digitalWrite(IN2, LOW); // Set IN2 low
delay(1000); // Stop for 1 second
// Rotate motor in the opposite direction
digitalWrite(IN1, LOW); // Set IN1 low
digitalWrite(IN2, HIGH); // Set IN2 high
delay(2000); // Run for 2 seconds
// Stop the motor
digitalWrite(IN1, LOW); // Set IN1 low
digitalWrite(IN2, LOW); // Set IN2 low
delay(1000); // Stop for 1 second
}
By following this documentation, users can effectively integrate and utilize the Center Shaft Metal Geared Motor in their projects, ensuring reliable and efficient performance.