XBee and XBee-PRO ZigBee RF modules provide cost-effective wireless connectivity to electronic devices. They are interoperable with other ZigBee PRO feature set devices, including devices from other vendors.

Dependencies:   BufferedArray

Dependents:   MBEDminiproject

Indicator/ZigBeeExplicitRxIndicator.h

Committer:
yangcq88517
Date:
2015-10-22
Revision:
0:837e6c48e90d
Child:
6:5f31ddc17239

File content as of revision 0:837e6c48e90d:

#ifndef UK_AC_HERTS_SMARTLAB_XBEE_ZigBeeExplicitRxIndicator
#define UK_AC_HERTS_SMARTLAB_XBEE_ZigBeeExplicitRxIndicator

#include "RxBase.h"
#include "Address.h"
#include "ExplicitAddress.h"
#include "IPayloadResponse.h"

class ZigBeeExplicitRxIndicator: public IPayloadResponse, public RxBase
{
public:

    ZigBeeExplicitRxIndicator(APIFrame * frame);

    virtual char * getReceivedData();

    virtual int getReceivedDataOffset();

    virtual char getReceivedData(int index);

    virtual int getReceivedDataLength();

    ExplicitAddress getExplicitRemoteDevice();

    virtual Address getRemoteDevice();

    virtual int getReceiveStatus();

    virtual int getRSSI();
    
    bool convert(APIFrame * frame);
};

#endif