Arduino Bluetooth Car HC-05 or HC-06 Application icon

Arduino Bluetooth Car HC-05 or HC-06 1.3

2.5 MB / 10+ Downloads / Rating 4.6 - 12 reviews


See previous versions

Arduino Bluetooth Car HC-05 or HC-06, developed and published by jSands, has released its latest version, 1.3, on 2019-08-28. This app falls under the Education category on the Google Play Store and has achieved over 1000 installs. It currently holds an overall rating of 4.6, based on 12 reviews.

Arduino Bluetooth Car HC-05 or HC-06 APK available on this page is compatible with all Android devices that meet the required specifications (Android 4.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: com.jsands.joaosantos.arduinbluetoothcar

Updated: 5 years ago

Developer Name: jSands

Category: Education

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing Arduino Bluetooth Car HC-05 or HC-06 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

4.6
Total 12 reviews

Reviews

1 ★, on 2020-08-05
Only plays ads

5 ★, on 2019-06-22
good app

Previous Versions

Arduino Bluetooth Car HC-05 or HC-06 1.3
2019-08-28 / 2.5 MB / Android 4.0+

Arduino Bluetooth Car HC-05 or HC-06 1.1
2023-12-12 / 2.5 MB / Android 4.0+

About this app

The application allows you to control an Arduino or Raspberry Pi based RC car over Bluetooth. This is done using a Bluetooth enabled Android phone.

***Warning***
Arduino Bluetooth Car does not search for devices by bluetooth. First you have to pair through the settings of your mobile phone.


If you have any problems, you can contact me and I'll help you.
Enjoy

You can use HC-05 or HC-06
Code:
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();

}

App Permissions

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