Gokhale Jayanthi / Mbed 2 deprecated mbed_blinky

Dependencies:   mbed

Fork of mbed_blinky by Mbed

Files at this revision

API Documentation at this revision

Comitter:
gokhalej
Date:
Mon Jul 03 15:04:26 2017 +0000
Parent:
16:382668078fab
Commit message:
first version

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Fri May 12 11:06:33 2017 +0000
+++ b/main.cpp	Mon Jul 03 15:04:26 2017 +0000
@@ -5,8 +5,8 @@
 int main() {
     while(1) {
         myled = 1;
-        wait(0.2);
+        wait(0.5);
         myled = 0;
-        wait(0.2);
+        wait(0.5);
     }
 }