Jan Boerman
/
PotTest
potmeter from biorobotics shield
Revision 0:1e99403dfec9, committed 2016-09-26
- Comitter:
- Jankoekenpan
- Date:
- Mon Sep 26 09:21:40 2016 +0000
- Commit message:
- initial pot test
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 1e99403dfec9 main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Mon Sep 26 09:21:40 2016 +0000 @@ -0,0 +1,16 @@ +#include "mbed.h" + +AnalogIn pot(A1); + +Serial pc(USBTX, USBRX); + +int main() +{ + while (true) { + pc.baud(115200); + + pc.printf("pot output: %f\r\n\n", pot.read()); + + wait(1.0f); + } +} \ No newline at end of file
diff -r 000000000000 -r 1e99403dfec9 mbed.bld --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Mon Sep 26 09:21:40 2016 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/abea610beb85 \ No newline at end of file