This is a very simple guide, reviewing the steps required to get Blinky working on an mbed OS platform. by ST

Revision:
108:a016a8ac873b
Parent:
79:27b141bfc453
--- a/main.cpp	Thu Feb 06 07:10:20 2020 +0000
+++ b/main.cpp	Thu Feb 06 07:18:13 2020 +0000
@@ -6,7 +6,7 @@
 int main() {
     while (true) {
         led1 = !led1;
-        wait(0.5);
+        wait(0.6); // modify 0.5 to 0.6
     }
 }