Simple blink test.

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
dzoni
Date:
Fri Aug 02 15:39:15 2019 +0000
Parent:
0:0f248bf5f3ac
Commit message:
Initial commit.

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Sat Dec 12 19:37:25 2015 +0000
+++ b/main.cpp	Fri Aug 02 15:39:15 2019 +0000
@@ -5,8 +5,8 @@
 int main() {
     while(1) {
         myled = 1; // LED is ON
-        wait(0.1); // 200 ms
+        wait(0.5); // 200 ms
         myled = 0; // LED is OFF
-        wait(0.1); // 1 sec
+        wait(0.5); // 1 sec
     }
 }