A simple program that sends a value over analog output.
Dependencies: mbed
Diff: main.cpp
- Revision:
- 0:768f66ec3284
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Thu Dec 18 09:24:09 2014 +0000 @@ -0,0 +1,14 @@ +#include "mbed.h" + +AnalogOut out(p18); +Serial pc(USBTX, USBRX); + +int main() { + float value; + while(1) { + pc.printf("\n\rEnter value to send over analog out: "); + pc.scanf("%f", &value); + out = value; + wait(10); + } +} \ No newline at end of file