Arduino Bluetooth Car Control APK

Arduino Bluetooth Car Control  Icon
    
5/5
12 Ratings
Developer
jSands
Current Version
1.0
Date Published
File Size
3.0 MB
Package ID
com.jsands.joaosantos.arduinobluetoothcarcontrol
Price
$ 0.00
Downloads
50+
Category
Android Apps
Genre
Education

APK Version History

Version
1.0 (1)
Architecture
universal
Release Date
September 05, 2017
Requirement
Android 4.0+
  • Arduino Bluetooth Car Control Screenshot
  • Arduino Bluetooth Car Control Screenshot

About Radio FM 90s

With this application we can handle any wireless Bluetooth remote-controlled vehicle that uses the Arduino platform or a similar one.

void loop() {
if (bluetooth.available()) { // Checks whether data is comming from the serial port
comando = "";
while (bluetooth.available())
{
char x = bluetooth.read();
comando += x;
}
if (comando == "f")
front();
else if (comando == "e")
left();
else if (comando == "r")
right();
else if (comando == "p")
stopCar();
else if (comando == "b")
back();
else if (comando == "m")
more();

}

What's New in this version