









| Parameter | Value |
|---|---|
| Motor Type | DC Motor / Stepper Motor |
| Operating Voltage | 3V - 12V (varies by motor model) |
| Rated Current | 100mA - 2A (depending on load) |
| Stall Current | Up to 3A (varies by motor model) |
| Torque | 0.1 Nm - 1 Nm (model dependent) |
| Speed | 50 RPM - 300 RPM (no load) |
| Parameter | Value |
|---|---|
| Diameter | 65mm (typical for hobby wheels) |
| Material | Rubber or Plastic |
| Mounting Type | Direct fit or screw-on |
| Tread Type | Smooth or grooved for traction |
| Pin Name | Description |
|---|---|
| V+ | Positive terminal for motor power |
| V- | Negative terminal for motor power |
| Pin Name | Description |
|---|---|
| A+ | Coil A positive terminal |
| A- | Coil A negative terminal |
| B+ | Coil B positive terminal |
| B- | Coil B negative terminal |
DC Motor with Wheels:
Stepper Motor with Wheels:
// Example code to control a DC motor with L298N motor driver and Arduino UNO
// Define motor control pins
const int ENA = 9; // PWM pin to control motor speed
const int IN1 = 8; // Motor direction pin 1
const int IN2 = 7; // Motor direction pin 2
void setup() {
// Set motor control pins as outputs
pinMode(ENA, OUTPUT);
pinMode(IN1, OUTPUT);
pinMode(IN2, OUTPUT);
}
void loop() {
// Move motor forward
digitalWrite(IN1, HIGH); // Set IN1 high
digitalWrite(IN2, LOW); // Set IN2 low
analogWrite(ENA, 150); // Set speed (0-255)
delay(2000); // Run forward for 2 seconds
// Move motor backward
digitalWrite(IN1, LOW); // Set IN1 low
digitalWrite(IN2, HIGH); // Set IN2 high
analogWrite(ENA, 150); // Set speed (0-255)
delay(2000); // Run backward for 2 seconds
// Stop motor
digitalWrite(IN1, LOW); // Set IN1 low
digitalWrite(IN2, LOW); // Set IN2 low
analogWrite(ENA, 0); // Set speed to 0
delay(2000); // Wait for 2 seconds
}
Motor Not Spinning:
Motor Spins in the Wrong Direction:
Motor Overheats:
Wheels Slipping or Misaligned:
Can I use a single power source for both the motor and microcontroller?
What is the best way to control motor speed?
Can I use these motors and wheels for heavy loads?