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/MockDigitalOut.hpp

Committer:
Maxime Dupuis
Date:
2017-03-11
Revision:
26:328f659fc1b3
Parent:
TESTS/MockDigitalOut.hpp@ 25:0f2d698ecb3e

File content as of revision 26:328f659fc1b3:

#ifndef MOCK_DIGITAL_OUT_HPP
#define MOCK_DIGITAL_OUT_HPP

#include "DigitalOutInterface.hpp"

class MockDigitalOut : public DigitalOutInterface
{
    public:
        MOCK_METHOD1(write, void(int value));
};

#endif