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

Request/ICommandRequest.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_ICommandRequest
#define UK_AC_HERTS_SMARTLAB_XBEE_ICommandRequest

class ICommandRequest
{

public:

    virtual void setAppleChanges(bool appleChanges) = 0;

    virtual void setCommand(const char * command) = 0;

    virtual void setParameter(const char * parameter, int offset, int length) = 0;
};

#endif