Stufin
Home Quick Cart Profile

Goli Castor wheel

Buy Now on Stufin

Robotics

Autonomous robots, robotic arms, and other robotic platforms

Automation

Conveyor systems, automated guided vehicles (AGVs), and material handling systems

Smart Furniture

Smart chairs, tables, and other Moveable furniture

Key Features

  • Omnidirectional Movement: The Goli Castor wheel is designed with a unique spherical bearing system, enabling it to move freely in any direction, including forward, backward, left, right, and rotational movements.
  • High-Precision Control: The castor wheel features a built-in encoder that provides precise movement tracking and control, allowing for accurate navigation and positioning.
  • IoT-Enabled: The Goli Castor wheel comes equipped with wireless communication capabilities (Wi-Fi, Bluetooth, or Zigbee), enabling real-time data transmission and remote monitoring.
  • Durable and Robust: Constructed with high-quality materials, the castor wheel is designed to withstand heavy loads and harsh environmental conditions, making it suitable for industrial and commercial applications.
  • Adjustable Height and Tilt: The castor wheel features an adjustable height and tilt mechanism, allowing for easy customization to suit specific application requirements.
  • Low Friction and Noise: The wheel's advanced bearing system ensures low friction and noise levels, making it suitable for applications where quiet operation is essential.
  • Customizable: The Goli Castor wheel can be customized to fit specific application requirements, including different materials, sizes, and load capacities.

Technical Specifications

Load Capacity

Up to 500 kg (1100 lbs)

Wheel Diameter

100 mm (3.94 in)

Wheel Material

Aluminum or Stainless Steel (optional)

Bearing Type

Spherical bearing system

Encoder Resolution

1024 pulses per revolution

Wireless Communication

Wi-Fi, Bluetooth, or Zigbee (optional)

Operating Temperature

-20C to 50C (-4F to 122F)

IP Rating

IP65 (optional)

Applications

Robotics and automation

Smart furniture and home automation

Industrial material handling and logistics

Healthcare and medical devices

Aerospace and defense applications

Development Resources

SDK and APIs

Available for developers to integrate the Goli Castor wheel with their applications

Datasheet and Documentation

Detailed technical documentation and datasheets available for download

Community Support

Active community forum and support channels for developers and engineers

By leveraging the Goli Castor wheel's advanced features and capabilities, developers and engineers can create innovative and functional IoT-enabled projects that revolutionize various industries and aspects of daily life.

Pin Configuration

  • Goli Castor Wheel Documentation
  • Pinout Description
  • The Goli Castor wheel is a robust and durable wheel solution for robotics and IoT projects. It features a modular design with a built-in encoder and wheel module. The pinout description below explains the functionality of each pin, making it easier to integrate the Goli Castor wheel into your project.
  • Pinout Structure:
  • The Goli Castor wheel has a 10-pin interface, with the pins distributed on two rows of 5 pins each. The pinout structure is as follows:
  • Row 1 (Top Row):
  • 1. VCC (5V): Power supply pin for the wheel module. Connect to a 5V power source.
  • 2. GND: Ground pin for the wheel module. Connect to the system ground.
  • 3. SCL (Clock): I2C clock signal pin. Connect to the I2C clock pin of your microcontroller.
  • 4. SDA (Data): I2C data signal pin. Connect to the I2C data pin of your microcontroller.
  • 5. INT (Interrupt): Interrupt pin for encoder data. Connect to an interrupt-capable digital input on your microcontroller.
  • Row 2 (Bottom Row):
  • 6. ENC_A (Encoder A): Encoder output pin A. Connect to a digital input on your microcontroller to read encoder data.
  • 7. ENC_B (Encoder B): Encoder output pin B. Connect to a digital input on your microcontroller to read encoder data.
  • 8. ENC_Z (Encoder Index): Encoder index pin. Connect to a digital input on your microcontroller to detect wheel rotation index.
  • 9. DIR (Direction): Direction control pin. Connect to a digital output on your microcontroller to control wheel direction.
  • 10. PWM (Speed Control): PWM speed control pin. Connect to a PWM-capable digital output on your microcontroller to control wheel speed.
  • Connection Guidelines:
  • When connecting the Goli Castor wheel to your microcontroller or development board:
  • Use suitable connectors and cables to ensure secure connections.
  • Ensure proper power supply and grounding to prevent damage to the wheel module.
  • I2C pins (SCL and SDA) should be connected to the corresponding I2C pins on your microcontroller.
  • Encoder pins (ENC_A, ENC_B, and ENC_Z) should be connected to digital inputs on your microcontroller.
  • Direction control pin (DIR) should be connected to a digital output on your microcontroller.
  • PWM speed control pin should be connected to a PWM-capable digital output on your microcontroller.
  • Important Notes:
  • Always refer to the datasheet and user manual of your specific microcontroller or development board for pinout and connection guidelines.
  • Ensure proper communication protocol and settings for I2C and encoder data transmission.
  • Use suitable protection circuitry, such as voltage regulators and decoupling capacitors, to ensure reliable operation and prevent damage to the wheel module.
  • By following these guidelines and understanding the pinout structure, you can successfully integrate the Goli Castor wheel into your robotics or IoT project.

