Xiaofei Qiu / Xbee

Xbee.h

Committer:
Xiaofei
Date:
2015-11-22
Revision:
5:d14636b861ff
Parent:
2:33462c1e9f45
Child:
16:cc598ae4ab52

File content as of revision 5:d14636b861ff:

#pragma once
#include "mbed.h"

class Xbee
{
public:
    // Use p9 and p10 as default serial pins
    Xbee(PinName tx = p9, PinName rx = p10, PinName rst = p11);
    
    // Send buffer
    void Send(const char*);
    
    // Read buffer
    void Recv(char*,const size_t&);
        
private:
    Serial _xbee;
    DigitalOut _rst;
};