Bluetooth Serial Monitor

Bluetooth Serial Monitor

  • 2.8 MB

    File Size

  • Everyone

  • Android 4.4+

    Android OS

About Bluetooth Serial Monitor

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

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'

*/

Show More

What's new in the latest 6.2.5

Last updated on 2021-10-10
-Library updated

-Performance Improvement
Show More

Videos and Screenshots

  • Bluetooth Serial Monitor poster
  • Bluetooth Serial Monitor screenshot 1
  • Bluetooth Serial Monitor screenshot 2
  • Bluetooth Serial Monitor screenshot 3
  • Bluetooth Serial Monitor screenshot 4
  • Bluetooth Serial Monitor screenshot 5
  • Bluetooth Serial Monitor screenshot 6
  • Bluetooth Serial Monitor screenshot 7

Bluetooth Serial Monitor APK Information

Latest Version
6.2.5
Category
Tools
Android OS
Android 4.4+
File Size
2.8 MB
Developer
CSA Apps
Content Rating
Everyone
Safe & Fast APK Downloads on APKPure
APKPure uses signature verification to ensure virus-free Bluetooth Serial Monitor APK downloads for you.

Old Versions of Bluetooth Serial Monitor

APKPure icon

Super Fast and Safe Downloading via APKPure App

One-click to install XAPK/APK files on Android!

Download APKPure
thank icon
We use cookies and other technologies on this website to enhance your user experience.
By clicking any link on this page you are giving your consent to our Privacy Policy and Cookies Policy.
Learn More about Policies