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.
Fork of g3_waterplay by
TemperatureSensor.h
- Committer:
- mariosimaremare
- Date:
- 2016-06-14
- Revision:
- 2:ed17e258da0d
- Parent:
- 1:f448c12d2c5b
- Child:
- 3:7c648d1d8802
File content as of revision 2:ed17e258da0d:
/* * G3: WATERPLAY */ #ifndef TEMPERATURE_SENSOR_H #define TEMPERATURE_SENSOR_H #include "mbed.h" class TemperatureSensor { public: TemperatureSensor( mbed::Serial &serial, PinName pin, double const_voltage, double const_converter, double const_lower_boundary, double const_upper_boundary, double variance, double vin, double resistance ); void reload(); double getReading(); double getVoltage(); double getTemperature(); double getStatus(); private: Serial &_serial; AnalogIn _analog_in; double _const_voltage; double _const_converter; double _const_lower_boundary; double _const_upper_boundary; double _variance; double _vin; double _resistance; double _reading; double _voltage; double _temperature; double _status; double _k0; double _k1; double _k2; double _kelvin_to_celcius; }; #endif