![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
TINF
main.cpp
- Committer:
- ftkl_user
- Date:
- 2019-11-17
- Revision:
- 6:e46770317c24
- Parent:
- 5:1539103730cd
File content as of revision 6:e46770317c24:
#include "mbed.h" AnalogOut Aout(p18); AnalogIn pot1(p19); int main() { while(1) { for(float i=0.0; i<1.0; i+=0.1) { Aout = i; wait(0.00001+(0.0001*pot1.read())); printf("%f\n", i); } } }