Zbotic Logo Zbotic Logo
  • Home
  • Shop
  • Sale
  • 3D Print Service
  • PCB Service
  • B2B
  • Blogs
  • Contact Us
0 0

View Wishlist Add all to cart

0 0
0 Shopping Cart
Shopping cart (0)
Subtotal: ₹0.00

View cartCheckout

  • Shop
  • About Us
  • Contact Us
  • Reseller
  • Blogs
020 69134444
1800 209 0998
[email protected]
Help Desk
Facebook Twitter Instagram Linkedin YouTube
Zbotic Logo Zbotic Logo
0 0

View Wishlist Add all to cart

0 0
0 Shopping Cart
Shopping cart (0)
Subtotal: ₹0.00

View cartCheckout

All departments
  • 3D Print Service
  • 3D Printer
  • Batteries & Chargers
  • Development Boards
  • Drone Parts
  • EBike parts
  • Sensor Modules
  • Electronic Components
  • Electronic Modules
  • IoT and Wireless
  • Mechanical Parts and Workbench Tools
  • Motors & Drivers & Pumps & Actuators
  • DIY and Robot Kits
  • Show more
  • Home
  • Shop
  • Sale
  • 3D Print Service
  • PCB Service
  • B2B
  • Blogs
  • Contact Us
Return to previous page
Home Robotics & DIY

Sumo Robot: Competition Build Guide India

Sumo Robot: Competition Build Guide India

April 1, 2026 /Posted by / 0

Sumo robot competitions are among the most exciting events in Indian robotics, pitting small autonomous robots against each other in a battle of strategy, power, and sensor intelligence. If you are planning to build a sumo robot for your next college tech fest or national-level competition, this guide covers everything from weight-class rules and motor selection to sensor strategy and pushing techniques that give you a competitive edge.

Table of Contents

  • Competition Rules and Weight Classes
  • Design Strategy and Principles
  • Components Selection
  • Sensor Configuration
  • Chassis Design for Maximum Grip
  • Arduino Code for Sumo Bot
  • Winning Tactics and Strategies
  • Frequently Asked Questions

Competition Rules and Weight Classes

Most Indian robotics competitions follow standard sumo rules. Two robots are placed inside a circular ring (dohyo) and must push the opponent out while staying inside the ring boundary.

Class Max Weight Max Size Ring Diameter
Mini Sumo 500g 10 x 10 cm 77 cm
Standard (3kg) 3 kg 20 x 20 cm 154 cm
Mega Sumo Custom Custom Custom

The ring has a white border (tawara) that robots must detect to avoid falling off, and a black interior surface.

Design Strategy and Principles

Winning sumo robots share these design characteristics:

  • Low centre of gravity: Place the battery and heaviest components at the bottom.
  • Front wedge/scoop: A low front profile slides under the opponent, leveraging them upward and reducing their traction.
  • Maximum weight: Use every gram of your allowance. Add steel weights if needed. Heavier robots are harder to push.
  • High-traction wheels/treads: Grip is everything. Silicone or rubber tread with maximum contact area.
  • Powerful motors: High-torque, high-stall-current motors provide the pushing force.

Components Selection

Motors

For a 3kg sumo robot, use high-torque gear motors. The 25GA-370 series at 12V with 150-400 RPM is popular. Higher torque is more important than speed — you want pushing force, not racing speed.

🛒 Recommended: 25GA-370 12V 150RPM DC Gear Motor — High-torque metal gear motor with excellent pushing power. Ideal for the 3kg sumo class.

Motor Driver

The L298N handles standard sumo motors. For more powerful motors drawing over 2A, use the BTS7960 43A H-Bridge driver which can handle serious current.

🛒 Recommended: BTS7960 43A H-Bridge Motor Driver — High-current motor driver that can handle the stall current of powerful sumo motors without breaking a sweat.

Sensor Configuration

A sumo robot needs two types of sensors:

Edge Detection (Line Sensors)

