1#ifndef Cpl_MApp_Temperature_Api_h_
2#define Cpl_MApp_Temperature_Api_h_
9#include "colony_config.h"
17#ifndef OPTION_CPL_MAPP_TEMPEARTURE_SAMPLE_INTERVAL_MS
18#define OPTION_CPL_MAPP_TEMPEARTURE_SAMPLE_INTERVAL_MS 100
22#ifndef OPTION_CPL_MAPP_TEMPEARTURE_DISPLAY_INTERVAL_MS
23#define OPTION_CPL_MAPP_TEMPEARTURE_DISPLAY_INTERVAL_MS (5*1000)
27#ifndef OPTION_CPL_MAPP_TEMPEARTURE_FAHRENHEIT
28#define OPTION_CPL_MAPP_TEMPEARTURE_FAHRENHEIT true
37namespace Temperature {
61 static constexpr const char*
USAGE =
"args: [<samplems> [<displayms> [F|C]]]\n"
62 " <samplems> milliseconds between samples. Default is 100ms\n"
63 " <displayms> milliseconds between outputs. Default is 5000ms\n"
64 " F|C 'F' use Fahrenheit, 'C' use Celsius. Default is 'F'";
70 static constexpr const char*
DESCRIPTION =
"Periodically Samples temperature and displays sample/metric values.";
95 bool parse(
char* args ) noexcept;
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.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 float.
Definition Float.h:41
This partial concrete class provide common infrastructure that is common to all MApp instances.
Definition MApp_.h:23
This concrete class implements MApp the polls a model point for a temperature value and periodically ...
Definition Api.h:52
uint32_t m_sampleMs
Sample time in msecs.
Definition Api.h:118
static constexpr const char * DESCRIPTION
Description string (recommended that lines do not exceed 80 chars) 1 2 3 4 5 6 7 8 123456789012345678...
Definition Api.h:70
static constexpr const char * USAGE
Usage string (recommended that lines do not exceed 80 chars) 1 2 3 4 5 6 7 8 123456789012345678901234...
Definition Api.h:61
float m_maxTemp
Maximum Temp. sampled.
Definition Api.h:106
void shutdown_() noexcept
See Cpl::MApp::Api.
void expired(void) noexcept
Timer expired callback.
bool start_(char *args) noexcept
See Cpl::MApp::Api.
void stop_() noexcept
See Cpl::MApp::Api.
uint32_t m_displayMs
Display time in msecs.
Definition Api.h:121
void intialize_() noexcept
See Cpl::MApp::Api.
Api(Cpl::Container::Map< MAppApi > &mappList, Cpl::Dm::MailboxServer &myMbox, Cpl::Dm::Mp::Float &srcTemperatureMp, const char *name=DEFAULT_NAME)
Constructor. Note: The myMbox argument is only needed because the class uses a SW timer.
bool m_invalidData
Flag that tracks when I have invalid data.
Definition Api.h:130
float m_minTemp
Minimum Temp. sampled.
Definition Api.h:109
bool parse(char *args) noexcept
Helper method to parse the 'command line' options.
static constexpr const char * DEFAULT_NAME
The default MApp Name.
Definition Api.h:55
Cpl::Dm::Mp::Float & m_temperature
Temperature Input. Assumed units is Celsius.
Definition Api.h:103
uint32_t m_numSamples
Number of samples.
Definition Api.h:115
uint32_t m_timeMarkerMs
Time marker of last display action.
Definition Api.h:124
bool m_fahrenheit
When true the values are displayed in Fahrenheit.
Definition Api.h:127
float m_sumTemp
Cumulative sum Temp.
Definition Api.h:112
This mostly concrete interface defines the operations that can be performed on a software timer.
Definition Timer.h:47
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20