LedController

Dependents:   LedControllerTests NerfUSTarget

Fork of Servomotor by NerfUS

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers LedController.hpp Source File

LedController.hpp

00001 #ifndef LED_CONTROLLER_HPP
00002 #define LED_CONTROLLER_HPP
00003 
00004 #include "DigitalOutInterface.hpp"
00005 #include "LedControllerInterface.hpp"
00006 
00007 class LedController : public LedControllerInterface
00008 {
00009     public:
00010         LedController(DigitalOutInterface &digital_out);
00011         virtual void turn_on();
00012         virtual void turn_off();
00013     
00014     private:
00015         DigitalOutInterface &digital_out;
00016 };
00017 
00018 #endif