hourglass_full Your download should start automatically in a few seconds...

Download Bluetooth Control Programmable_Latest Version.apk from Apk-Dl Server

Thank you for using Apk-Dl.com to download the apk file (Bluetooth Control Programmable_Latest Version.apk),

If the download doesn't start automatically in a few seconds, please click here to access the download URL directly.

Note: Download and save the apk file to your Android Phone's SD card and install it manually onto the Android device.

Description

This app will let you make a bluetoothexploration to give you the chance to stablish a connection withdevices close to you. Then, you will be able to send commands(bytes) to your connected device by simply interacting with the appcontrols available.
This app can receive information transmited by your connecteddevice to respond your petitions (you must program your remotedevice, e.j. an Arduino).
The app lets you program all its controls one by one by a simpleway using the Programmer Tab.
Its app also gives you a simple Console to interact with yourremote device in another way, like a chat.

Communication Protocol:
In order to receive data from your remote bluetooh device, you mustprogram it appropriately (the App and the remote device).
First, in the App, create all inputs you want; each input will be adata that you want to receive (e.g. a temperature value). Creatingan Input will need an ID (identifier, needed) and a Name(associated with that ID).

Then you must program your remote device to output all thatinputs following the next Protocol:
ID-Value <- each input must be build with an ID + a Dash + thedata value + blank space;

To send multiple inputs values just concat them (sapareting themby a blank space) as follows:
ID-Value1 ID-Value2 ID-Value3\n <- Multiple inputs sent (noticethe last byte)

Important! Last byte must be a LineFeed character (number10 in ascii code, the \n caracter)