LedController

Dependents:   LedControllerTests NerfUSTarget

Fork of Servomotor by NerfUS

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers DigitalOutInterface.hpp Source File

DigitalOutInterface.hpp

00001 #ifndef DIGITAL_OUT_INTERFACE_HPP
00002 #define DIGITAL_OUT_INTERFACE_HPP
00003 
00004 class DigitalOutInterface
00005 {
00006     public:
00007         virtual void write(int value) = 0;
00008 };
00009 
00010 #endif