Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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__
Generated on Tue Sep 27 2022 18:47:00 by
1.7.2