Librairie xbee.

Dependents:   NerfUS-Coord NerfUSTarget

Fork of APP3_xbee by Team APP

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers XbeeTransmitterInterface.hpp Source File

XbeeTransmitterInterface.hpp

00001 #ifndef XBEE_TRANSMITTER_INTERFACE_HPP
00002 #define XBEE_TRANSMITTER_INTERFACE_HPP
00003 
00004 #include <vector>
00005 #include "stdint.h"
00006 
00007 class XbeeTransmitterInterface
00008 {
00009     public:
00010         virtual void transmit(const std::vector<uint8_t>& bytes, int address[8]) = 0;
00011         virtual void transmit(uint8_t bytes[4], int length, int address[8]) = 0;
00012 };
00013 
00014 #endif