Stufin
Home Quick Cart Profile

Goli Castor Wheel (Pack of 4)

Buy Now on Stufin

Component Name

Goli Castor Wheel (Pack of 4)

Overview

The Goli Castor Wheel is a set of four Omni-directional wheels designed for IoT and robotics projects that require smooth, quiet, and consistent movement. These caster wheels are ideal for building autonomous robots, robotic platforms, and other IoT devices that need to move in multiple directions. The pack of four wheels ensures that users have a complete set for their projects, reducing the need for multiple orders or substitutions.

The Goli Castor Wheel is designed to provide

Omni-directional movementThe wheels can move in any direction, including forwards, backwards, left, right, and diagonally, making them ideal for IoT projects that require flexible movement.

Smooth and quiet operation

The wheels are designed to reduce noise and vibration, ensuring a smooth and quiet operation that won't disturb the surrounding environment.

Consistent movement

The casters are designed to maintain consistent movement, even on varying surfaces, ensuring that your IoT device can navigate different terrains with ease.

Materials

The wheels are constructed from high-quality plastic and rubber, ensuring durability and longevity.

Wheel Diameter

30mm (1.18 inches)

Wheel Width

10mm (0.39 inches)

Load Capacity

Each wheel can support a maximum load of 5kg (11lbs)

Mounting Options

The wheels come with a standard M4 screw hole for easy mounting to your IoT device or robotic platform.

Adjustable

The wheels can be adjusted to accommodate different surface types and terrain, ensuring smooth movement in various environments.

Low Friction

The wheels feature a low-friction design, reducing the effort required to move your IoT device and ensuring energy efficiency.

Applications

The Goli Castor Wheel is suitable for a wide range of IoT projects, including

Autonomous robots

Robotic platforms

IoT devices that require movement

Automated guided vehicles (AGVs)

Service robots

Educational robotics projects

Compatibility

The Goli Castor Wheel is compatible with most IoT devices and robotic platforms that require Omni-directional movement. However, users should ensure that the wheel's specifications meet their project's requirements before purchasing.

Packaging

The pack of four Goli Castor Wheels comes in a compact, protective package that includes

4 x Goli Castor Wheels

4 x M4 screws for mounting

1 x Instruction manual

Warranty and Support

The Goli Castor Wheel comes with a 1-year warranty and dedicated technical support to ensure that users have a hassle-free experience with their IoT projects.

Pin Configuration

  • Goli Castor Wheel (Pack of 4) Documentation
  • Pinout Explanation
  • The Goli Castor Wheel is a widely used IoT component in robotics and automation systems. It is essential to understand the pinout of this component to ensure proper connection and functionality. Below is a detailed explanation of each pin:
  • Pin 1: VCC (Power Supply)
  • Function: Provides power to the castor wheel motor
  • Voltage: Typically 5V or 6V (depending on the motor specifications)
  • Connection: Connect to a power source, such as a battery or a voltage regulator
  • Note: Ensure the voltage supply meets the motor's specifications to avoid damage
  • Pin 2: GND (Ground)
  • Function: Provides a common ground reference for the castor wheel motor
  • Connection: Connect to the ground terminal of the power source or the microcontroller
  • Note: A stable ground connection is crucial for the motor's proper operation
  • Pin 3: Motor CW (Clockwise Rotation)
  • Function: Controls the castor wheel motor's rotation in a clockwise direction
  • Signal: Typically a digital signal (HIGH or LOW) from a microcontroller
  • Connection: Connect to a digital output pin of a microcontroller (e.g., Arduino, Raspberry Pi)
  • Note: Applying a HIGH signal to this pin will rotate the motor clockwise
  • Pin 4: Motor CCW (Counter-Clockwise Rotation)
  • Function: Controls the castor wheel motor's rotation in a counter-clockwise direction
  • Signal: Typically a digital signal (HIGH or LOW) from a microcontroller
  • Connection: Connect to a digital output pin of a microcontroller (e.g., Arduino, Raspberry Pi)
  • Note: Applying a HIGH signal to this pin will rotate the motor counter-clockwise
  • Connection Structure:
  • To connect the Goli Castor Wheel to a microcontroller, follow this structure:
  • Connect Pin 1 (VCC) to a 5V or 6V power source (depending on the motor specifications)
  • Connect Pin 2 (GND) to the ground terminal of the power source or the microcontroller
  • Connect Pin 3 (Motor CW) to a digital output pin of the microcontroller (e.g., D2 on Arduino Uno)
  • Connect Pin 4 (Motor CCW) to a digital output pin of the microcontroller (e.g., D3 on Arduino Uno)
  • Example Connection Diagram:
  • Here's an example connection diagram using an Arduino Uno microcontroller:
  • ```
  • +---------------+
  • | Goli Castor |
  • | Wheel (Pack |
  • | of 4) |
  • +---------------+
  • |
  • |
  • v
  • +---------------+
  • | Arduino Uno |
  • | Microcontroller|
  • +---------------+
  • |
  • |
  • v
  • +---------------+
  • | Power Source |
  • | (5V or 6V) |
  • +---------------+
  • |
  • |
  • v
  • +---------------+
  • | GND |
  • | (Ground) |
  • +---------------+
  • ```
  • Important Notes:
  • Ensure the motor specifications match the power supply voltage and current ratings.
  • Use a suitable motor driver or H-bridge IC if the microcontroller cannot provide sufficient current to drive the motor.
  • Always follow proper soldering and connection techniques to avoid damage to the component or the microcontroller.
  • By following this documentation, you should be able to successfully connect and control the Goli Castor Wheel using a microcontroller. If you have any further questions or concerns, please feel free to ask.

Code Examples

Goli Castor Wheel (Pack of 4) Documentation
Overview
The Goli Castor Wheel is a pack of 4 omnidirectional wheels designed for robotic and IoT applications. Each wheel features a sturdy plastic body with a robust metal shaft, making it suitable for carrying moderate payloads. The omnidirectional design allows for smooth movement in any direction, making it ideal for robotic platforms, autonomous vehicles, and other IoT devices.
Technical Specifications
Material: Plastic body with metal shaft
 Diameter: 60mm
 Width: 20mm
 Shaft diameter: 8mm
 Load capacity: Up to 10kg per wheel
 Operating temperature: -20C to 60C
Code Examples
### Example 1: Using the Goli Castor Wheel with an Arduino Robot
In this example, we'll demonstrate how to use the Goli Castor Wheel with an Arduino Uno board to create a simple robotic platform.
Hardware Requirements
Arduino Uno board
 Goli Castor Wheel (Pack of 4)
 DC motors (e.g., L298N)
 Motor driver (e.g., L298N)
 Power supply
 Breadboard and jumper wires
Code
```c++
const int motorLeftForward = 2;
const int motorLeftBackward = 3;
const int motorRightForward = 4;
const int motorRightBackward = 5;
void setup() {
  pinMode(motorLeftForward, OUTPUT);
  pinMode(motorLeftBackward, OUTPUT);
  pinMode(motorRightForward, OUTPUT);
  pinMode(motorRightBackward, OUTPUT);
}
void loop() {
  // Move forward
  digitalWrite(motorLeftForward, HIGH);
  digitalWrite(motorRightForward, HIGH);
  delay(1000);
// Move backward
  digitalWrite(motorLeftBackward, HIGH);
  digitalWrite(motorRightBackward, HIGH);
  delay(1000);
// Turn left
  digitalWrite(motorLeftBackward, HIGH);
  digitalWrite(motorRightForward, HIGH);
  delay(500);
// Turn right
  digitalWrite(motorLeftForward, HIGH);
  digitalWrite(motorRightBackward, HIGH);
  delay(500);
}
```
This code example demonstrates how to control the DC motors connected to the Goli Castor Wheels using the Arduino Uno board. The motors are controlled to move the robotic platform forward, backward, left, and right.
### Example 2: Using the Goli Castor Wheel with a Raspberry Pi Robot
In this example, we'll demonstrate how to use the Goli Castor Wheel with a Raspberry Pi board to create a more advanced robotic platform.
Hardware Requirements
Raspberry Pi board (e.g., Raspberry Pi 4)
 Goli Castor Wheel (Pack of 4)
 DC motors (e.g., L298N)
 Motor driver (e.g., L298N)
 Power supply
 Breadboard and jumper wires
Code
```python
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
motor_left_forward = 17
motor_left_backward = 23
motor_right_forward = 24
motor_right_backward = 25
GPIO.setup(motor_left_forward, GPIO.OUT)
GPIO.setup(motor_left_backward, GPIO.OUT)
GPIO.setup(motor_right_forward, GPIO.OUT)
GPIO.setup(motor_right_backward, GPIO.OUT)
while True:
    # Move forward
    GPIO.output(motor_left_forward, GPIO.HIGH)
    GPIO.output(motor_right_forward, GPIO.HIGH)
    time.sleep(1)
# Move backward
    GPIO.output(motor_left_backward, GPIO.HIGH)
    GPIO.output(motor_right_backward, GPIO.HIGH)
    time.sleep(1)
# Turn left
    GPIO.output(motor_left_backward, GPIO.HIGH)
    GPIO.output(motor_right_forward, GPIO.HIGH)
    time.sleep(0.5)
# Turn right
    GPIO.output(motor_left_forward, GPIO.HIGH)
    GPIO.output(motor_right_backward, GPIO.HIGH)
    time.sleep(0.5)
```
This code example demonstrates how to control the DC motors connected to the Goli Castor Wheels using the Raspberry Pi board. The motors are controlled to move the robotic platform forward, backward, left, and right using Python.
Note: These code examples are for illustrative purposes only and may require modification to suit your specific robotic platform and IoT application.