Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
hrsajjad844
Published © MIT

Bluetooth Controlled Robot Car

Ever wanted to make one yourself? controlled by your own smartphone? This is for you.

AdvancedShowcase (no instructions)425
Bluetooth Controlled Robot Car

Things used in this project

Story

Read more

Schematics

Schematic

Here is the circuit diagram.

Code

Code

C/C++
Here is the project code
int lmp1=4, lmp2=5, rmp1=2, rmp2=3;
char incomingData;
#include "function.h"
void setup() {
  Serial.begin(9600);
  pinMode(2,OUTPUT);
  pinMode(3,OUTPUT);
  pinMode(4,OUTPUT);
  pinMode(5,OUTPUT);
  
}

void loop() {
  if(Serial.available()>0){
    incomingData = Serial.read();
    if(incomingData == 'F'){
      Serial.print("For");
      goForward();
      delay(500);
      stopCar();
    }
    else if(incomingData == 'B'){
      goBackward();
      delay(500);
      stopCar();
    }
    else if(incomingData == 'L'){
      leftTurn();
      delay(500);
      stopCar();
    }
    else if(incomingData == 'R'){
      rightTurn(); 
      delay(500);
      stopCar();
    }
    else if(incomingData == 'X'){;
      stopCar();
    }
    else if(incomingData == 'Y'){
      stopCar();
    }
   
  }
  

}

Credits

hrsajjad844
1 project • 16 followers
Contact

Comments

Please log in or sign up to comment.