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/MockPwmOut.hpp
- Committer:
- Maxime Dupuis
- Date:
- 2017-04-12
- Revision:
- 51:6bf268cd1a1b
- Parent:
- 42:efbb785e7740
File content as of revision 51:6bf268cd1a1b:
#ifndef MOCK_PWM_OUT_HPP #define MOCK_PWM_OUT_HPP #include "PwmOutInterface.hpp" class MockPwmOut : public PwmOutInterface { public: MOCK_METHOD1(pulsewidth_us, void(int us)); }; #endif