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.
SalinitySensor.h
- Committer:
- mariosimaremare
- Date:
- 2016-06-16
- Revision:
- 3:7c648d1d8802
- Parent:
- 2:ed17e258da0d
- Child:
- 5:4cbe44452889
File content as of revision 3:7c648d1d8802:
/* * G3: WATERPLAY */ #ifndef SALINITY_SENSOR_H #define SALINITY_SENSOR_H #include "mbed.h" #include "Printer.h" class SalinitySensor { public: SalinitySensor( Printer &printer, PinName pin, double const_voltage, double const_converter, double const_multiplier, double const_lower_boundary, double const_upper_boundary ); void reload(); double getReading(); double getVoltage(); double getSalinity(); double getStatus(); char* getStrStatus(); private: Printer &_printer; AnalogIn _analog_in; double _const_voltage; double _const_converter; double _const_multiplier; double _const_lower_boundary; double _const_upper_boundary; int _const_sample_number; double _reading; double _voltage; double _salinity; double _status; char* _strStatus; }; #endif