adam zhang / Mbed 2 deprecated Nucleo_blink_led1

Dependencies:   mbed

Fork of Nucleo_blink_led by adam zhang

Files at this revision

API Documentation at this revision

Comitter:
adam_z
Date:
Tue Jan 12 13:18:55 2016 +0000
Child:
1:a91c7a3d9689
Commit message:
hrllo

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	Tue Jan 12 13:18:55 2016 +0000
@@ -0,0 +1,12 @@
+#include "mbed.h"
+
+DigitalOut myled(LED1);
+
+int main() {
+    while(1) {
+        myled = 1; // LED is ON
+        wait(0.11); // 200 ms
+        myled = 0; // LED is OFF
+        wait(0.1); // 1 sec
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Tue Jan 12 13:18:55 2016 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/4336505e4b1c
\ No newline at end of file