About Arduino Bluetooth Chat
Control arduino via bluetooth!
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);
}
}
* * * * * * * * * *
What's new in the latest 0.4
Last updated on Jul 4, 2021
Minor bug fixes and improvements. Install or update to the newest version to check it out!
Arduino Bluetooth Chat APK Information
Safe & Fast APK Downloads on APKPure
APKPure uses signature verification to ensure virus-free Arduino Bluetooth Chat APK downloads for you.
Old Versions of Arduino Bluetooth Chat
Arduino Bluetooth Chat 0.4
1.7 MBJul 4, 2021

Super Fast and Safe Downloading via APKPure App
One-click to install XAPK/APK files on Android!