NerfUS / HardwareInterface

Dependents:   NerfUS_cmake_add_library_from_mbed NerfUS NerfUSGameCoordinator

Revision:
2:17746a0e459f
Parent:
1:001a600870d9
Child:
3:664dfa189c79
--- a/source/MbedBlinker.cpp	Thu Feb 16 12:08:49 2017 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-#include "HardwareInterfaceLPC1768.hpp"
-
-HardwareInterfaceLPC1768::HardwareInterfaceLPC1768(DigitalOut led) :
-    led(led)
-{
-}
-
-void HardwareInterfaceLPC1768::blink()
-{
-    led = 1;
-    wait(0.5);
-    led = 0;
-    wait(0.5);
-}