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
Diff: TESTS/MockDigitalOut.hpp
- Revision:
- 25:0f2d698ecb3e
diff -r 801271795da0 -r 0f2d698ecb3e TESTS/MockDigitalOut.hpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/TESTS/MockDigitalOut.hpp Sat Mar 11 13:42:22 2017 -0500 @@ -0,0 +1,12 @@ +#ifndef MOCK_DIGITAL_OUT_HPP +#define MOCK_DIGITAL_OUT_HPP + +#include "DigitalOutInterface.hpp" + +class MockDigitalOut : public DigitalOutInterface +{ + public: + MOCK_METHOD1(write, void(int value)); +}; + +#endif