Serial Communication Between Android and Arduino Through Laptop Bluetooth

7.7K286

Intro: Serial Communication Between Android and Arduino Through Laptop Bluetooth

About:

This instructable is about serial communication between android and arduino through laptop built-in Bluetooth. i do not have separate Bluetooth module. so i have decided to use my laptop built-in Bluetooth for serial communication.

STEP 1: Block Diagram:

How it works:

1.first, the python file receives the command from the android application through Bluetooth

2.next the python file send the received command to arduino through cable.

3.finally,the command(1 or 0 or 2) turn on the pin-13. and confirmation is send back to android application.

commands:

1 - turn on pin-13

0 - turn off pin-13

2 - close socket

STEP 2: Software Needed:

python-2.7

STEP 3: Python Package Needed:

pyserial - for arduino serial communication

pybluez - for bluetooth serial port communication

Links:

pyserial - https://pypi.python.org/pypi/pyserial

pybluez - https://pypi.python.org/pypi/PyBluez

STEP 4: Simple Arduino Sketch to Turn on PIN-13:

step1: upload the blink.ino file to your arduino uno board

STEP 5: Python File: Androidtoarduino.py

Before run this file, turn on laptop bluetooth

step2: next run this python file from your computer.

download link:

https://github.com/bhaskar4n/arduino/blob/master/A...

note: before run the android application you need to run this python file. it act as a server and the android application act as client. .

STEP 6: Android Application:

before run this app, pair your android device with pc

commands used to turn on PIN-13

1 - turn on

0 - turn off

2 - close socket

application download link:

https://drive.google.com/file/d/0B8dBW1QGzJmrRW1GT...

STEP 7: Corresponding Python Output:

2 Comments

I've always wondered how this works! Thanks!