Fork of DigitalOut_HelloWorld

Fork of DigitalOut_HelloWorld by mbed_example

Testing Testing Testing Testing Testing Testing Testing Testing Testing Testing Testing Testing

Revision:
2:b4e2eee99a28
Parent:
0:b5a9e0614efd
Child:
3:29debdbea629
--- a/main.cpp	Thu Feb 21 17:06:56 2013 +0000
+++ b/main.cpp	Sat Sep 20 21:47:16 2014 +0000
@@ -4,9 +4,9 @@
 
 int main() {
     while(1) {
-        myled = 1;
+        myled = 1;  // turn myled on
         wait(0.2);
-        myled = 0;
+        myled = 0;  // turn myled off
         wait(0.2);
     }
 }