tes

Dependencies:   ASyncTicker EthernetInterface WebSocketClient mbed-rtos mbed MbedJSONValue xbee_lib

Revision:
5:80a7d03c94f5
Child:
6:c1bd3fadce09
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/btNode.h	Sat Feb 01 17:30:02 2014 +0000
@@ -0,0 +1,19 @@
+#ifndef BT_DEVICE
+#define BT_DEVICE
+
+#include <string>
+#include "xbee.h"
+#include "xbeeFrame.h"
+ 
+class btNode {
+public:
+    btNode(int D_ID);
+    std::string SendMessage(std::string msg);
+  
+private:  
+    int ID;
+    static const char ADDRESS[8];
+    //const char dest_address[8] ={0x00, 0x13, 0xA2, 0x00, 0x40, 0x9B, 0x6D, 0xB0};
+};
+ 
+#endif
\ No newline at end of file