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.
Fork of blink_LED by
Diff: blink.h
- Revision:
- 0:d1d2410ad028
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/blink.h Fri Nov 11 06:35:49 2016 +0000
@@ -0,0 +1,15 @@
+#ifndef MBED_BLINKER_H
+#define MBED_BLINKER_H
+
+#include "mbed.h"
+
+class Blinker {
+public:
+ Blinker (PinName pin);
+ void Blink(int n);
+
+private:
+ DigitalOut LED1,LED2;
+};
+
+#endif
\ No newline at end of file
