Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: NerfUS-Coord NerfUSTarget
Fork of APP3_xbee by
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