Mount 2-4 IR line sensors at the bottom corners of the robot, facing downward. These detect the white border of the ring. When any sensor sees white, the robot must immediately reverse and turn away from that edge.

Opponent Detection (Distance Sensors)

Mount 2-3 ultrasonic sensors or IR proximity sensors at the front and sides. These scan for the opponent robot. The robot turns toward the detected opponent and charges.

🛒 Recommended: 3-Channel Tracking Module — Compact line sensor module perfect for mounting underneath a sumo robot for edge detection.

Chassis Design for Maximum Grip

Manufacture the chassis from steel or aluminium plate for maximum weight. Include:

  • A front scoop/wedge angled at 15-30 degrees
  • Side skirts that prevent opponents from getting underneath
  • Wide rubber or silicone wheels for maximum traction
  • Battery compartment in the centre-bottom for low CG

Arduino Code for Sumo Bot


// Sumo Robot - Arduino
const int ENA = 9, IN1 = 8, IN2 = 7;   // Left motor
const int ENB = 10, IN3 = 5, IN4 = 4;  // Right motor
const int TRIG = 11, ECHO = 12;         // Ultrasonic
const int EDGE_L = A0, EDGE_R = A1;     // Edge sensors

int maxSpeed = 255;
int searchSpeed = 180;
int edgeThreshold = 300; // Calibrate: low = black, high = white

void setup() {
  pinMode(ENA, OUTPUT); pinMode(IN1, OUTPUT); pinMode(IN2, OUTPUT);
  pinMode(ENB, OUTPUT); pinMode(IN3, OUTPUT); pinMode(IN4, OUTPUT);
  pinMode(TRIG, OUTPUT); pinMode(ECHO, INPUT);
  delay(5000); // 5-second start delay (competition rule)
}

void setMotors(int left, int right) {
  digitalWrite(IN1, left >= 0 ? HIGH : LOW);
  digitalWrite(IN2, left >= 0 ? LOW : HIGH);
  analogWrite(ENA, abs(constrain(left, -255, 255)));
  digitalWrite(IN3, right >= 0 ? HIGH : LOW);
  digitalWrite(IN4, right >= 0 ? LOW : HIGH);
  analogWrite(ENB, abs(constrain(right, -255, 255)));
}

long getDistance() {
  digitalWrite(TRIG, LOW); delayMicroseconds(2);
  digitalWrite(TRIG, HIGH); delayMicroseconds(10);
  digitalWrite(TRIG, LOW);
  long duration = pulseIn(ECHO, HIGH, 30000);
  return duration * 0.034 / 2;
}

void loop() {
  int edgeL = analogRead(EDGE_L);
  int edgeR = analogRead(EDGE_R);

  // Priority 1: Edge avoidance
  if (edgeL > edgeThreshold) {
    setMotors(-maxSpeed, -maxSpeed); delay(200);
    setMotors(maxSpeed, -maxSpeed); delay(300);
    return;
  }
  if (edgeR > edgeThreshold) {
    setMotors(-maxSpeed, -maxSpeed); delay(200);
    setMotors(-maxSpeed, maxSpeed); delay(300);
    return;
  }

  // Priority 2: Attack if opponent detected
  long dist = getDistance();
  if (dist > 0 && dist < 60) {
    setMotors(maxSpeed, maxSpeed); // CHARGE!
  } else {
    // Search: spin slowly looking for opponent
    setMotors(searchSpeed, -searchSpeed);
  }
}

Winning Tactics and Strategies

  1. The Edge Dodge: Start near the edge. When the opponent charges, sidestep and let their momentum carry them out.
  2. The Bull Rush: Maximum speed charge from the centre. Works best with a wedge front.
  3. The Spinner: Rotate in place until the opponent is detected, then charge directly. Minimises time facing away from the opponent.
  4. The Corner Trap: Push the opponent toward the edge at an angle, giving them less room to escape.
