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.
include/RealXbeeTransmitter.hpp
- Committer:
- GaiSensei
- Date:
- 2017-03-29
- Revision:
- 14:cc65f603e659
- Child:
- 16:f4df01448b59
File content as of revision 14:cc65f603e659:
#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