AnalogIn example

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
gcarmonar
Date:
Wed Oct 09 21:27:23 2013 +0000
Commit message:
Ver1.0

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
diff -r 000000000000 -r 4d9f971931c5 main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Wed Oct 09 21:27:23 2013 +0000
@@ -0,0 +1,12 @@
+#include "mbed.h"
+
+PwmOut led(LED1);
+AnalogIn pot(A0);
+
+int main() {
+    while(1) {
+        float input = pot;
+        led = input;
+        wait(0.1);
+    }
+}
diff -r 000000000000 -r 4d9f971931c5 mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Wed Oct 09 21:27:23 2013 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/a9913a65894f
\ No newline at end of file