Sale has ended but you can still get this app.
Download Andruino Bluetooth Now

Description

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.

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

You are allowed to use this product only within the laws of your country/region. SharewareOnSale and its staff are not responsible for any illegal activity. We did not develop this product; if you have an issue with this product, contact the developer. This product is offered "as is" without express or implied or any other type of warranty. The description of this product on this page is not a recommendation, endorsement, or review; it is a marketing description, written by the developer. The quality and performance of this product is without guarantee. Download or use at your own risk. If you don't feel comfortable with this product, then don't download it.

You May Like