Day 4 Starts Isme potentiometer ka float value dikhtai screen me

Dependencies:   mbed

Revision:
0:55e949f5d86a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Fri Jul 01 09:10:37 2016 +0000
@@ -0,0 +1,16 @@
+#include "mbed.h"
+
+Serial pc(USBTX,USBRX);
+AnalogIn pot(PTB0);
+
+float value;
+int main() 
+{
+    while(1) 
+    {
+        value=pot.read();
+        value=value*3.33;
+        pc.printf("Pot value = %f \n \r",value); //To print value of potentiometer into the terminal
+        wait(1.20);
+    }
+}