Librairie xbee.

Dependents:   NerfUS-Coord NerfUSTarget

Fork of APP3_xbee by Team APP

include/XbeeReceiverInterface.hpp

Committer:
GaiSensei
Date:
2017-04-05
Revision:
23:2b67589150d9
Parent:
15:ab3e0d32e578

File content as of revision 23:2b67589150d9:

#ifndef XBEE_RECEIVER_INTERFACE_HPP
#define XBEE_RECEIVER_INTERFACE_HPP

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

class XbeeReceiverInterface
{
    public:
        virtual void start(void (*callback)(vector<uint8_t>, int*)) = 0; 
};

#endif