Skip to content

Android App that allows the user to connect to an Arduino board using Bluetooth

Notifications You must be signed in to change notification settings

lrusso/AndruinoBluetooth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 

Repository files navigation

Andruino Bluetooth

Android App that allows the user to connect to an Arduino board using Bluetooth.

App Link

https://play.google.com/store/apps/details?id=ar.com.lrusso.andruinobluetooth

Schematic

alt Schematic

Sketch

#include <SoftwareSerial.h>

SoftwareSerial bluetooth(10,11);

void setup()
      {
      bluetooth.begin(9600);
      }

void loop()
      {
      int incomingByte = 0;
      String content = "";
      char character;

      while(bluetooth.available())
            {
            character = bluetooth.read();
            content.concat(character);
            }

      if (content!="")
            {
            bluetooth.print(content);
            }
      delay(100);
      }

About

Android App that allows the user to connect to an Arduino board using Bluetooth

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published