Arduino BT Car Control Application icon

Arduino BT Car Control 1

3.1 MB / 1+ Downloads / Rating 5.0 - 1 reviews


See previous versions

Arduino BT Car Control, developed and published by AmityLabs, has released its latest version, 1, on 2017-06-09. This app falls under the Tools category on the Google Play Store and has achieved over 50 installs. It currently holds an overall rating of 5.0, based on 1 reviews.

Arduino BT Car Control APK available on this page is compatible with all Android devices that meet the required specifications (Android 6.0+). 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: bcf.amitylabs.com.BCC

Updated: 8 years ago

Developer Name: AmityLabs

Category: Tools

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing Arduino BT Car Control 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 BT Car Control 1
2017-06-09 / 3.1 MB / Android 6.0+

About this app

La mejor aplicacion para proyectos con microcontroladores donde se requiera un control por blueooth como Carros, Brazos acrobáticos, Mandos a distancia, Automatizacion, etc...

Que envía esta App por el modulo Bluetooth:
Flecha Arriba = Caracter 'w'
Flecha Izquierda = Caracter 'a'
Flecha Derecha = Caracter 'd'
Flecha Abajo = Caracter 's'
Stop = Caracter 'T'
Boton1 = Caracter 'z'
Boton2 = Caracter 'x'
Boton3 = Caracter 'c'

---------------------------------------------------------------------------------
con este codigo para arduino se verifica los caracteres que envia la aplicacion.


char estado = 'g'; //

void setup() {
Serial.begin(9600); //
}

void loop() {

if(Serial.available()>0)
{
estado = Serial.read();
Serial.println(estado);
}



}

------------------------------------------------------------------------------------------------------

App Permissions

Allows applications to connect to paired bluetooth devices.
Allows applications to discover and pair bluetooth devices.