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 MockPwmOut.hpp Source File

MockPwmOut.hpp

00001 #ifndef MOCK_PWM_OUT_HPP
00002 #define MOCK_PWM_OUT_HPP
00003 
00004 #include "PwmOutInterface.hpp"
00005 
00006 class MockPwmOut : public PwmOutInterface
00007 {
00008     public:
00009         MOCK_METHOD1(pulsewidth_us, void(int us));
00010 };
00011 
00012 #endif