200 RPM Gear Motor + 10x4 Wheel - Set of 4
200 RPM Gear Motor + 10x4 Wheel - Set of 4
The 200 RPM Gear Motor + 10x4 Wheel - Set of 4 is a comprehensive bundle designed for robotics, automation, and IoT projects. This set consists of four gear motors, each paired with a 10x4 wheel, providing a robust and efficient solution for movement and locomotion applications.
DC Gear Motor
| RPM (Rated Speed) | 200 RPM |
DC 6-12V (optimal operation at 9V)
100-200mA (dependent on load and operating voltage)
1.2 kg-cm (12 N-cm)
Brushed DC Motor
Spur Gearbox
| 1 | 48 |
10x4 inches (25.4x10.2 cm)
Durable, high-quality plastic
Press-fit hub for secure motor attachment
Treaded for improved traction and grip
| What's Included |
4 x 200 RPM Gear Motors
4 x 10x4 Wheels
Screws and accessories for motor-wheel assembly
Operating voltage and current should be within the recommended range to ensure optimal performance and prevent damage to the motor.
The gear motor and wheel set is designed for indoor use; exposure to harsh outdoor environments may affect performance and durability.
Regular maintenance, such as cleaning and lubricating the gearbox, is recommended to ensure longevity and optimal performance.
Component Documentation: 200 RPM GEAR MOTOR+10X4 WHEEL - SET OF 4OverviewThe 200 RPM GEAR MOTOR+10X4 WHEEL - SET OF 4 is a high-quality motor and wheel assembly designed for robotics, automation, and IoT projects. The gear motor provides a maximum speed of 200 RPM, making it suitable for applications requiring moderate speed and high torque. The 10x4 wheel is designed for stability and traction, making it ideal for robotic platforms, autonomous vehicles, and other mobile devices.Technical SpecificationsMotor Type: Gear Motor
Maximum Speed: 200 RPM
Voltage: 6-12V DC
Current: 100-200mA
Torque: 1.5 kg-cm
Wheel Size: 10x4 inches
Material: Plastic and metal alloysPinout and ConnectionThe motor has a 3-pin connection:VCC (Red wire): Positive voltage supply (6-12V DC)
GND (Black wire): Ground connection
Signal (Yellow wire): PWM signal input (0-100% duty cycle)Code Examples### Example 1: Basic Motor Control using ArduinoThis example demonstrates how to control the motor speed using an Arduino board.
```c++
const int motorPin = 9; // PWM pin for motor controlvoid setup() {
pinMode(motorPin, OUTPUT);
}void loop() {
// Set motor speed to 50% (100 RPM)
analogWrite(motorPin, 128);
delay(1000);// Set motor speed to 100% (200 RPM)
analogWrite(motorPin, 255);
delay(1000);// Set motor speed to 0% (stop)
analogWrite(motorPin, 0);
delay(1000);
}
```
### Example 2: Motor Control using Raspberry Pi (Python)This example demonstrates how to control the motor speed using a Raspberry Pi and Python.
```python
import RPi.GPIO as GPIO
import time# Set up GPIO mode
GPIO.setmode(GPIO.BCM)# Define motor pin
motor_pin = 18# Set up motor pin as PWM output
GPIO.setup(motor_pin, GPIO.PWM)# Set motor frequency to 50 Hz
pwm_frequency = 50
GPIO.PWM(motor_pin, pwm_frequency)try:
while True:
# Set motor speed to 50% (100 RPM)
GPIO.PWM(motor_pin, pwm_frequency).start(50)
time.sleep(1)# Set motor speed to 100% (200 RPM)
GPIO.PWM(motor_pin, pwm_frequency).start(100)
time.sleep(1)# Set motor speed to 0% (stop)
GPIO.PWM(motor_pin, pwm_frequency).start(0)
time.sleep(1)except KeyboardInterrupt:
# Clean up GPIO pins on interrupt
GPIO.cleanup()
```
Note: These examples assume a basic understanding of programming and electronic circuits. Make sure to modify the code according to your specific project requirements and safety considerations.