*Arduino*Bluetooth Car

*Arduino*Bluetooth Car Free App

Rated 4.00/5 (15) —  Free Android application by Rupak Poddar

About *Arduino*Bluetooth Car

This is a very simple and easy application to control Arduino Bluetooth car ....
note- you need to build your own car using Arduino micro-controller it wont work with ordinary RC car.Watch the video before installing the application.

Wiring Setup-
motor drive input1----------digital pin 12 (Arduino)
motor drive input2----------digital pin 11 (Arduino)
motor drive input3----------digital pin 10 (Arduino)
motor drive input4----------digital pin 9 (Arduino)
Led-digtal---------------------pin 13 (Arduino)
Bluetooth Module pin Rx-----Digital pin Tx(Arduino)
Bluetooth Module pin Tx-----Digital pin Rx(Arduino)


Arduino Code-
int m1 = 12;
int m2 = 11;
int b1 = 10;
int b2 = 9;
int light= 13;

String readString;

void setup() {
Serial.begin(9600);
pinMode(m1, OUTPUT);
pinMode(m2, OUTPUT);
pinMode(b1, OUTPUT);
pinMode(b2, OUTPUT);
pinMode(light, OUTPUT);
}

void loop() {
while (Serial.available()) {
delay(3);
char c = Serial.read();
readString += c;
}
if (readString.length() >0) {
Serial.println(readString);
if (readString == "f")
{
digitalWrite(m1, HIGH);
digitalWrite(m2, HIGH);
}
if (readString == "b")
{
digitalWrite(b1, HIGH);
digitalWrite(b2, HIGH);
}
if (readString == "l")
{
digitalWrite(m1, HIGH);
digitalWrite(b2, HIGH);
}
if (readString == "r")
{
digitalWrite(m2, HIGH);
digitalWrite(b1, HIGH);
}
if (readString == "s")
{
digitalWrite(m1, LOW);
digitalWrite(m2, LOW);
digitalWrite(b1, LOW);
digitalWrite(b2, LOW);
}
if (readString == "ledon")
{
digitalWrite(light, HIGH);
}
if (readString == "ledoff")
{
digitalWrite(light, LOW);
}

readString="";
}
}

//Watch my other videos on- https://www.youtube.com/channel/UCvR-ssFhPXo2xO1A9JfzXyA

How to Download / Install

Download and install *Arduino*Bluetooth Car version 1.7 on your Android device!
Downloaded 500+ times, content rating: Everyone
Android package: appinventor.ai_poddarrupak2808.Rupak_BT_Car, download *Arduino*Bluetooth Car.apk

All Application Badges

Free
downl.
Android
1.6+
Bug
buster
For everyone
Android app

App History & Updates

What's Changed
Crashing problem fixed
Version update *Arduino*Bluetooth Car was updated to version 1.7
More downloads  *Arduino*Bluetooth Car reached 500 - 1 000 downloads
Name changed  Name changed! Arduino Bluetooth car now is known as *Arduino*Bluetooth Car.

What are users saying about *Arduino*Bluetooth Car

S70%
by S####:

Add speed control

Q70%
by Q####:

Very friendly layout... Nice design

F70%
by F####:

Amazing for arduino

M70%
by M####:

Good app

G70%
by G####:

Very nice app


Share The Word!


Rating Distribution

RATING
4.05
15 users

5

4

3

2

1