Bluetooth Serial Monitor Application icon

Bluetooth Serial Monitor 6.2.5

2.8 MB / 10K+ Downloads / Rating 5.0 - 1 reviews


See previous versions

Bluetooth Serial Monitor, developed and published by CSA Apps, has released its latest version, 6.2.5, on 2022-12-09. This app falls under the Tools category on the Google Play Store and has achieved over 10000 installs. It currently holds an overall rating of 5.0, based on 1 reviews.

Bluetooth Serial Monitor APK available on this page is compatible with all Android devices that meet the required specifications (Android 4.4+). It can also be installed on PC and Mac using an Android emulator such as Bluestacks, LDPlayer, and others.

Read More

App Screenshot

App Screenshot

App Details

Package name: com.csa.btserialmonitor

Updated: 2 years ago

Developer Name: CSA Apps

Category: Tools

New features: Show more

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing Bluetooth Serial Monitor on PC Windows and Mac.

Using BlueStacks

  1. Download the APK/XAPK file from this page.
  2. Install BlueStacks by visiting http://bluestacks.com.
  3. Open the APK/XAPK file by double-clicking it. This action will launch BlueStacks and begin the application's installation. If the APK file does not automatically open with BlueStacks, right-click on it and select 'Open with...', then navigate to BlueStacks. Alternatively, you can drag-and-drop the APK file onto the BlueStacks home screen.
  4. Wait a few seconds for the installation to complete. Once done, the installed app will appear on the BlueStacks home screen. Click its icon to start using the application.

Using LDPlayer

  1. Download and install LDPlayer from https://www.ldplayer.net.
  2. Drag the APK/XAPK file directly into LDPlayer.

If you have any questions, please don't hesitate to contact us.

Reviews

5 ★, on 2020-07-02
I've been looking to read data from an arduino analogue input using bluetooth, this is the only one ive tried that has done that with a test sketch- the others all wrote ok but didn't read. So happy with it- beats having a pc plugged into it!!

5 ★, on 2019-11-17
This app works Perfectly. Very easy to operate.

5 ★, on 2019-11-17
Great work... I love it

5 ★, on 2019-11-17
Very useful app

5 ★, on 2020-08-02
Great app

5 ★, on 2020-07-28
Excellent.

Previous Versions

Bluetooth Serial Monitor 6.2.5
2022-12-09 / 2.8 MB / Android 4.4+

About this app

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

New features

-Library updated

-Performance Improvement

App 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.