









| 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 |
|---|---|
| Wheel Diameter | 65mm - 100mm |
| Wheel Material | Rubber or Plastic |
| Hub Type | Compatible with motor shaft |
| Traction | High-grip surface for stability |
| Pin Name | Description |
|---|---|
| Motor Terminal 1 | Connects to motor driver output A |
| Motor Terminal 2 | Connects to motor driver output B |
| Pin Name | Description |
|---|---|
| Coil A+ | Positive terminal of coil A |
| Coil A- | Negative terminal of coil A |
| Coil B+ | Positive terminal of coil B |
| Coil B- | Negative terminal of coil B |
DC Motor with Wheels:
Stepper Motor with Wheels:
Arduino UNO Example for DC Motor:
// Arduino code to control a DC motor with wheels using L298N motor driver
// Define motor driver pins
const int motorPin1 = 9; // IN1 on L298N
const int motorPin2 = 10; // IN2 on L298N
const int enablePin = 11; // ENA on L298N
void setup() {
// Set motor pins as outputs
pinMode(motorPin1, OUTPUT);
pinMode(motorPin2, OUTPUT);
pinMode(enablePin, OUTPUT);
// Start motor at full speed
analogWrite(enablePin, 255); // Set speed (0-255)
}
void loop() {
// Move forward
digitalWrite(motorPin1, HIGH);
digitalWrite(motorPin2, LOW);
delay(2000); // Run for 2 seconds
// Move backward
digitalWrite(motorPin1, LOW);
digitalWrite(motorPin2, HIGH);
delay(2000); // Run for 2 seconds
// Stop motor
digitalWrite(motorPin1, LOW);
digitalWrite(motorPin2, LOW);
delay(1000); // Pause for 1 second
}
Motor not spinning:
Motor spins in the wrong direction:
Motor overheating:
Wheels slipping or wobbling:
Can I use this motor and wheels with a battery pack?
What type of motor driver should I use?
Can I control the motor speed?
How do I calculate the torque required for my project?
By following this documentation, you can effectively integrate motor and wheels into your projects for smooth and reliable operation.