hello world example project

Dependencies:   mbed

Files at this revision

API Documentation at this revision

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
diff -r 000000000000 -r 484f8bff8521 main.cpp
--- /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++);
+    }
+}
diff -r 000000000000 -r 484f8bff8521 mbed.bld
--- /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