Bluetooth Serial Monitor logo Bluetooth Serial Monitor

Bluetooth Serial Monitor

by CSA Apps

🗂️ Tools

🆓 free

4.9/5 ( 509+ reviews)
Android application Bluetooth Serial Monitor screenshort

Features Bluetooth Serial Monitor

This is a Bluetooth serial monitor interface for experiments with Arduino & Bluetooth Can use with Bluetooth modules like HC-05, HC-06Special 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 settingsSample 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 PCThe 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 doesnt show the msg in the app because doesnt contains r int the end of message.so u have to code like belowEx:-bt.println("Hello"); or bt.print("Hellor");Both show the output in the app because both containing r*/

👥

Social Features

Connect and share with friends and the community.

🍽️

Food & Dining

Discover recipes and order food from your favorite restaurants.

🏠

Smart Home

Control and monitor your home with smart features.

Screenshots

See the Bluetooth Serial Monitor in Action

Bluetooth Serial Monitor Screen 1
Bluetooth Serial Monitor Screen 2
Bluetooth Serial Monitor Screen 3

Get the App Today

Download on Google Play

Available for Android 8.0 and above