Librairie xbee.

Dependents:   NerfUS-Coord NerfUSTarget

Fork of APP3_xbee by Team APP

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers XbeeReceiverInterface.hpp Source File

XbeeReceiverInterface.hpp

00001 #ifndef XBEE_RECEIVER_INTERFACE_HPP
00002 #define XBEE_RECEIVER_INTERFACE_HPP
00003 
00004 #include <vector>
00005 #include "stdint.h"
00006 
00007 class XbeeReceiverInterface
00008 {
00009     public:
00010         virtual void start(void (*callback)(vector<uint8_t>, int*)) = 0; 
00011 };
00012 
00013 #endif