Back to Top
Bluetooth Serial Monitor Screenshot 0
Bluetooth Serial Monitor Screenshot 1
Bluetooth Serial Monitor Screenshot 2
Bluetooth Serial Monitor Screenshot 3
Free website generator for mobile apps; privacy policy, app-ads.txt support and more... AppPage.net

About Bluetooth Serial Monitor

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

Similar Apps

Bluetooth Remote for Arduino

Bluetooth Remote for Arduino

3.5

Make your own remote with fully customizable buttons & instructionsCan use with...

Bluetooth Serial Monitor

Bluetooth Serial Monitor

0.0

This is a Bluetooth serial monitor interface for experiments with Arduino &...

Serial Monitor

Serial Monitor

2.9

This is a user friendly serial monitor interface for experiments with ArduinoThis...

Split Share Save Status

Split Share Save Status

0.0

★Can share status media with your friends easily*If you see a nice,...

author
Great app
Pasindu Akalanka
author
Good working
Thushantha M Meegahakotuwa
author
Great work... I love it
Kells Kelly
author
Very useful app
Nimesh Ariyarathne
author
Excellent.
Eldamar17 17
author
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-...
Billy Mcwatt