ApkDownload

Bluetooth Serial Monitor APK

Latest Version 6.2.5 for Windows
Updated 2022-12-09

App information

Version 6.2.5 (#10)

Updated 2022-12-09

APK Size 2.8 MB

Requires Android Android 4.4+ (KitKat)

Offered by CSA Apps

Category Free Tools App

App id com.csa.btserialmonitor

Developer's notes User friendly Bluetooth serial monitor for experiments with Arduino & BT modules

Screenshot

Click on the image to see full size

Latest updates

What's new in Bluetooth Serial Monitor 6.2.5

-Library updated

-Performance Improvement

Editor's review

Download the latest Bluetooth Serial Monitor application, version 6.2.5, compatible with Windows 10/11 (using emulators such as Bluestacks), Android devices. This free Tools app is developed by CSA Apps and is easy to download and install.

Previous versions, including 6.2.5, are also available. If you need help or have any problems, please let us know.

Description

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'
*/

App permissions

Bluetooth Serial Monitor 6.2.5 APK requires following permissions:

Allows applications to open network sockets.

Allows applications to access information about networks.

Allows applications to connect to paired bluetooth devices.

Allows applications to discover and pair bluetooth devices.

Ratings and Reviews

Rating: 5.0/5 based on Less than 100 reviews

(*) is required

5 ★ Excellent.

5 ★ Fascinating interface❤

5 ★ Good working

1 ★ Waste app

5 ★ Great app

Previous versions

Bluetooth Serial Monitor 6.2.5 APK for Windows (#10, 2.8 MB)