PWM and a potentiometer

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
gcarmonar
Date:
Mon Nov 24 23:08:19 2014 +0000
Commit message:
PWM and a potentiometer

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Nov 24 23:08:19 2014 +0000
@@ -0,0 +1,12 @@
+#include "mbed.h"
+
+PwmOut led(D3);
+AnalogIn pot(A0);
+
+int main()
+{
+    while (true) {
+        led = pot;
+        wait(0.1);
+    }
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Mon Nov 24 23:08:19 2014 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/031413cf7a89
\ No newline at end of file