Library for using the xbee-compatible Bluetooth Bee Module on an m3pi.

Dependents:   configure_btbee m3pi_btTest Test_motor m3pi_ng ... more

btbee.h

Committer:
ngoldin
Date:
2013-05-16
Revision:
1:56f437e4d9e0
Parent:
0:e7cb710c8900
Child:
2:12c38a710982

File content as of revision 1:56f437e4d9e0:

#include "mbed.h"
#include "platform.h"

class btbee: public Serial{
 public: 
  btbee(PinName respin, PinName tx, PinName rx);
  btbee(void);
  void reset(void);
  int read_all(char*,const int, int*);

 protected:
  DigitalOut reset_out;
};