Arduino Bluetooth Chat के बारे में
नियंत्रण ब्लूटूथ के माध्यम से Arduino!
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 जानकारी
APKPure पर सुरक्षित और तेज़ APK डाउनलोड करें
आपके लिए वायरस मुक्त Arduino Bluetooth Chat APK डाउनलोड करने के लिए APKPure प्रमाणित करने का उपयोग करता है।
Arduino Bluetooth Chat के पुराने संस्करण
Arduino Bluetooth Chat 0.4
1.7 MBJul 4, 2021

APKPure ऐप के माध्यम से सुपर तेज़ और सुरक्षित डाउनलोडिंग
एंड्रॉइड पर XAPK/APK फ़ाइलें इंस्टॉल करने के लिए एक-क्लिक करें!