Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: Shield_Seeed_Bluetooth
Fork of BluetoothSerial by
BluetoothSerial.h
- Committer:
- screamer
- Date:
- 2014-07-25
- Revision:
- 1:cf4d7779d9d6
- Parent:
- 0:f56002898ee8
File content as of revision 1:cf4d7779d9d6:
/**
* The library is for Bluetooth Shield from Seeed Studio
*/
#ifndef __BLUETOOTH_SERIAL_H__
#define __BLUETOOTH_SERIAL_H__
#include "mbed.h"
#define BLUETOOTH_SERIAL_DEFAULT_BAUD 38400
#define BLUETOOTH_SERIAL_TIMEOUT 10000
#define BLUETOOTH_SERIAL_EOL "\r\n"
/**
* The BluetoothSerial class
*/
class BluetoothSerial : public Stream {
public:
BluetoothSerial(PinName tx, PinName rx);
/**
* Setup bluetooth module(serial port baud rate)
*/
void setup();
/**
* Setup bluetooth module(serial port baud rate)
* \param baud baud rate
*/
void setup(int baud);
/**
* Set bluetooth module as a master
* \param name device name
* \param autoc 1: auto-connection, 0 not
*/
void master(const char *name, uint8_t autoc = 0);
/**
* Set bluetooth module as a slave
* \param name device name
* \param autoc 1: auto-connection, 0 not
* \param oaut 1: permit paired device to connect, 0: not
*/
void slave(const char *name, uint8_t autoc = 0, uint8_t oaut = 1);
/**
* Set pin for the bluetooth connection
* \param pin pin string
*/
void pin(int pin = 0);
/**
* Set pin for the bluetooth connection
* \param pin pin string
*/
void pin(const char *pin);
/**
* Inquire bluetooth devices and connect the specified device
*/
int connect(const char *name);
/**
* Make the bluetooth module inquirable and available to connect, used in slave mode
*/
int connect();
int readable() {
return _serial.readable();
}
int writeable() {
return _serial.writeable();
}
protected:
virtual int _getc();
virtual int _putc(int c);
void clear();
int readline(uint8_t *buf, int len, uint32_t timeout = 0);
Serial _serial;
uint8_t _buf[64];
};
#endif // __BLUETOOTH_SERIAL_H__
