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

Options/RemoteCommandOptions.h

Committer:
yangcq88517
Date:
2015-10-30
Revision:
4:a0f1fba6c2fb
Parent:
0:837e6c48e90d
Child:
6:5f31ddc17239

File content as of revision 4:a0f1fba6c2fb:

#ifndef UK_AC_HERTS_SMARTLAB_XBEE_RemoteCommandOptions
#define UK_AC_HERTS_SMARTLAB_XBEE_RemoteCommandOptions

#include "TransmitOptions.h"

class RemoteCommandOptions : public TransmitOptions
{
public :
    RemoteCommandOptions();
    
    RemoteCommandOptions(char option);

    RemoteCommandOptions(bool disable_retries_and_route_repair, bool apply_changes, bool enable_APS_encryption, bool use_extended_transmission_timeout);

    static RemoteCommandOptions * ApplyChanges;

    bool getApplyChanges();

    void setApplyChanges(bool status);

};

#endif