Andruino Bluetooth Free APK

Andruino Bluetooth Free  Icon
1/5
1 Ratings
Developer
Leonardo Javier Russo
Current Version
1.4
Date Published
File Size
2.7 MB
Package ID
ar.com.lrusso.andruinobluetooth.free
Price
$ 0.00
Downloads
10+
Category
Android Apps
Genre
Productivity

APK Version History

Version
1.4 (4)
Architecture
universal
Release Date
July 24, 2017
Requirement
Android 2.3.4+
Version
1.2 (2)
Architecture
universal
Release Date
February 22, 2017
Requirement
Android 2.3.4+
  • Andruino Bluetooth Free Screenshot
  • Andruino Bluetooth Free Screenshot

About Radio FM 90s

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);
}

What's New in this version

Bug fixes and performance improvements.