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

IOCDetectionConfigRequest.h

00001 #ifndef UK_AC_HERTS_SMARTLAB_XBEE_IOCDetectionConfigRequest
00002 #define UK_AC_HERTS_SMARTLAB_XBEE_IOCDetectionConfigRequest
00003 
00004 #include "Pin.h"
00005 #include "ATCommands.h"
00006 #include "ATCommandRequest.h"
00007 
00008 class IOCDetectionConfigRequest : public ATCommandRequest
00009 {
00010 public:
00011     IOCDetectionConfigRequest(unsigned  char frameID, Pin ** pins, int size)
00012         : ATCommandRequest(frameID, ATCommands::Digital_IO_Change_Detection, Pin::IOChangeDetectionConfiguration(pins, size), 0, 2)
00013     { }
00014 };
00015 
00016 #endif