Dependencies:   mbed

Revision:
3:5f1da2a6e94e
Parent:
2:20440b3f84b4
Child:
4:cfce770cd60d
--- a/main.cpp	Sat Feb 16 05:37:16 2019 +0000
+++ b/main.cpp	Sat Feb 16 05:53:02 2019 +0000
@@ -2,11 +2,12 @@
 
 DigitalOut myled(LED1);
 
-int main() {
+int main()
+{
     while(1) {
         myled = 1; // LED is ON
-        wait(5.5); // 200 ms
+        wait(2.5); // 200 ms
         myled = 0; // LED is OFF
-        wait(5.0); // 1 sec
+        wait(1.0); // 1 sec
     }
 }