API Documentation
Loading...
Searching...
No Matches
TemperatureSensor.h
Go to the documentation of this file.
1/*--------------------------------------------------------------------------------------------
2Copyright (c) 2019, NDEVR LLC
3tyler.parke@ndevr.org
4 __ __ ____ _____ __ __ _______
5 | \ | | | __ \ | ___|\ \ / / | __ \
6 | \ | | | | \ \ | |___ \ \ / / | |__) |
7 | . \| | | |__/ / | |___ \ V / | _ /
8 | |\ |_|_____/__|_____|___\_/____| | \ \
9 |__| \__________________________________| \__\
10
11Subject to the terms of the Enterprise+ Agreement, NDEVR hereby grants
12Licensee a limited, non-exclusive, non-transferable, royalty-free license
13(without the right to sublicense) to use the API solely for the purpose of
14Licensee's internal development efforts to develop applications for which
15the API was provided.
16
17The above copyright notice and this permission notice shall be included in all
18copies or substantial portions of the Software.
19
20THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
21INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
22PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
23FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
24OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25DEALINGS IN THE SOFTWARE.
26
27Library: Hardware
28File: TemperatureSensor
29Included in API: True
30Author(s): Tyler Parke
31 *-----------------------------------------------------------------------------------------**/
32#pragma once
33#include <NDEVR/Device.h>
34namespace NDEVR
35{
36 /**--------------------------------------------------------------------------------------------------
37 \brief A Device responsible for determining the temperature of either the environment or a specific
38 component. Temperatures may have warning limits to alert the user at critical points.
39 **/
41 {
42 public:
44 {
45 e_temperature_unknown
46 , e_temperature_invalid
47 , e_temperature_good
48 , e_temperature_warning
49 , e_temperature_critical
50 };
51 public:
52 TemperatureSensor(const Model& name, ProgressInfo* log, QObject* parent = nullptr);
53 [[nodiscard]] fltp08 temperature() const { return m_temperature; }
54 [[nodiscard]] virtual TemperatureState temperatureState() const;
55 [[nodiscard]] virtual TemperatureState temperatureState(fltp08 temp) const;
56
57 void setTemperature(fltp08 temperature);
58 void setValidRange(const Bounds<1, fltp08>& range) { m_valid_range = range; };
59 void setNoCriticalRange(const Bounds<1, fltp08>& range) { m_no_critical_range = range; };
60 void setNoWarningRange(const Bounds<1, fltp08>& range) { m_no_warning_range = range; };
61 Bounds<1, fltp08> validRange(){ return m_valid_range; };
62 Bounds<1, fltp08> noWarningRange(){ return m_no_critical_range; };
63 Bounds<1, fltp08> noCriticalRange(){ return m_no_warning_range;};
64 protected:
69 };
70}
#define HARDWARE_API
Definition DLLInfo.h:56
A specification of upper and lower bounds in N-dimensions.
Definition Bounds.hpp:52
A root class which describes some physical object, such as a Motor, Sensor, or Connection....
Definition Device.h:52
A core class that represents a node on model heirarchy. This node may contain a Geometry or one or mo...
Definition Model.h:58
A light-weight base class for Log that allows processes to update, without the need for additional in...
Definition ProgressInfo.hpp:48
A Device responsible for determining the temperature of either the environment or a specific componen...
Definition TemperatureSensor.h:41
Bounds< 1, fltp08 > noCriticalRange()
Definition TemperatureSensor.h:63
TemperatureState
Definition TemperatureSensor.h:44
virtual TemperatureState temperatureState() const
Bounds< 1, fltp08 > noWarningRange()
Definition TemperatureSensor.h:62
void setTemperature(fltp08 temperature)
Bounds< 1, fltp08 > m_valid_range
Definition TemperatureSensor.h:65
void setNoWarningRange(const Bounds< 1, fltp08 > &range)
Definition TemperatureSensor.h:60
Bounds< 1, fltp08 > validRange()
Definition TemperatureSensor.h:61
fltp08 m_temperature
Definition TemperatureSensor.h:68
void setNoCriticalRange(const Bounds< 1, fltp08 > &range)
Definition TemperatureSensor.h:59
TemperatureSensor(const Model &name, ProgressInfo *log, QObject *parent=nullptr)
Bounds< 1, fltp08 > m_no_critical_range
Definition TemperatureSensor.h:66
void setValidRange(const Bounds< 1, fltp08 > &range)
Definition TemperatureSensor.h:58
virtual TemperatureState temperatureState(fltp08 temp) const
Bounds< 1, fltp08 > m_no_warning_range
Definition TemperatureSensor.h:67
fltp08 temperature() const
Definition TemperatureSensor.h:53
Definition ACIColor.h:37
double fltp08
Defines an alias representing an 8 byte floating-point number.
Definition BaseValues.hpp:149