NerfUS / HardwareInterface

Dependents:   NerfUS_cmake_add_library_from_mbed NerfUS NerfUSGameCoordinator

Revision:
1:001a600870d9
Child:
2:17746a0e459f
diff -r e67c78f2b4f4 -r 001a600870d9 include/HardwareLPC1768.hpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/include/HardwareLPC1768.hpp	Thu Feb 16 12:08:49 2017 -0500
@@ -0,0 +1,12 @@
+#include "HardwareInterface.hpp"
+#include "mbed.h"
+
+class HardwareInterfaceLPC1768 : public HardwareInterface
+{
+    public:
+        HardwareInterfaceLPC1768(DigitalOut led);
+        virtual void blink();
+        
+    private:
+        DigitalOut led;
+};