exp 22

  1. include "mbed.h" AnalogIn mypot(p20);

AnalogOut myled(p18); int main() { while(1) { myled = mypot; wait(0.01); } }


Please log in to post comments.