Arduino Bluetooth Terminal

Arduino Bluetooth Terminal Free App

Rated 4.08/5 (12) —  Free Android application by Frederik Hauke

Advertisements

About Arduino Bluetooth Terminal

The easiest way to visualize Arduino Sensor-Data directly on your Android-Device in REALTIME! The App is able to display the values of up to 6 Sensors simultaneously.

Only required is to load some Code to your Arduino-Board, wire a Bluetooth-Module (like the HC-05) to the Arduino and couple Android-Device and Bluetooth-Module in the System-Preferences.
The App will establish a wireless Bluetooth-Serial-Connection between Arduino and Smartphone.

For a How-To click on the link:
http://www.instructables.com/id/How-to-Receive-Arduino-Sensor-Data-on-Your-Android/

Requirements:
-Arduino
-Bluetooth-Modul (HC-05, HC-06, ...)

The Bluetooth-Module has to be wired as shown at the labeling of the Module (Caution: HC-05 TX has to be wired to Arduino Pin 10 (RX), HC-05 RX has to be wired to Arduino Pin 11(TX)).
The following Code needs to be uploaded to the Arduino-Board:


/*Developer: Frederik Hauke

Important Notices:
ArduTooth: This Arduino-Code is written for Visualizating measurement data from a microcontroller via Bluetooth.
Before starting this application, the Bluetooth-Modul (HC-05) has to be coupled to the Smartphone.
In the special case of the HC-05 the default PinCode for initiating the Coupling-Process is "1234" or "0000".

Wiring:
GND of HC-05 to GND Arduino, VCC of HC-05 to VCC Arduino,
TX HC-05 to Arduino Pin 10 (RX)
RX HC-05 to Arduino Pin 11 (TX)
*/

#include
SoftwareSerial BTserial(10, 11); // RX | TX

int sensorPin = A0;
int sensorValue = 0;

void setup() {

BTserial.begin(9600);
}

void loop() {

sensorValue = analogRead(sensorPin);

//IMPORTANT: The complete String has to be of the Form: 1234,1234,1234,1234;
//(every Value has to be seperated through a comma (',') and the message has to
//end with a semikolon (';'))

BTserial.print("1234");
BTserial.print(",");
BTserial.print("1234.0");
BTserial.print(",");
BTserial.print("1234 hPa");
BTserial.print(",");
BTserial.print("500 ml/s");
BTserial.print(",");
BTserial.print(sensorValue);
BTserial.print(";");

//message to the receiving device

delay(20);
}

How to Download / Install

Download and install Arduino Bluetooth Terminal version 1.1 on your Android device!
Downloaded 1,000+ times, content rating: Everyone
Android package: com.frederikhauke.ArduTooth, download Arduino Bluetooth Terminal.apk

All Application Badges

Free
downl.
Android
4.0.3+
For everyone
Android app

App History & Updates

What's Changed
v1.1:
-now up to 10 sensors can be displayed simultaneously
-automatic adaption to the number of sensors
-some other improvements
Version update Arduino Bluetooth Terminal was updated to version 1.1
More downloads  Arduino Bluetooth Terminal reached 1 000 - 5 000 downloads
Name changed  Name changed! Arduino Bluetooth Data now is known as Arduino Bluetooth Terminal.

What are users saying about Arduino Bluetooth Terminal

M70%
by M####:

thank you for the update with 10 channel s works great. Add ability to edit sensor name or remove the sensor lable and expand each data field so the arduino can provide it's own name and it is ready for a paid version. I love this app!

M70%
by M####:

Please provide option to change name of sensor

V70%
by V####:

There should be a notification on value change.


Share The Word!


Rating Distribution

RATING
4.15
12 users

5

4

3

2

1