PWM

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
anggeloko
Date:
Thu Dec 04 04:39:38 2014 +0000
Commit message:
codigo simple para un pwm

Changed in this revision

mbed.bld Show annotated file Show diff for this revision Revisions of this file
pwm.cpp Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Thu Dec 04 04:39:38 2014 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/552587b429a1
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pwm.cpp	Thu Dec 04 04:39:38 2014 +0000
@@ -0,0 +1,11 @@
+#include "mbed.h"
+
+PwmOut Fr(PTC9);
+
+int main()
+{
+    Fr.period(200); //(1/frecuencia)
+    Fr.write(0.5f);   //50% siclo util
+    while(1);
+
+}
\ No newline at end of file