GM6000 Digital Heater Controller Branch: main
SDX-1330
Thermistor.h
Go to the documentation of this file.
1#ifndef Driver_AIO_Eros_Thermisttor_h_
2#define Driver_AIO_Eros_Thermisttor_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-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file
14*/
15
17
18
19/// namespace
20namespace Driver
21{
22/// namespace
23namespace AIO
24{
25/// namespace
26namespace Eros
27{
28
29/** This class is an Eros specific extension of the Driver::AIO::Ajax::Thermistor
30 driver. The only difference is that the Eros driver 'published' the ADC
31 Bit value via model points.
32 */
34{
35public:
36 /// Index of the ADC bit value
37 static constexpr unsigned IDX_ADC_BITS = 0;
38
39 /// Index of the Temperature value
40 static constexpr unsigned IDX_TEMPERATURE = 1;
41
42public:
43 /// Constructor
46 Cpl::Dm::Mp::Int32& mpTemperatureOutput );
47
48
49protected:
50 /// Set Driver::AIO::Ajax::Thermistor
51 void hookAdcSample( uint32_t adcBits, int32_t temperatureF = 0 );
52
53};
54
55} // End namespace(s)
56}
57}
58#endif // end header-latch
#define DriverAIOHalSingleInput_T
This data type defines the platform specific 'handle' to a analog input.
Definition HalSingleInput.h:33
This class extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes to support the asynchronous ch...
Definition MailboxServer.h:43
This class provides a concrete implementation for a Point who's data is a int32_t.
Definition Int32.h:42
This class is responsible for sampling the on-board temperature sensor every N milliseconds and popul...
Definition Thermistor.h:64
This class is an Eros specific extension of the Driver::AIO::Ajax::Thermistor driver.
Definition Thermistor.h:34
void hookAdcSample(uint32_t adcBits, int32_t temperatureF=0)
Set Driver::AIO::Ajax::Thermistor.
static constexpr unsigned IDX_TEMPERATURE
Index of the Temperature value.
Definition Thermistor.h:40
static constexpr unsigned IDX_ADC_BITS
Index of the ADC bit value.
Definition Thermistor.h:37
Thermistor(Cpl::Dm::MailboxServer &myMbox, DriverAIOHalSingleInput_T adcDriver, Cpl::Dm::Mp::Int32 &mpTemperatureOutput)
Constructor.
namespace
The 'Eros' namespace is the root name space all of the GM6000 Engineering Test Application specific s...
Definition screens.h:22