asdsdsdsfasf

Dependencies:   mbed

Fork of PwmOut_HelloWorld by Mbed

Files at this revision

API Documentation at this revision

Comitter:
masterhorror
Date:
Thu Mar 19 20:46:40 2015 +0000
Parent:
2:32f6e0cd5d6f
Commit message:
erafgas

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r 32f6e0cd5d6f -r 80d90939a6cd main.cpp
--- a/main.cpp	Thu Mar 19 20:43:49 2015 +0000
+++ b/main.cpp	Thu Mar 19 20:46:40 2015 +0000
@@ -3,11 +3,12 @@
 PwmOut led(LED1);
 
 int main() {
+        while(1);{
     // specify period first
     led.period(0.002f);      // 4 second period
     led.write(led+0.01f); 
-    led=led+0.01     // 50% duty cycle, relative to period
+    led=led+0.01;     // 50% duty cycle, relative to period
     //led = 0.5f;          // shorthand for led.write()
     //led.pulsewidth(2);   // alternative to led.write, set duty cycle time in seconds
-    while(1);
+}
 }
\ No newline at end of file