NerfUS / NerfUSXbee

Dependents:   NerfUS-Coord NerfUSTarget

Fork of APP3_xbee by Team APP

include/XbeeTransmitterInterface.hpp

Committer:
GaiSensei
Date:
2017-04-05
Revision:
23:2b67589150d9
Parent:
21:441645a394c2
Child:
27:8f2b613c7bb3

File content as of revision 23:2b67589150d9:

#ifndef XBEE_TRANSMITTER_INTERFACE_HPP
#define XBEE_TRANSMITTER_INTERFACE_HPP

#include <vector>
#include "stdint.h"

class XbeeTransmitterInterface
{
    public:
        virtual void transmit(const std::vector<uint8_t>& bytes, int address[8]) = 0;
};

#endif