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 ICommandRequest.h Source File

ICommandRequest.h

00001 #ifndef UK_AC_HERTS_SMARTLAB_XBEE_ICommandRequest
00002 #define UK_AC_HERTS_SMARTLAB_XBEE_ICommandRequest
00003 
00004 class ICommandRequest
00005 {
00006 
00007 public:
00008 
00009     virtual void setAppleChanges(bool appleChanges) = 0;
00010 
00011     virtual void setCommand(const char * command) = 0;
00012 
00013     virtual void setParameter(const unsigned  char * parameter, int offset, int length) = 0;
00014 };
00015 
00016 #endif