modifications to run via legfile.txt and then exit, manage logfile versions, diagnostics file

Dependencies:   mbed MODSERIAL FATFileSystem

Sensors/Sensors.hpp

Committer:
joel_ssc
Date:
2019-02-19
Revision:
84:eccd8e837134
Parent:
73:f6f378311c8d

File content as of revision 84:eccd8e837134:

#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 */