Thejas Raja Elandassery
Published

Paradox RoboRumble Robot

Paradox RoboRumble Robot

BeginnerFull instructions provided10 hours162
Paradox RoboRumble Robot

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
Motor Driver L293d
×1
HC-05 Bluetooth Module
HC-05 Bluetooth Module
×1
DC Motor, 12 V
DC Motor, 12 V
×7
Jumper wires (generic)
Jumper wires (generic)
×1
Any Generic Chasis
×1
Any Wheels
×4
Male/Female Jumper Wires
Male/Female Jumper Wires
×1

Software apps and online services

Arduino IDE
Arduino IDE

Hand tools and fabrication machines

Hot glue gun (generic)
Hot glue gun (generic)
Soldering iron (generic)
Soldering iron (generic)
Solder Wire, Lead Free
Solder Wire, Lead Free
10 Pc. Jumper Wire Kit, 5 cm Long
10 Pc. Jumper Wire Kit, 5 cm Long

Story

Read more

Schematics

Schematics

Code

Arduino Code for the Bot

Arduino
Don't forget to install the AFMotor Library
#include <AFMotor.h>

AF_DCMotor motorR(4);
AF_DCMotor motorL(2);
AF_DCMotor motorU(3);
AF_DCMotor motorW(1);

int command;

void setup() {


Serial.begin(9600);
motorR.setSpeed(255);
motorL.setSpeed(255);
motorU.setSpeed(255);
motorW.setSpeed(255);
}

void loop() {
command = Serial.read();

                                        /*     ARM Code    */

if(command == 216)   //elbow servo move according to the thumb position on the mob app between 0 -- 180  .
{
  motorR.run(FORWARD);
  motorL.run(FORWARD);
  motorU.run(FORWARD);
  motorW.run(FORWARD);
}
else if (command == 217)

{
  motorR.run(BACKWARD);
  motorL.run(BACKWARD);
  motorU.run(BACKWARD);
  motorW.run(BACKWARD);
}
else if (command == 218)

{
  motorR.run(FORWARD);
  motorL.run(BACKWARD);
  motorU.run(FORWARD);
  motorW.run(BACKWARD);
}
else if (command == 219)

{
  motorR.run(BACKWARD);
  motorL.run(FORWARD);
  motorU.run(BACKWARD);
  motorW.run(FORWARD);
}

else if(command == 0)
{
  motorR.run(RELEASE);
  motorL.run(RELEASE);
  motorU.run(RELEASE);
  motorW.run(RELEASE);
}

}

Credits

Thejas Raja Elandassery

Thejas Raja Elandassery

2 projects • 3 followers

Comments