GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Driver_RHTemp_Api_h_
2#define Driver_RHTemp_Api_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
16
17///
18namespace Driver {
19///
20namespace RHTemp {
21
22/** This class defines an interface for reading and managing a combined RH
23 and Temperature sensor.
24
25 Note: There is no requirement for how RH/Temperature is measured; or if
26 the sensor 'package' is connected to the MCU via discrete signals or
27 through a serial bus.
28
29 The class is NOT thread safe. The application is RESPONSIBLE for ensuring
30 thread-safe usage.
31 */
32class Api
33{
34public:
35 /** State of the non-blocking sampling
36 */
38 {
39 eNOT_STARTED, //!< No sample sequence has been started
40 eSAMPLING, //!< Sampling is in progress
41 eSAMPLE_READY, //!< A sample has been successfully acquired
42 eERROR //!< An error occurred. Triggering a new sample request will clear this state.
43 };
44
45public:
46 /** Starts the driver actively sampling.
47
48 The method returns true when it is successful; else false is returned
49 (e.g. a communication error occurred).
50 */
51 virtual bool start() noexcept = 0;
52
53 /** Stops the driver from sampling inputs, and disables the on-board
54 heater.
55 */
56 virtual void stop() noexcept = 0;
57
58public:
59 /** This method is used to read/sample both RH (percentage 0 to 100) and
60 Temperature (in degrees Centigrade).
61
62 This method blocks/busy-waits until the both RH and Temperature has
63 been captured. The block/busy-wait time can be relatively long
64 (e.g. >15ms)
65
66 The method returns true when it is successful is reading RH and
67 Temperature; else false is returned (e.g. a communication error occurred).
68
69 Note: This method will fail if a non-blocking sample is in progress
70
71 Note: The 'requestedAccuracy' argument is a suggestion, i.e. the
72 concrete implementation may or may not support the accuracy
73 request.
74 */
75 virtual bool sample( float& rhOut, float& tempCOut ) noexcept = 0;
76
77public:
78 /** This method is used to start a non-blocking sampling sequence. The
79 application then 'polls' state of the sampling by calling getSamplingState()
80
81 The method returns eSAMPLING when if successfully starts a sampling
82 sequence; else eERROR is returned (e.g. a sample sequence is already in
83 progress).
84 */
85 virtual SamplingState_T startSample() noexcept = 0;
86
87 /** This method returns the current state of the non-blocking sampling
88 */
89 virtual SamplingState_T getSamplingState() noexcept = 0;
90
91 /** Used to retrieve the sample result. Returns the current sample. If the
92 returned state value does NOT equal eSAMPLE_READY, then 'rhOut' and
93 'tempCOut' arguments are invalid.
94 */
95 virtual SamplingState_T getSample( float& rhOut, float& tempCOut ) noexcept = 0;
96
97public:
98 /** This method is used to enable/disable a 'on-board heater' that is used to
99 evaporate condensation on the sensing element(s).
100
101 NOTE: The concrete implementation is NOT required to support this
102 method, i.e. it is Application RESPONSIBILITY for ensuring it
103 business logic that relies on this functionality - that it has
104 create the appropriate concrete driver.
105
106 When the heater is on, the Temperature readings are not guaranteed to
107 be accurate.
108
109 The method returns true when it is successful; else false is returned
110 (e.g. a communication error occurred).
111 */
112 virtual bool setHeaterState( bool enabled ) noexcept { return true; }
113
114public:
115 /// Virtual destructor
116 virtual ~Api(){}
117};
118
119} // End namespace(s)
120}
121
122/*--------------------------------------------------------------------------*/
123#endif // end header latch
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
namespace