Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
main.cpp
00001 #include "mbed.h" 00002 00003 #define rRatio 6.6355 00004 #define vRatio 3.3 00005 00006 Serial pc (USBTX,USBRX); 00007 AnalogIn pot (p16); 00008 00009 int main() { 00010 while(1) { 00011 float myval = pot * rRatio * vRatio; 00012 pc.printf("myval = %.3f \n",myval); 00013 wait(0.2); 00014 } 00015 } 00016 00017
Generated on Thu Jul 14 2022 21:04:21 by
1.7.2