/*
Matthew Kelly
October 24th, 2013
The purpose of this class is to define a a data structure with all of the necessary information and member functions...
to fully describe a single ultrasonic transducer for use in a relative positioning system.
*/

#include "mbed.h"

class omegaPX209 {
public:
    omegaPX209();    
    void initialize();
    float calcP();              // Calculates pressure
        
private:
    AnalogIn depthP;
    float P;                    // Pressure [psi]
    float cal;                  // Volts per psi
    float multiplier;           // Maximum voltage in
        
};
