Danny van den Brande
Published © CC BY-SA

Arduino/Android BLUETOOTH Serial Monitor APP For Arduino

Hello world! Today I made an Android app that simply reads values/text that are printed to the Arduino serial using the Bluetooth module.

BeginnerProtip1 hour9,170
Arduino/Android BLUETOOTH Serial Monitor APP For Arduino

Things used in this project

Story

Read more

Schematics

Schematic

Code

Bluetooth_Serial_Monitor_APP_Test_Code.ino

Arduino
This code is written as example for my Serial Monitor APP on Google Play.
The app simply displays any value or text on your android smartphone.
/*
Author: Danny van den Brande. Arduinosensors.nl, BlueCore Tech.
This code is written as example for my Serial Monitor APP on Google Play.
The app simply displays any value or text on your android smartphone.
 */

void setup() {
  Serial.begin(9600);
  Serial.println("BlueCore Tech Serial Monitor APP for Arduino");
  delay(2500);
  

}

void loop() {

  Serial.println("0");
  Serial.println("1");
  Serial.println("0");
  Serial.println("0");
  Serial.println("1");
  Serial.println("0");
  Serial.println("1");
  Serial.println("1");
  Serial.println("Created by: Danny van den Brande ");
  
}

Credits

Danny van den Brande

Danny van den Brande

36 projects • 108 followers
"Hello world."

Comments