good

Dependencies:   mbed

Fork of BX-car by Clark Lin

Revision:
7:fd976e1ced33
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pot.cpp	Sun Jun 22 13:58:01 2014 +0000
@@ -0,0 +1,30 @@
+
+#include "mbed.h"
+#include "pot.h"
+
+
+
+BX_pot::BX_pot(char t){
+    
+    
+    switch (t){
+       case '1':  
+         pot_in = new AnalogIn (PTB3);
+       break;
+       case '2':
+         pot_in = new AnalogIn (PTB2);
+       break;
+    }
+    
+    
+    
+    }
+    
+ float  BX_pot::read(void){
+     
+     
+     
+  return    pot_in->read();
+     
+     
+}   
\ No newline at end of file