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

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers RemoteCommandOptions.h Source File

RemoteCommandOptions.h

00001 #ifndef UK_AC_HERTS_SMARTLAB_XBEE_RemoteCommandOptions
00002 #define UK_AC_HERTS_SMARTLAB_XBEE_RemoteCommandOptions
00003 
00004 #include "TransmitOptions.h"
00005 
00006 class RemoteCommandOptions : public TransmitOptions
00007 {
00008 public :
00009     RemoteCommandOptions();
00010     
00011     RemoteCommandOptions(unsigned char option);
00012 
00013     RemoteCommandOptions(bool disable_retries_and_route_repair, bool apply_changes, bool enable_APS_encryption, bool use_extended_transmission_timeout);
00014 
00015     static RemoteCommandOptions * ApplyChanges;
00016 
00017     bool getApplyChanges();
00018 
00019     void setApplyChanges(bool status);
00020 
00021 };
00022 
00023 #endif