dd

Dependencies:   mbed

Fork of STMNucleoF401RE_ExampleCode_02_BlinkLED_ by Corso Rapid Prototyping with STM32Nucleo

Revision:
3:9d4a3d3b95b9
Parent:
2:1ab0a73dd25b
--- a/main.cpp	Wed Oct 19 08:43:49 2016 +0000
+++ b/main.cpp	Fri Jan 13 12:20:51 2017 +0000
@@ -15,8 +15,8 @@
     // Il Led lampeggia
     while(1) {
         myled = 1; // LED is ON
-        wait(0.2); // Attende 200 ms
+        wait(0.05); // Attende 200 ms
         myled = 0; // LED is OFF
-        wait(1.0); // Attende 1 sec
+        wait(0.05); // Attende 1 sec
     }
 }