Librairie xbee.

Dependents:   NerfUS-Coord NerfUSTarget

Fork of APP3_xbee by Team APP

include/RealXbeeTransmitter.hpp

Committer:
GaiSensei
Date:
2017-03-30
Revision:
16:f4df01448b59
Parent:
14:cc65f603e659
Child:
21:441645a394c2

File content as of revision 16:f4df01448b59:

#ifndef REAL_XBEE_TRANSMITTER_HPP
#define REAL_XBEE_TRANSMITTER_HPP

#include "xbee.h"
#include "XbeeTransmitterInterface.hpp"

class RealXbeeTransmitter : public XbeeTransmitterInterface
{
    public:
        RealXbeeTransmitter();
        virtual void transmit(const std::vector<uint8_t>& bytes);  
};

#endif