C027 Example: blinking LED

Dependencies:   C027-REVB mbed

Fork of C027_HelloWorld by u-blox

Revision:
6:16ceb51fc1fc
Parent:
5:41b123533b79
--- a/main.cpp	Fri Dec 06 09:58:29 2013 +0000
+++ b/main.cpp	Sat Dec 14 01:27:06 2013 +0000
@@ -7,11 +7,14 @@
  #define LED A0
 #endif
 
-DigitalOut myled(LED); 
+DigitalOut myled(LED);
 
 int main() {
+
     while(1) {
+    
         myled = !myled;
+    
         wait(0.2);
     }
 }