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 Task121 by
Diff: main.cpp
- Revision:
- 0:c742e33896a9
- Child:
- 1:a3b418536134
diff -r 000000000000 -r c742e33896a9 main.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Thu Sep 17 16:34:48 2015 +0000
@@ -0,0 +1,26 @@
+//This is known as a “header file”
+//In short, this copies and pastes the text file
+//mbed.h into this code
+#include "mbed.h"
+
+//Create a DigitalOut “object” called myled
+//Pass constant D7 as a “parameter”
+DigitalOut myled(D7);
+
+//The main function - all executable C / C++
+//applications have a main function. This is
+//out entry point in the software
+int main() {
+
+// ALL the code is contained in a
+// “while loop”
+ while(1)
+ {
+ //The code between the { curly braces }
+ //is the code that is repeated
+ myled = 1; // External LED is ON
+ wait(1.0); // 1 second
+ myled = 0; // LED is OFF
+ wait(1.0); // External 1 second
+ }
+}
\ No newline at end of file
