LedController

Dependents:   LedControllerTests NerfUSTarget

Fork of Servomotor by NerfUS

include/DigitalOutInterface.hpp

Committer:
dupm2216
Date:
2017-03-05
Revision:
4:6f0756847428

File content as of revision 4:6f0756847428:

#ifndef DIGITAL_OUT_INTERFACE_HPP
#define DIGITAL_OUT_INTERFACE_HPP

class DigitalOutInterface
{
    public:
        virtual void write(int value) = 0;
};

#endif