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 NerfUS

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers MockXbeeTransmitter.hpp Source File

MockXbeeTransmitter.hpp

00001 #ifndef MOCK_XBEE_TRANSMITTER_HPP
00002 #define MOCK_XBEE_TRANSMITTER_HPP
00003 
00004 #include "XbeeTransmitterInterface.hpp"
00005 
00006 class MockXbeeTransmitter : public XbeeTransmitterInterface
00007 {
00008     public:
00009         MOCK_METHOD2(transmit, void(const std::vector<uint8_t>& bytes, int address[8]));
00010         MOCK_METHOD3(transmit, void(uint8_t bytes[4], int length, int address[8]));
00011 };
00012 
00013 #endif