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.
Dependencies: BSP_B-L475E-IOT01
Diff: main.cpp
- Revision:
- 0:280450d2b3cc
- Child:
- 5:2d1980c7ca2d
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Tue Jan 31 13:03:41 2017 +0100
@@ -0,0 +1,11 @@
+#include "mbed.h"
+
+DigitalOut led1(LED1);
+
+int main()
+{
+ while(1) {
+ led1 = !led1;
+ wait(1);
+ }
+}