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