NerfUS mobile node that manages a target for the Nerf gun firing range
Dependencies: LedController mbed-rtos mbed NerfUSXbee Servomotor TargetManager
Fork of NerfUS by
TESTS/mocks/MockXbeeTransmitter.hpp
- Committer:
- Maxime Dupuis
- Date:
- 2017-03-27
- Revision:
- 28:8fc53a870691
- Parent:
- 26:328f659fc1b3
- Child:
- 37:8fc7845ae95b
File content as of revision 28:8fc53a870691:
#ifndef MOCK_XBEE_TRANSMITTER_HPP #define MOCK_XBEE_TRANSMITTER_HPP #include "XbeeTransmitterInterface.hpp" class MockXbeeTransmitter : public XbeeTransmitterInterface { public: MOCK_METHOD1(transmit, void(const std::vector<uint8_t>& bytes)); }; #endif