bluetooth

Dependents:   newlib

Fork of btbee by Nikolas Goldin

Revision:
3:6d8cebc874fb
Parent:
2:12c38a710982
--- a/btbee.cpp	Thu May 16 14:01:24 2013 +0000
+++ b/btbee.cpp	Fri May 17 11:14:20 2013 +0000
@@ -1,10 +1,21 @@
 #include "btbee.h"
 
+
+// declaration in btbee.h, changing the the class btbee 
+// from here with btbee:: ...
+
+// public member functions??
+// inherits mbed::Stream??
+
+
 btbee::btbee(PinName respin, PinName tx, PinName rx) : 
   Serial(tx,  rx) , reset_out(respin) 
 {
   reset_out.write(1);
   baud(DEFAULT_BAUD); 
+  //baud in Serial class, 
+  // set the baud rate of the serial port??
+  
 }
 
 btbee::btbee( ) :