https://github.com/lrusso/andruinobluetooth
Android App that allows the user to connect to an Arduino board using Bluetooth
https://github.com/lrusso/andruinobluetooth
Last synced: 3 months ago
JSON representation
Android App that allows the user to connect to an Arduino board using Bluetooth
- Host: GitHub
- URL: https://github.com/lrusso/andruinobluetooth
- Owner: lrusso
- Created: 2018-08-26T05:00:24.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-04-27T22:17:49.000Z (about 7 years ago)
- Last Synced: 2025-03-06T08:39:37.938Z (about 1 year ago)
- Language: HTML
- Size: 2.35 MB
- Stars: 3
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Andruino Bluetooth
Android App that allows the user to connect to an Arduino board using Bluetooth.
## App Link
https://play.google.com/store/apps/details?id=ar.com.lrusso.andruinobluetooth
## Schematic

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