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-03-11
- Revision:
- 26:328f659fc1b3
- Parent:
- TESTS/MockPwmOut.hpp@ 16:fba7c8e39388
- Child:
- 42:efbb785e7740
File content as of revision 26:328f659fc1b3:
#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