Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: NerfUS_cmake_add_library_from_mbed NerfUS NerfUSGameCoordinator
Diff: source/MbedBlinker.cpp
- Revision:
- 1:001a600870d9
- Parent:
- 0:e67c78f2b4f4
diff -r e67c78f2b4f4 -r 001a600870d9 source/MbedBlinker.cpp
--- a/source/MbedBlinker.cpp Thu Feb 16 11:42:32 2017 -0500
+++ b/source/MbedBlinker.cpp Thu Feb 16 12:08:49 2017 -0500
@@ -1,11 +1,11 @@
-#include "MbedBlinker.hpp"
+#include "HardwareInterfaceLPC1768.hpp"
-MbedBlinker::MbedBlinker(DigitalOut led) :
+HardwareInterfaceLPC1768::HardwareInterfaceLPC1768(DigitalOut led) :
led(led)
{
}
-void MbedBlinker::blink()
+void HardwareInterfaceLPC1768::blink()
{
led = 1;
wait(0.5);