Bluetooth Serial Monitor

User friendly Bluetooth serial monitor for experiments with Arduino & BT modules

Bluetooth Serial Monitor - Arduino & BT Experiments

"Bluetooth Serial Monitor" is an intuitive Android application designed for seamless communication with Arduino and Bluetooth modules like HC-05 and HC-06. It offers a variety of features such as automatic Bluetooth activation, device scanning, customizable interface, and an auto-connect option that remembers the last connected device. Ideal for experimenting with serial communication, it simplifies the process of sending and receiving data between your Android device and Arduino projects.

App stats

By: CSA Apps
Users: 14,095
Version: 6.2.5 (Last updated: 2021-10-01)
Creation date: 2019-11-09
Permissions
Other:
  • view network connections
  • pair with Bluetooth devices
  • access Bluetooth settings
  • full network access

Other platforms

Not available on Chrome
Not available on Firefox
Not available on Edge
Want to check extension ranking and stats more quickly for other Android apps? Install Chrome-Stats extension to view Android-Stats data as you browse the Google Play Store.

App summary

This is a Bluetooth serial monitor interface for experiments with Arduino & Bluetooth
Can 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 '\r' 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 '\r' int the end of message.
so u have to code like below
Ex:-
bt.println("Hello"); or bt.print("Hello\r");
Both show the output in the app because both containing '\r'
/

User reviews

Full of ads. Doesn't work
by Arthur Wiedemann, 2024-01-20

Good
by Varun Teli, 2023-06-27

Great app
by Pasindu Akalanka, 2020-08-01
View all user reviews

Similar apps

Here are some Android apps that are similar to Bluetooth Serial Monitor: