Qubit 2020 / presensfirmwareupdate

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers OxygenSensor.h Source File

OxygenSensor.h

00001 #ifndef __OXYGENSENSOR_H__
00002 #define __OXYGENSENSOR_H__
00003 
00004 class OxygenSensor {
00005 private:
00006   const float m_temp0;
00007   const float m_temp100;
00008   const float m_phase0;
00009   const float m_phase100;
00010   const float m_pressure;
00011   const float m_salinity;
00012 
00013 public:
00014   OxygenSensor(const float, const float, const float,
00015                const float, const float, const float);
00016   ~OxygenSensor() {}
00017 
00018   float calculate(const float, const float) const;
00019 };
00020 
00021 #endif  // __OXYGENSENSOR_H__