🛒 Recommended: 65mm Robot Smart Car Wheel (Blue) — Good grip rubber wheels suitable for sumo robot builds.

Frequently Asked Questions

What battery should I use for a sumo robot?

An 11.1V 3S LiPo battery provides excellent power-to-weight ratio. For the 3kg class, a 1000-2200mAh pack is sufficient. LiPo batteries deliver high current for the powerful motors needed in sumo competition.

Can I use BO motors for a sumo robot?

BO motors work for mini sumo (500g class) but lack the torque for the 3kg class. Use metal-geared DC motors (25GA-370 series or similar) for serious competition.

How important is the front wedge design?

Extremely important. A well-designed wedge slides under the opponent, lifting their drive wheels off the ground and reducing their traction to zero. Many matches are decided by which robot has the better wedge angle.

What is the 5-second rule in sumo competitions?

Most competitions require robots to wait 5 seconds after being placed in the ring before starting. This prevents premature movement and allows the referee to step clear.

Conclusion

Building a competitive sumo robot combines mechanical engineering, sensor integration, and strategic programming. Focus on maximum weight, low centre of gravity, a good wedge, and powerful motors. The Indian robotics competition scene is growing rapidly — build your sumo bot and enter the next tech fest near you.

Shop all your sumo robot components at Zbotic.in.

Tags: Arduino, Competition, India, Robotics, sumo robot
Share Post
  • Facebook
  • Linkedin
  • Whatsapp
WS2812B LED Strip Projects: Co...
blog ws2812b led strip projects complete neopixel guide india 612578
blog best waveshare products for beginners starter recommendations 612585
Best Waveshare Products for Be...

Related posts

Svg%3E
Read more

Caterpillar Track Robot: Tank-Drive Build for All Terrain

April 1, 2026 0
When wheels lose grip on sand, gravel, grass, or loose surfaces, caterpillar tracks keep moving. A tank-track robot distributes its... Continue reading
Svg%3E
Read more

RC Car to Robot: Convert a Toy Car into an Autonomous Robot

April 1, 2026 0
That old RC toy car gathering dust can be transformed into an Arduino-controlled autonomous robot with just a few electronic... Continue reading
Svg%3E
Read more

Robotic Arm Kit India: Best Options for Students and Hobbyists

April 1, 2026 0
If you are a student or hobbyist looking to get into robotics, a robotic arm kit is one of the... Continue reading
Svg%3E
Read more

Robot Arm Build: 6-DOF Servo Arm with Arduino Control

April 1, 2026 0
Building a 6-DOF robot arm with servo motors and Arduino is one of the most rewarding robotics projects you can... Continue reading
Svg%3E
Read more

PID Controller Tutorial: Theory & Arduino Implementation Guide

March 11, 2026 0
A PID controller — Proportional, Integral, Derivative — is the workhorse of industrial and hobbyist control systems. Whether you are... Continue reading

Add comment Cancel reply

Your email address will not be published. Required fields are marked

Facebook Twitter Instagram Pinterest Linkedin Youtube

Get the latest deals and more.

Download on Google Play Download on the App Store

Call us: 020 69134444 / 1800 209 0998

Monday - Saturday 09:30 AM - 06:00 PM
For Technical Supports Email: [email protected]
For Sales / Enquiries Email: [email protected]

  • My Account

    • Cart

    • Wishlist

    • Checkout

    • My Orders

    • Track Order

    • My Account

  • Information

    • FAQs

    • Blogs

    • Career

    • About Us

    • Contact Us

    • Payment Options

  • Policies

    • Privacy Policy

    • Terms & Conditions

    • GST Input Tax Credit

    • Shipping Return Policy

    • E-Waste Collection Points

    • Our Sitemap

© Zbotic.in is registered trademark of Moxie Supply Pvt Ltd – All Rights Reserved
Login
Use Phone Number
Use Email Address
Not a member yet? Register Now
Reset Password
Use Phone Number
Use Email Address
Register
Already a member? Login Now