Lovely Remote Car 1.3 Icon

Lovely Remote Car

Lovely ideas Auto & Vehicles
4
4 Ratings
100+
Downloads
1.3
version
Apr 13, 2017
release date
3.8 MB
file size
Free
Download

What's New

About Lovely Remote Car Android App

App for controlling the Bluetooth car. The code,circuit diagram and construction of it is in http://lovelyideas.in/arduino.html

code :

int inByte;
void setup()
{
Serial.begin(9600);
pinMode(9, OUTPUT);
pinMode(10, OUTPUT);
pinMode(11, OUTPUT);
pinMode(12, OUTPUT);
}
void loop()
{
if (Serial.available() > 0)
{
inByte = Serial.read();
switch (inByte)
{
case '1':
digitalWrite(9, LOW);
digitalWrite(10, HIGH);
digitalWrite(11, LOW);
digitalWrite(12, HIGH);
Serial.println("FRONT");

break;
case '2':
digitalWrite(9, HIGH);
digitalWrite(10, LOW);
digitalWrite(11, HIGH);
digitalWrite(12, LOW);
Serial.println("BACK");
break;
case '3':
digitalWrite(9, LOW);
digitalWrite(10, LOW);
digitalWrite(11, LOW);
digitalWrite(12, HIGH);
Serial.println("LEFT");
break;
case '4':
digitalWrite(9, LOW);
digitalWrite(10, HIGH);
digitalWrite(11, LOW);
digitalWrite(12, LOW);
Serial.println("RIGHT");
break;
case '5':
digitalWrite(9, LOW);
digitalWrite(10, LOW);
digitalWrite(11, LOW);
digitalWrite(12, LOW);
Serial.println("STOP");
break;
}
}}

Other Information:

Requires Android:
Android 1.6+
Other Sources:

Download

This version of Lovely Remote Car Android App comes with one universal variant which will work on all the Android devices.

Variant
1
(Apr 13, 2017)
Architecture
universal
Minimum OS
Android 1.6+
Screen DPI
nodpi (all screens)

All Versions

If you are looking to download other versions of Lovely Remote Car Android App, We have 1 version in our database. Please select one of them below to download.

Loading..