Xbee Bluetooth, una librería modificada para la configuracion y protocolo de comunicación

BluetoothBee.h

Committer:
Lucas_eb
Date:
2012-04-30
Revision:
0:6af096b11230

File content as of revision 0:6af096b11230:

// BluetoothBee.h

// This very simple API is only meant for facilitating wireless debugging via the Bluetooth Bee module through the UART
// Note: the API inherits the Serial class's functions: printf(), getc(), sscan(), etc.
// however the Serial class's "setup" functions, such as baud() and format() will not behave as you expect; thus don't use them
// Bluetooth Bee wiki: http://www.seeedstudio.com/wiki/index.php?title=Bluetooth_Bee

#ifndef BLUETOOTHBEE_H
#define BLUETOOTHBEE_H

#include "mbed.h"



class BluetoothBee: public Serial {
public:
    BluetoothBee(PinName tx, PinName rx);
    void setup();
};

#endif