Example program for the SeeedStudio Bluetooth Shield V2.0, based on UART serial port connectivity (D0/D1 pins).

Dependencies:   BluetoothSerial mbed

main.cpp

Committer:
screamer
Date:
2014-07-25
Revision:
0:5a1b34c996d5
Child:
1:1b67a45b7063

File content as of revision 0:5a1b34c996d5:

#include "mbed.h"
#include "BluetoothSerial.h"

DigitalOut led1(LED1);
DigitalOut led2(LED2);
BluetoothSerial bluetooth(D1, D0);

int main()
{ 
    int count = 0;

    // Set up Serial/shield baud rate
    bluetooth.setup(38400);
    
    // Set up pin
    bluetooth.pin("1234");
    
    // Set up master mode and "BTMaster" name
    bluetooth.master("BTMaster");
    wait(2);
    
    // Connect to "MSSG4" bluetooth
    bluetooth.connect("MSSG4");
   
    while (1) {
        if (bluetooth.readable()) {
            led2 = !led2;
        }
        
        count++;
        if (count >= 1000000) {
            led1 = !led1;
            count = 0;
        }
    }   
}