Interfacing Bluetooth module with 8051 Microcontroller ( HC05 )

Interfacing Bluetooth module with 8051 Microcontroller ( HC05 )
HC05-bluetooth-BT-module-pin-diagram

Bluetooth technology creates a big evolution in way the devices communicate with each other. So it is important to learn interfacing Bluetooth with our MCU’s to build extended system also it offers facility to wireless control. This tutorial focuses in interfacing Bluetooth module with 8051 microcontroller. We are going to use a module known as HC05 in our tutorial.

At the end of this tutorial you will be able to:

Program and interface Bluetooth module with 8051
– Send and receive data’s using 8051 via Bluetooth.
– Build and control any system using Bluetooth devices such as mobile phone ,PC, tablets etc.
 
INTERFACING BLUETOOTH MODULE WITH 8051 (HC05):

A Bluetooth module widely used with Microcontroller to enable Bluetooth communication. This module cam be interfaced using the UART in 8051 microcontroller where the data are transmitted in the form of packets. The pins TX and RX pin of the HC 05  form the path for data transmission and reception. These TX pin  of  HC05 must be connected to the RX pin of 8051 and vice versa. Whereas the key pin of the module is used to set the password for pairing the module with our devices.

 
APPLICATION:
Bluetooth-terminal-application
Snapshot of BT terminal Application

Our devices such as mobile and PC’s need special applications known as “Bluetooth Terminal” to communicate with our microcontrollers via Bluetooth. Not to worry, there are plenty of apps you can find in the internet. These apps are available in plenty irrespective of the you device OS Android, Windows , Mac whatever it may be. Just run a search such as Bluetooth Terminal for “OS name” and search engines will take you to the destination.

These applications are developed in such a way to send characters through your device BT which was received by the BT module connected with our controller. Even some apps offers some interactive GUI buttons which transmits specific characters with the press of each buttons. Later the received character can be processed in our code and force the controller to perform tasks based on the received character. We can use the Bluetooth communication in two ways, either we can use it to receive data from the Controller or control the system using our device Bluetooth.

 
SCHEMATIC DESIGN:
interface-bluetooth-module-with-8051-microcontroller-hc05

 

 
STEPS TO PROGRAM:
  • This uses Serial Communication or UART protocol in the 8051 , so those who are not familiar with this kindly go through this article on “UART tutorial in 8051” and “UART interrupt” before getting started with BT interface.
  • Initialize the Serial communication in 8051 using Timer and serial registers.
  • Generate the required baud rate for the communication to take place. The default baud rate of the HC05 is 9600.
  • Initialize serial interrupts in case you need to control the tasks performed by your microcontroller or receive data when requested.
 
SAMPLE CODE:

The below code was built using Keil uVision 4.

 

FOR RECEIVING DATA FROM CONTROLLER VIA BT:

Here a specific data can be transmitted whenever a interrupt request occurred from our device via bluetooth. In the below code a processed data was transmitted to our device from the controller when a serial interrupt occurs.

#include<regx51.h>
#include<stdio.h>
#include<string.h> 
int a,b,ans;
char rec[4];
void main()   
{    
a=80;
b=40;
ans=a+b;
sprintf(rec, "%d", ans);
TMOD=0x20;                                //Choosing Timer mode    
TH1=0xFD;                                   //Selecting Baud Rate    
SCON=0x50;                               //Serial mode selection    
TR1=1;    
IE=0x90;                                      //Enabling Serial Interrupt    
while(1);    
}
void ser_intr(void)interrupt 4        //Subroutine for Interrupt  
{
IE=0x00;
short int i;
for(i=0;i<=2;i++)                      //Transmitting data
{
SBUF=rec[i];
while(TI==0);
TI=0;
}
IE=0x90;
}
 
CODE FOR CONTROLLING CONTROLLER TASKS VIA BT:

Here a specific task is performed on interrupt occurence in the controller via BT. Consider a Motor was connected in P2.0 & P2.1 of the controller and we are about to control its direction of rotation via BT from our device. Sending character “F” will make the motor to rotate clockwise whereas “R” will make the motor to rotate in anti clockwise direction.

#include<regx51.h> 
sbit mot1=P2^0;
sbit mot2=P2^1;
void main()
{
//////////
Initialize serial communication and activate interrupts.
//////////
}
void ser_intr(void)interrupt 4        //Subroutine for Interrupt  
{
char c;
IE=0x00;
while(RI==0);
c=SBUF;
if(c=='F');                               //Controlling motor
{
mot1=1;
mot2=0;
}
else if(c=='R')
{
mot1=0;
mot2=1;
}
IE=0x90;
}
Hope you like this tutorial, leave your queries and feedback in the below comment box.
Share:

No comments: