dd

Dependencies:   mbed

Fork of STMNucleoF401RE_ExampleCode_02_BlinkLED_ by Corso Rapid Prototyping with STM32Nucleo

Files at this revision

API Documentation at this revision

Comitter:
fabiotonoli
Date:
Fri Jan 13 12:20:51 2017 +0000
Parent:
2:1ab0a73dd25b
Commit message:
bbb

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- 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
     }
 }