Arduino bluetooth car plus Application icon

Arduino bluetooth car plus 1.0

2.6 MB / 0+ Downloads / Rating 5.0 - 1 reviews


See previous versions

Arduino bluetooth car plus, developed and published by Rupak Poddar, has released its latest version, 1.0, on 2018-05-27. This app falls under the Productivity category on the Google Play Store and has achieved over 1 installs. It currently holds an overall rating of 5.0, based on 1 reviews.

Arduino bluetooth car plus APK available on this page is compatible with all Android devices that meet the required specifications (Android 2.1+). It can also be installed on PC and Mac using an Android emulator such as Bluestacks, LDPlayer, and others.

Read More

App Screenshot

App Screenshot

App Details

Package name: appinventor.ai_poddarrupak2808.Rupak_car_plus

Updated: 7 years ago

Developer Name: Rupak Poddar

Category: Productivity

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing Arduino bluetooth car plus on PC Windows and Mac.

Using BlueStacks

  1. Download the APK/XAPK file from this page.
  2. Install BlueStacks by visiting http://bluestacks.com.
  3. Open the APK/XAPK file by double-clicking it. This action will launch BlueStacks and begin the application's installation. If the APK file does not automatically open with BlueStacks, right-click on it and select 'Open with...', then navigate to BlueStacks. Alternatively, you can drag-and-drop the APK file onto the BlueStacks home screen.
  4. Wait a few seconds for the installation to complete. Once done, the installed app will appear on the BlueStacks home screen. Click its icon to start using the application.

Using LDPlayer

  1. Download and install LDPlayer from https://www.ldplayer.net.
  2. Drag the APK/XAPK file directly into LDPlayer.

If you have any questions, please don't hesitate to contact us.

App Rating

5.0
Total 1 reviews

Previous Versions

Arduino bluetooth car plus 1.0
2018-05-27 / 2.6 MB / Android 2.1+

About this app

Arduino Code-

int m1 = 12;
int m2 = 11;
int b1 = 10;
int b2 = 9;
int left = 8;
int right = 7;
int up = 6;
int down = 5;
int light= 13;

String readString;

void setup() {
Serial.begin(9600);
pinMode(m1, OUTPUT);
pinMode(m2, OUTPUT);
pinMode(b1, OUTPUT);
pinMode(b2, OUTPUT);
pinMode(left, OUTPUT);
pinMode(right, OUTPUT);
pinMode(up, OUTPUT);
pinMode(down, 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);
digitalWrite(left, LOW);
digitalWrite(right, LOW);
digitalWrite(up, LOW);
digitalWrite(down, LOW);
}
if (readString == "ledon")
{
digitalWrite(light, HIGH);
}
if (readString == "ledoff")
{
digitalWrite(light, LOW);
}
if (readString == "left")
{
digitalWrite(left, HIGH);
}
if (readString == "right")
{
digitalWrite(right, HIGH);
}
if (readString == "up")
{
digitalWrite(up, HIGH);
}
if (readString == "down")
{
digitalWrite(down, HIGH);
}
readString="";
}
}

App Permissions

Allows applications to open network sockets.
Allows applications to connect to paired bluetooth devices.
Allows applications to access information about Wi-Fi networks.
Allows applications to discover and pair bluetooth devices.
Allows applications to access information about networks.