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

TESTS/mocks/MockPwmOut.hpp

Committer:
Maxime Dupuis
Date:
2017-04-09
Revision:
42:efbb785e7740
Parent:
26:328f659fc1b3

File content as of revision 42:efbb785e7740:

#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