You are on page 1of 10

//--------------------------------// Delay Function //--------------------------------void DelayMs(unsigned int k) { unsigned int i; for(i=0;i<=k;i++); } To compile the above C code you need

the KEIL software. They must be properly set up and a project with correct settings must be created in order to compile the code. To compile the above code, the C file must be added to the project. In Keil, you want to develop or debug the project without any hardware setup. You must compile the code for generating HEX file. In debugging Mode, you want to check the port output without 8051 Primer Board. The Flash Magic software is used to download the hex file into your microcontroller IC 8051 through UART0. Testing the Bluetooth with 8051 Give +5V power supply to 8051 Primer Board; connect the 5V adapter with Bluetooth module which is connected with the 8051 Primer Board. There are two Bluetooth modules are required. One is connected with 8051 Primer Board; other one is connected with PC.

For proper working use the components of exact values as shown in Circuit file. Wherever possible use new components. Solder everything in a clean way. A major problem arises due to improper soldering, solder jumps and loose joints. Use the exact value crystal shown in schematic. More instructions are available in following articles, - User Manual of 8051 Primer Board.- See more at: http://www.pantechsolutions.net/accessory-boards/bluetooth-interfacing-with8051#sthash.RWVpbeNf.dpuf

Interfacing Bluetooth Fig. 1 shows how to interface the Bluetooth with microcontroller. Bluetooth technology handles the wireless part of the communication channel; it transmits and receives data wirelessly between these devices. It delivers the received data and receives the data to be transmitted to and from a host system through a host controller interface (HCI). The most popular host controller interface today is either a UART or a USB. Here, I will only focus on the UART interface; it can be easily show how a Bluetooth module can be integrated on to a host system through a UART connection. - See more at: http://www.pantechsolutions.net/accessory-boards/bluetooth-interfacing-with8051#sthash.RWVpbeNf.dpuf

Interfacing Bluetooth with 8051 Transmit & receive the data from host system to 8051 Primer Board by using Bluetooth module through UART0. The serial data is taken from or sent to the host system by using Bluetooth module through MAX232 into the SBUF register of 8051 microcontroller (refer serial interfacing with 8051). The serial data from the host device is taken by using the Serial Interrupt of the 8051 controller. The UART0 pin lines are used to transmit & receive operations in 8051 Primer Board. Pin Assignment with 8051 - See more at: http://www.pantechsolutions.net/accessory-boards/bluetooth-interfacing-with8051#sthash.RWVpbeNf.dpuf

Source Code The Interfacing Bluetooth module with 8051 program is very simple and straight forward, which send a message to mobiles from 8051 Primer Board through Bluetooth module by using UART0. Some delay is occurring when a single data is sent to mobile through UART. C programs are written in Keil software. The baud rate of microcontroller is 9600. C Program to transmit or receive data in 8051 - See more at: http://www.pantechsolutions.net/accessoryboards/bluetooth-interfacing-with8051#sthash.RWVpbeNf.dpuf

#include<reg51.h>

//Define 8051 Registers

void serial(void); //Serial Communication Register void DelayMs(unsigned int); //Delay Function unsigned int i,j; unsigned char b[25],d; //--------------------------// Main Program //--------------------------void main() { EA=1; //Enable All Interrupt ES=1; //Enable Serial Port Interrupt serial(); //Serial Communication while(1); //Loop Forever } - See more at: http://www.pantechsolutions.net/accessory-boards/bluetoothinterfacing-with-8051#sthash.RWVpbeNf.dpuf

// Serial Communication Register Initialisation void serial(void) {TMOD=0X20; //Timer1, Mode2 SCON=0X50; //Serial Mode1, Receive Enable TH1=0XFD; //Baud Rate 9600bps TR1=1; //Timer1 ON} // Serial Interrupt Function void serin (void) interrupt 4 //Serial Port Interrupt { if(RI==1) //Receive Interrupt Gets { //after Stop Bit get Received d=SBUF; //Serial Buffer value moved b[j]=d; SBUF=b[j]; DelayMs(20); //Delay Function j++; } SCON=0X50; //Initialising Receive and } // Delay Function void DelayMs(unsigned int k) { unsigned int i; for(i=0;i<=k;i++); }

To compile the above C code you need the KEIL software. They must be properly set up and a project with correct settings must be created in order to compile the code. To compile the above code, the C file must be added to the project. In Keil, you want to develop or debug the project without any hardware setup. You must compile the code for generating HEX file. In debugging Mode, you want to check the port output without 8051 Primer Board. The Flash Magic software is used to download the hex file into your microcontroller IC 8051 through UART0. - See more at: http://www.pantechsolutions.net/accessory-boards/bluetooth-interfacingwith-8051#sthash.RWVpbeNf.dpuf

esting the Bluetooth with 8051 Give +5V power supply to 8051 Primer Board; connect the 5V adapter with Bluetooth module which is connected with the 8051 Primer Board. There are two Bluetooth modules are required. One is connected with 8051 Primer Board; other one is connected with PC. First connect the serial cable between 8051 Primer board & PC. Then open the Hyper Terminal screen, select which port you are using and set the default settings. Now the screen should show some text messages. If the messages are correctly displayed in Hyper Terminal, then only connect the Bluetooth modules in 8051 Primer Board UART0 & PC. If you are not reading any data from UART0, then you just check the jumper connections & just check the serial cable is working. Otherwise you just check the code with debugging mode in Keil. If you want to see more details about debugging just see the videos in below link. - See more at: http://www.pantechsolutions.net/accessory-boards/bluetoothinterfacing-with-8051#sthash.RWVpbeNf.dpuf

You might also like