Code Examples

Goli Castor Wheel Documentation
Overview
The Goli Castor Wheel is a versatile IoT component designed for building intelligent and autonomous robotics, automation systems, and IoT projects. This wheel features a robust and durable design, making it suitable for various applications, from lightweight robots to heavy-duty industrial machines.
Key Features
Omnidirectional movement: The Goli Castor Wheel allows for smooth, 360-degree movement, enabling efficient navigation in tight spaces.
 High load capacity: The wheel is designed to support heavy payloads, making it suitable for industrial and commercial applications.
 Easy integration: The wheel is compatible with various microcontrollers and development boards, including Arduino, Raspberry Pi, and ESP32.
Technical Specifications
Size: 120 mm (diameter) x 40 mm (width)
 Material: Durable polycarbonate with a rubberized tread
 Load capacity: Up to 50 kg (110 lbs)
 Speed: Up to 1.5 m/s (3.6 km/h or 2.2 mph)
 Voltage: 12V DC
 Current: 1A max
Code Examples
### Example 1: Basic Movement with Arduino
This example demonstrates how to control the Goli Castor Wheel using an Arduino board:
```c++
const int leftMotorForward = 2;  // Pin for left motor forward signal
const int leftMotorBackward = 3; // Pin for left motor backward signal
const int rightMotorForward = 4; // Pin for right motor forward signal
const int rightMotorBackward = 5; // Pin for right motor backward signal
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(leftMotorBackward, LOW);
  digitalWrite(rightMotorForward, LOW);
  digitalWrite(rightMotorBackward, LOW);
  delay(1000);
}
```
### Example 2: Autonomous Navigation with Raspberry Pi
This example demonstrates how to use the Goli Castor Wheel with a Raspberry Pi to create an autonomous navigation system:
```python
import RPi.GPIO as GPIO
import time
# Set up GPIO pins for motor control
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)
def move_forward():
  GPIO.output(left_motor_forward, GPIO.HIGH)
  GPIO.output(right_motor_forward, GPIO.HIGH)
def move_backward():
  GPIO.output(left_motor_backward, GPIO.HIGH)
  GPIO.output(right_motor_backward, GPIO.HIGH)
def turn_left():
  GPIO.output(left_motor_backward, GPIO.HIGH)
  GPIO.output(right_motor_forward, GPIO.HIGH)
def turn_right():
  GPIO.output(left_motor_forward, GPIO.HIGH)
  GPIO.output(right_motor_backward, GPIO.HIGH)
while True:
  # Read sensor data (e.g., ultrasonic, lidar, or camera) to determine navigation
  # ...
  
  # Move forward
  move_forward()
  time.sleep(1)
  
  # Turn left
  turn_left()
  time.sleep(0.5)
  
  # Move backward
  move_backward()
  time.sleep(1)
  
  # Turn right
  turn_right()
  time.sleep(0.5)
```
These examples demonstrate the basic usage of the Goli Castor Wheel in various contexts. You can modify and extend this code to fit your specific project requirements.