hello world example project
Revision 0:484f8bff8521, committed 2019-02-23
- Comitter:
- marcozecchini
- Date:
- Sat Feb 23 11:43:55 2019 +0000
- Commit message:
- helloworld_example
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
| mbed.bld | Show annotated file Show diff for this revision Revisions of this file |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Sat Feb 23 11:43:55 2019 +0000
@@ -0,0 +1,24 @@
+#include "mbed.h"
+
+/*------------------------------------------------------------------------------
+
+-- HelloWorld example
+
+ Printing hello world and toggling LED1
+
+------------------------------------------------------------------------------*/
+
+DigitalOut led(LED1);
+
+int main()
+{
+ int i = 1;
+
+ printf("Hello World !\n");
+
+ while(1) {
+ wait(1); // 1 second
+ led = !led; // Toggle LED
+ printf("This program runs since %d seconds.\n", i++);
+ }
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Sat Feb 23 11:43:55 2019 +0000 @@ -0,0 +1,1 @@ +https://os.mbed.com/users/mbed_official/code/mbed/builds/3a7713b1edbc \ No newline at end of file