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/MockPwmOut.hpp
- Revision:
- 16:fba7c8e39388
diff -r 6b4455e85450 -r fba7c8e39388 TESTS/MockPwmOut.hpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/TESTS/MockPwmOut.hpp Sun Feb 26 10:20:18 2017 -0500 @@ -0,0 +1,12 @@ +#ifndef MOCK_PWM_OUT_HPP +#define MOCK_PWM_OUT_HPP + +#include "PwmOutInterface.hpp" + +class MockPwmOut : public PwmOutInterface +{ + public: + MOCK_METHOD1(pulsewidth_ms, void(int ms)); +}; + +#endif