tes

Dependencies:   ASyncTicker EthernetInterface WebSocketClient mbed-rtos mbed MbedJSONValue xbee_lib

btNode.h

Committer:
ammanvedi
Date:
2014-02-01
Revision:
5:80a7d03c94f5
Child:
6:c1bd3fadce09

File content as of revision 5:80a7d03c94f5:

#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