Introduction: Arduino Bluetooth Basic Tutorial
UPDATE : THE UPDATED VERSION OF THIS ARTICLE CAN BE FOUND HERE
Ever thought of controlling any electronic devices with your smart phone ?Controlling your robot or any other devices with your smartphone will be really cool. Here is is a simple and basic tutorial for interfacing Bluetooth with arduino
Step 1: Things You Need
Hardware
- Bluetooth Module HC 05/06
- Arduino
- LED
- 220Ω Resistor
- Android device
Software
- Arduino IDEArduino IDE
- Android Studio (Not Really required I will provide the android application :D)
Step 2: Watch How Does It Works ?
Watch the video tutorial
Step 3: Let’s Start Building
The circuit is so simple and small , there is only few connection to be made
Arduino Pins___________Bluetooth Module Pins
RX (Pin 0)___________________TX
TX (Pin 1)___________________RX
5V_________________________VCC
GND_______________________GND
Connect a LED negative to GND of arduino and positive to pin 13 with a resistance valued between 220Ω – 1KΩ. And your done with the circuit
Note : Don’t Connect RX to RX and TX to TX of Bluetooth to arduinoyou will receive no data , Here TX means Transmit and RX means Receive
Step 4: Upload the Code
/* Bluetooh Basic: LED ON OFF - Avishkar * Coder - Mayoogh Girish * Website - http://bit.do/Avishkar * Download the App : https://github.com/Mayoogh/Arduino-Bluetooth-Basic * This program lets you to control a LED on pin 13 of arduino using a bluetooth module */ char data = 0; //Variable for storing received data void setup() { Serial.begin(9600); //Sets the baud for serial data transmission pinMode(13, OUTPUT); //Sets digital pin 13 as output pin } void loop() { if(Serial.available() > 0) // Send data only when you receive data: { data = Serial.read(); //Read the incoming data and store it into variable data Serial.print(data); //Print Value inside data in Serial monitor Serial.print("\n"); //New line if(data == '1') // Checks whether value of data is equal to 1 digitalWrite(13, HIGH); //If value is 1 then LED turns ON else if(data == '0') // Checks whether value of data is equal to 0 digitalWrite(13, LOW); //If value is 0 then LED turns OFF } }
Step 5: How Does It Works ??
HC 05/06 works on serial communication.here the android app is designed sending serial data to the bluetooth module when certain button is pressed.The Bluetooth module at other end receive the data and send to ardunio through the TX pin of bluetooth module(RX pin of arduino).The Code fed to arduino check the received data and compares.If received data is 1 the LED turns ON turns OFF when received data is 0
Open the serial monitor and watch the received data
Step 6: Android Application
In this tutorial I will not be covering tutorial on android app development.You can download the android application from here
How to use the app ?
Watch in video how to pair to bluetooth module
- Download the Application from amazon app storeor here
- Pair your device with HC 05/06 bluetooth module
1) Turn ON HC 05/06 bluetooth module
2)Scan for available device
3)Pair to HC 05/06 by entering default password 1234 OR 0000 - Install LED application on your android device
- Open the Application
Press paired device
Select your Bluetooth module from the List (hc 05/06)
After connecting successfully
Press ON button to turn ON LED and OFF button to turn OFF LED
Disconnect button to disconnect from bluetooth module
This is just basic tutorial on interfacing bluetooth module with arduinoThis project can improved to higher level like Home automation using smartphone, Smartphone controlled robot and much more
For more cool DIY projects visit my Blog