Arduino Bluetooth Chat

Arduino Bluetooth Chat
The official app & game
Distributed by ApkOnline
SCREENSHOTS
Ad
DESCRIPTION
Run this app named Arduino Bluetooth Chat or download it using ApkOnline. You can do it using our Android online emulator.
A simple and minimal chat app which controls arduino via bluetooth.
At the moment the app is in beta, so there may be some bugs. Source code of the app https://github.com/lucazanrosso/BluetoothChat
The scheme of the Arduino project is in the images above. Code for Arduino/Genuino Mega for sending and receiving messages, tested on HC-05 and HC-06 bluetooth modules:
* * * * * * * * * *
void setup() {
Serial.begin(9600);
Serial1.begin(9600);
}
void loop() {
if (Serial1.available()) {
String s = Serial1.readString();
Serial.println(s);
}
if (Serial.available()) {
char c = Serial.read();
Serial1.write(c);
}
}
* * * * * * * * * *
Run or download Arduino Bluetooth Chat using our android online emulator from ApkOnline.net
ADDITIONAL INFORMATION:
Developer: Luca Zanrosso
Genre: Productivity
App version: Varies with device
App size: Varies with device