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

RxBase.h

00001 #ifndef UK_AC_HERTS_SMARTLAB_XBEE_RxBase
00002 #define UK_AC_HERTS_SMARTLAB_XBEE_RxBase
00003 
00004 #include "APIFrame.h"
00005 
00006 class RxBase: public APIFrame
00007 {
00008 public:
00009     RxBase(APIFrame * frame)
00010         : APIFrame(frame)
00011     { }
00012 };
00013 
00014 #endif