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@14:cc65f603e659, 2017-03-29 (annotated)
- Committer:
- GaiSensei
- Date:
- Wed Mar 29 15:56:01 2017 +0000
- Revision:
- 14:cc65f603e659
- Child:
- 16:f4df01448b59
added transmitter
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
GaiSensei | 14:cc65f603e659 | 1 | #ifndef REAL_XBEE_TRANSMITTER_HPP |
GaiSensei | 14:cc65f603e659 | 2 | #define REAL_XBEE_TRANSMITTER_HPP |
GaiSensei | 14:cc65f603e659 | 3 | |
GaiSensei | 14:cc65f603e659 | 4 | #include <xbee.h> |
GaiSensei | 14:cc65f603e659 | 5 | #include <XbeeTransmitterInterface.hpp> |
GaiSensei | 14:cc65f603e659 | 6 | |
GaiSensei | 14:cc65f603e659 | 7 | class RealXbeeTransmitter : public XbeeTransmitterInterface |
GaiSensei | 14:cc65f603e659 | 8 | { |
GaiSensei | 14:cc65f603e659 | 9 | public: |
GaiSensei | 14:cc65f603e659 | 10 | RealXbeeTransmitter(); |
GaiSensei | 14:cc65f603e659 | 11 | virtual void transmit(const std::vector<uint8_t>& bytes); |
GaiSensei | 14:cc65f603e659 | 12 | }; |
GaiSensei | 14:cc65f603e659 | 13 | |
GaiSensei | 14:cc65f603e659 | 14 | #endif |