Lovely Remote Car Application icon

Lovely Remote Car 1.3

3.8 MB / 1+ Downloads / Rating 5.0 - 3 reviews


See previous versions

Lovely Remote Car, developed and published by Lovely ideas, has released its latest version, 1.3, on 2016-12-10. This app falls under the Auto & Vehicles category on the Google Play Store and has achieved over 100 installs. It currently holds an overall rating of 5.0, based on 3 reviews.

Lovely Remote Car APK available on this page is compatible with all Android devices that meet the required specifications (Android 1.6+). 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_ksjones777.REMOTE_CAR_LOVELYIDEAS

Updated: 8 years ago

Developer Name: Lovely ideas

Category: Auto & Vehicles

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing Lovely Remote Car 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 3 reviews

Previous Versions

Lovely Remote Car 1.3
2016-12-10 / 3.8 MB / Android 1.6+

About this 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;
}
}}

App Permissions

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