
Bluetooth Serial Monitor
User friendly Bluetooth serial monitor for experiments with Arduino & BT modules
App info
Advertisement
App description
Android App Analysis and Review: Bluetooth Serial Monitor, Developed by CSA Apps. Listed in Tools Category. Current Version Is 6.2.5, Updated On 01/10/2021 . According to users reviews on Google Play: Bluetooth Serial Monitor. Achieved Over 14 thousand Installs. Bluetooth Serial Monitor Currently Has 21 Reviews, Average Rating 3.9 Stars
This is a Bluetooth serial monitor interface for experiments with Arduino & BluetoothCan use with Bluetooth modules like HC-05, HC-06
Special Features
★It turns on Bluetooth from app
★It can scan for available devices
★Can select relevant device when more than one device available
★Customizable interface & features
★Auto Connect feature
If this feature enabled app will save the last connected Bluetooth module mac-address and try to connect that module when app starting. You can toggle this feature enable or disable from settings
Sample Code
#include "SoftwareSerial.h"
SoftwareSerial bt(2, 3); // RX | TX (Wiring: RX->TX of BT Module, TX->RX of BT Module, Use level shifter or resistor voltage divider if your BT module use 3.3V Logic level)
void setup(){
Serial.begin(9600);
bt.begin(9600);
}
void loop(){
if (bt.available())
Serial.write(bt.read());
if (Serial.available())
bt.write(Serial.read());
}
/*
This will send your PC serial monitor Input to app and app input to PC
The app will recognize the end of the message from ' ' character.
So select "Carriage return" or "Both NL & CR" in the PC serial monitor.
And also u should use println() instead of print() when make your own code with some commands.
Ex:-
bt.print("Hello");
This doesn't show the msg in the app because doesn't contains ' ' int the end of message.
so u have to code like below
Ex:-
bt.println("Hello"); or bt.print("Hello ");
Both show the output in the app because both containing ' '
*/
We are currently offering version 6.2.5. This is our latest, most optimized version. It is suitable for many different devices. Free download directly apk from the Google Play Store or other versions we're hosting. Moreover, you can download without registration and no login required.
We have more than 2000+ available devices for Samsung, Xiaomi, Huawei, Oppo, Vivo, Motorola, LG, Google, OnePlus, Sony, Tablet ... with so many options, it’s easy for you to choose games or software that fit your device.
It can come in handy if there are any country restrictions or any restrictions from the side of your device on the Google App Store.
What's New
-Library updated
-Performance Improvement
-Performance Improvement