The wheel is made of high-quality, durable materials that can withstand heavy loads and harsh environments.
The wheel is made of high-quality, durable materials that can withstand heavy loads and harsh environments.
The wheel is designed to rotate freely, providing smooth and efficient movement in any direction.
The motor is reversible, enabling the wheel to change direction quickly and efficiently.
The wheel set comes with pre-drilled holes and screws, making installation easy and convenient.
The wheel has a compact design that makes it ideal for use in small to medium-sized robotic platforms and mechanical systems.
High-Speed Capability | The Red BO Motor Wheel can achieve high speeds, making it suitable for applications that require rapid movement. |
Specifications
High-Torque DC Motor
6V - 12V DC
1A - 2A
65mm
30mm
High-Quality Plastic and Metal
120g per wheel
-20C to 80C
Applications
The Red BO Motor Wheel is suitable for a wide range of applications, including |
Robotics platforms
Autonomous vehicles
Mechanical systems
Science projects
Research and development projects
Prototyping and proof-of-concept models
Certifications and Compliance
The Red BO Motor Wheel meets all relevant safety and quality standards, including |
CE certification
RoHS compliance
REACH compliance
Warranty and Support
The Red BO Motor Wheel comes with a 1-year limited warranty. Technical support and documentation are available through the manufacturer's website and customer support channels.
Conclusion
The Red BO Motor Wheel is a high-performance wheel set that is ideal for robotics and science projects. Its high-torque DC motor, durable construction, and smooth movement make it an excellent choice for applications that require efficient and rapid movement. With its compact design, easy installation, and high-speed capability, the Red BO Motor Wheel is a versatile component that can be used in a wide range of projects and applications.
Red BO Motor Wheel - Set of 2 | Robotics Science Project
Overview
The Red BO Motor Wheel is a pair of high-quality, compact motor wheels designed for robotics and science projects. These wheels are perfect for building robots, robotic platforms, and other IoT projects that require efficient and reliable motorized movement. Each wheel comes with a built-in DC motor, making it easy to integrate into your project.
Technical Specifications
Motor Type: DC Motor
Motor Speed: 100-150 RPM
Wheel Diameter: 65 mm
Wheel Width: 25 mm
Material: ABS Plastic
Power Supply: 3-6V DC
Interface: 2-Wire (VCC, GND)
Code Examples
### Example 1: Basic Motor Control using Arduino
This example demonstrates how to control the motor wheels using an Arduino board.
Hardware Requirements
Arduino Board (e.g., Arduino Uno)
Red BO Motor Wheel - Set of 2
Jumper Wires
Breadboard
Code
```cpp
const int leftMotorForward = 2; // Pin for left motor forward
const int leftMotorBackward = 3; // Pin for left motor backward
const int rightMotorForward = 4; // Pin for right motor forward
const int rightMotorBackward = 5; // Pin for right motor backward
void setup() {
pinMode(leftMotorForward, OUTPUT);
pinMode(leftMotorBackward, OUTPUT);
pinMode(rightMotorForward, OUTPUT);
pinMode(rightMotorBackward, OUTPUT);
}
void loop() {
// Move forward
digitalWrite(leftMotorForward, HIGH);
digitalWrite(rightMotorForward, HIGH);
delay(1000);
// Move backward
digitalWrite(leftMotorBackward, HIGH);
digitalWrite(rightMotorBackward, HIGH);
delay(1000);
// Stop
digitalWrite(leftMotorForward, LOW);
digitalWrite(rightMotorForward, LOW);
digitalWrite(leftMotorBackward, LOW);
digitalWrite(rightMotorBackward, LOW);
delay(1000);
}
```
### Example 2: Line Follower Robot using Raspberry Pi
This example demonstrates how to use the motor wheels to build a line follower robot using a Raspberry Pi.
Hardware Requirements
Raspberry Pi Board (e.g., Raspberry Pi 4)
Red BO Motor Wheel - Set of 2
L298N Motor Driver
Line Follower Sensor Module
Jumper Wires
Breadboard
Code
```python
import RPi.GPIO as GPIO
import time
# Set up GPIO pins
GPIO.setmode(GPIO.BCM)
left_motor_forward = 17
left_motor_backward = 23
right_motor_forward = 24
right_motor_backward = 25
GPIO.setup(left_motor_forward, GPIO.OUT)
GPIO.setup(left_motor_backward, GPIO.OUT)
GPIO.setup(right_motor_forward, GPIO.OUT)
GPIO.setup(right_motor_backward, GPIO.OUT)
# Set up line follower sensor
line_sensor = 18
GPIO.setup(line_sensor, GPIO.IN)
while True:
# Read line sensor value
sensor_value = GPIO.input(line_sensor)
if sensor_value:
# Move forward
GPIO.output(left_motor_forward, GPIO.HIGH)
GPIO.output(right_motor_forward, GPIO.HIGH)
else:
# Move backward
GPIO.output(left_motor_backward, GPIO.HIGH)
GPIO.output(right_motor_backward, GPIO.HIGH)
time.sleep(0.1)
```
These code examples demonstrate the basic control of the motor wheels and can be extended to create more complex robotics projects.