hello world example project
Diff: main.cpp
- Revision:
- 0:484f8bff8521
--- /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++);
+ }
+}