wu

Dependencies:   mbed-rtos mbed

Fork of Boboobooov4 by kao yi

pot.cpp

Committer:
backman
Date:
2014-07-02
Revision:
20:30799cbda86b
Parent:
7:fd976e1ced33

File content as of revision 20:30799cbda86b:


#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();
     
     
}