NerfUS / HardwareInterface

Dependents:   NerfUS_cmake_add_library_from_mbed NerfUS NerfUSGameCoordinator

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers HardwareLPC1768.hpp Source File

HardwareLPC1768.hpp

00001 #include "HardwareInterface.hpp"
00002 #include "mbed.h"
00003 
00004 class HardwareLPC1768 : public HardwareInterface
00005 {
00006     public:
00007         HardwareLPC1768(DigitalOut led);
00008         virtual void blink();
00009         
00010     private:
00011         DigitalOut led;
00012 };