Discover

Topics

Andruino Bluetooth Free

Andruino Bluetooth Free APK

Andruino Bluetooth Free APK

1.5.3 FreeLeonardo Javier Russo ⇣ Download APK (1.97 MB)

What's Andruino Bluetooth Free APK?

Andruino Bluetooth Free is a app for Android, It's developed by Leonardo Javier Russo author.
First released on google play in 6 years ago and latest version released in 6 years ago.
This app has 0 download times on Google play and rated as 1.00 stars with 1 rated times.
This product is an app in Productivity category. More infomartion of Andruino Bluetooth Free on google play
Now you can use this app to connect to your Andruino board via bluetooth! You must be paired with the Arduino board. In most cases, the default PIN in a Arduino Bluetooth Module is 1234. You must use a HC-05 Bluetooth module.

-- THIS FREE VERSION HAS ADS IN ORDER TO SUPPORT DEVELOPMENT --

-----------------------------------------------------
Example Sketch:
-----------------------------------------------------
#include

SoftwareSerial bluetooth(10, 11);

void setup()
{
bluetooth.begin(9600);
}

void loop()
{
int incomingByte = 0;
String content = "";
char character;

while(bluetooth.available())
{
character = bluetooth.read();
content.concat(character);
}

if (content!="")
{
bluetooth.print(content);
}
delay(100);
}