Stufin
Home Quick Cart Profile

Red BO Motor Wheel +100 RPM Single Shaft BO Motor - Set of 2

Buy Now on Stufin

Motor Type

Single Shaft BO Motor

Nominal Speed

100 RPM

Motor Voltage

[Insert voltage rating]

Motor Current

[Insert current rating]

Wheel Diameter

[Insert wheel diameter]

Wheel Width

[Insert wheel width]

Shaft Diameter

[Insert shaft diameter]

Mounting Method

[Insert mounting method]

Applications

The Red BO Motor Wheel +100 RPM Single Shaft BO Motor is suitable for a wide range of IoT and robotic applications, including

Robotics and robotic platforms

Autonomous vehicles and drones

Mechatronic systems and automation projects

IoT devices and sensor platforms

Industrial automation and control systems

Conclusion

The Red BO Motor Wheel +100 RPM Single Shaft BO Motor is a high-performance component designed to provide reliable and efficient mobility in various IoT and robotic applications. With its robust construction, compact design, and easy mounting system, this component is an ideal choice for building robots, autonomous vehicles, and other mechatronic systems.

Pin Configuration

  • Red BO Motor Wheel +100 RPM Single Shaft BO Motor - Set of 2
  • Pin Description:
  • The Red BO Motor Wheel +100 RPM Single Shaft BO Motor has a total of 3 pins. Here's a detailed description of each pin:
  • Pin 1: VCC (Positive Power Supply)
  • Function: Provides positive power supply to the motor
  • Voltage Range: 3V to 12V (recommended operating voltage: 6V to 9V)
  • Typical Current Consumption: 100mA to 500mA (depending on the load and motor speed)
  • Pin 2: GND (Ground)
  • Function: Provides a ground connection for the motor
  • Connects to the negative terminal of the power supply or the ground pin of a microcontroller
  • Pin 3: Signal (Motor Control)
  • Function: Controls the motor's direction and speed
  • Signal Type: Digital signal (0V to VCC)
  • Logic Levels:
  • + Low (0V to 0.5V): Motor is OFF
  • + High (VCC to VCC-0.5V): Motor is ON and spinning in one direction
  • PWM (Pulse-Width Modulation) capable for speed control:
  • + Duty Cycle 0% to 100%: Motor speed control (0% = 0 RPM, 100% = 100 RPM)
  • Connection Structure:
  • To connect the Red BO Motor Wheel, follow these steps:
  • 1. Power Supply Connection:
  • Connect Pin 1 (VCC) to a positive power supply (3V to 12V) using a suitable wire or jumper.
  • Ensure the power supply is rated for the motor's maximum current consumption.
  • 2. Ground Connection:
  • Connect Pin 2 (GND) to the negative terminal of the power supply or the ground pin of a microcontroller using a suitable wire or jumper.
  • 3. Motor Control Connection:
  • Connect Pin 3 (Signal) to a digital output pin of a microcontroller or a motor driver IC.
  • Use a suitable wire or jumper, ensuring the signal line is short and well-insulated to prevent electromagnetic interference (EMI).
  • Example Connection:
  • Suppose you're using an Arduino Uno microcontroller to control the motor. Connect the motor as follows:
  • Pin 1 (VCC) -> Arduino's 5V pin
  • Pin 2 (GND) -> Arduino's GND pin
  • Pin 3 (Signal) -> Arduino's Digital Pin 9 (or any available digital output pin)
  • Important Notes:
  • Ensure the power supply voltage and current rating are suitable for the motor's operating requirements.
  • Use a suitable motor driver IC or a transistor-based driver circuit if you're using a microcontroller with limited current sourcing capability.
  • Always follow proper safety precautions when working with electrical systems and ensure the motor is properly mounted and secured to prevent mechanical damage or injury.

Code Examples

Red BO Motor Wheel +100 RPM Single Shaft BO Motor - Set of 2
Overview
The Red BO Motor Wheel +100 RPM Single Shaft BO Motor is a high-quality motor wheel set designed for robotics, automation, and IoT projects. This set of two motors provides a reliable and efficient solution for applications requiring precise motion control. Each motor features a single shaft, making it ideal for applications where space is limited.
Technical Specifications
Motor Type: BO Motor
 RPM: 100 RPM
 Shaft Type: Single Shaft
 Motor Wheel Material: Red Plastic
 Power Supply: 3-6V DC
 Current Consumption: 100-200mA
 Torque: 1.5 kg.cm
 Operating Temperature: -20C to 60C
Examples and Code Snippets
Here are a few examples of how to use the Red BO Motor Wheel +100 RPM Single Shaft BO Motor in different contexts:
Example 1: Arduino Robot Car
In this example, we'll demonstrate how to control the motor wheels using an Arduino Uno board. We'll create a simple robot car that moves forward and backward using the motors.
Hardware Requirements:
Arduino Uno board
 Red BO Motor Wheel +100 RPM Single Shaft BO Motor (Set of 2)
 L298N Motor Driver IC
 Breadboard and jumper wires
Code:
```c
const int leftMotorForward = 2;
const int leftMotorBackward = 3;
const int rightMotorForward = 4;
const int rightMotorBackward = 5;
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(2000);
  
  // Stop
  digitalWrite(leftMotorForward, LOW);
  digitalWrite(rightMotorForward, LOW);
  delay(1000);
  
  // Move backward
  digitalWrite(leftMotorBackward, HIGH);
  digitalWrite(rightMotorBackward, HIGH);
  delay(2000);
  
  // Stop
  digitalWrite(leftMotorBackward, LOW);
  digitalWrite(rightMotorBackward, LOW);
  delay(1000);
}
```
Example 2: Raspberry Pi Robot Arm
In this example, we'll demonstrate how to control the motor wheels using a Raspberry Pi board. We'll create a simple robot arm that moves its joints using the motors.
Hardware Requirements:
Raspberry Pi board
 Red BO Motor Wheel +100 RPM Single Shaft BO Motor (Set of 2)
 L293D Motor Driver IC
 Breadboard and jumper wires
Code:
```python
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
leftMotorForward = 17
leftMotorBackward = 23
rightMotorForward = 24
rightMotorBackward = 25
GPIO.setup(leftMotorForward, GPIO.OUT)
GPIO.setup(leftMotorBackward, GPIO.OUT)
GPIO.setup(rightMotorForward, GPIO.OUT)
GPIO.setup(rightMotorBackward, GPIO.OUT)
while True:
    # Move joint 1
    GPIO.output(leftMotorForward, GPIO.HIGH)
    time.sleep(2)
    GPIO.output(leftMotorForward, GPIO.LOW)
    time.sleep(1)
    
    # Move joint 2
    GPIO.output(rightMotorForward, GPIO.HIGH)
    time.sleep(2)
    GPIO.output(rightMotorForward, GPIO.LOW)
    time.sleep(1)
```
These examples demonstrate the basic usage of the Red BO Motor Wheel +100 RPM Single Shaft BO Motor in different contexts. You can modify the code to suit your specific project requirements.