update with altimeter, swimfile.txt endleg.txt, etc see changes_13sep.txt also reset_PI()

Dependencies:   mbed MODSERIAL FATFileSystem

Sensors/Sensors.hpp

Committer:
tnhnrl
Date:
2018-07-30
Revision:
73:f6f378311c8d
Child:
99:9d0849f5fcd7
Child:
102:0f430de62447

File content as of revision 73:f6f378311c8d:

#ifndef SENSORS_HPP
#define SENSORS_HPP
 
#include "mbed.h"

class Sensors {
public:
    Sensors();
    
    float getInternalPressurePSI();
    float getVoltageInput();
    float getCurrentInput();
    float getAltimeterChannelReadings();
 
private:
    float _reference_voltage;
};
 
#endif /* GUI_HPP */