printing values of potentiometer on serial

Dependencies:   mbed

Revision:
0:57382fac83ca
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Fri May 20 08:58:34 2022 +0000
@@ -0,0 +1,15 @@
+#include "mbed.h"
+
+Serial pc(USBTX,USBRX);
+AnalogIn pot(PTB0);
+float value;
+int res;
+int main() {
+    while(1)
+    {
+        value = pot.read();
+        res = value*10000;
+        pc.printf("\n%d\r",res);
+        wait(0.1);
+    }
+}