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

Dependents:   configure_btbee m3pi_btTest Test_motor m3pi_ng ... more

Committer:
ngoldin
Date:
Thu May 16 10:24:06 2013 +0000
Revision:
0:e7cb710c8900
Child:
1:56f437e4d9e0
first commit. ;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ngoldin 0:e7cb710c8900 1 #include "mbed.h"
ngoldin 0:e7cb710c8900 2 #include "platform.h"
ngoldin 0:e7cb710c8900 3
ngoldin 0:e7cb710c8900 4 class btbee: public Serial{
ngoldin 0:e7cb710c8900 5 public:
ngoldin 0:e7cb710c8900 6 btbee(PinName respin, PinName tx, PinName rx);
ngoldin 0:e7cb710c8900 7 btbee(void);
ngoldin 0:e7cb710c8900 8 void reset(void);
ngoldin 0:e7cb710c8900 9
ngoldin 0:e7cb710c8900 10 protected:
ngoldin 0:e7cb710c8900 11 DigitalOut reset_out;
ngoldin 0:e7cb710c8900 12 };