1#ifndef Driver_RHTemp_Api_h_
2#define Driver_RHTemp_Api_h_
51 virtual bool start() noexcept = 0;
56 virtual
void stop() noexcept = 0;
75 virtual
bool sample(
float& rhOut,
float& tempCOut ) noexcept = 0;
This class defines an interface for reading and managing a combined RH and Temperature sensor.
Definition Api.h:33
virtual bool sample(float &rhOut, float &tempCOut) noexcept=0
This method is used to read/sample both RH (percentage 0 to 100) and Temperature (in degrees Centigra...
virtual bool start() noexcept=0
Starts the driver actively sampling.
virtual SamplingState_T getSample(float &rhOut, float &tempCOut) noexcept=0
Used to retrieve the sample result.
virtual ~Api()
Virtual destructor.
Definition Api.h:116
virtual void stop() noexcept=0
Stops the driver from sampling inputs, and disables the on-board heater.
virtual bool setHeaterState(bool enabled) noexcept
This method is used to enable/disable a 'on-board heater' that is used to evaporate condensation on t...
Definition Api.h:112
virtual SamplingState_T startSample() noexcept=0
This method is used to start a non-blocking sampling sequence.
virtual SamplingState_T getSamplingState() noexcept=0
This method returns the current state of the non-blocking sampling.
SamplingState_T
State of the non-blocking sampling.
Definition Api.h:38
@ eERROR
An error occurred.
Definition Api.h:42
@ eNOT_STARTED
No sample sequence has been started.
Definition Api.h:39
@ eSAMPLING
Sampling is in progress.
Definition Api.h:40
@ eSAMPLE_READY
A sample has been successfully acquired.
Definition Api.h:41