GM6000 Digital Heater Controller Branch: main
SDX-1330
Cmd.h
Go to the documentation of this file.
1#ifndef Ajax_Heating_Simulated_Cmd_h
2#define Ajax_Heating_Simulated_Cmd_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#include "colony_config.h"
17#include "Cpl/Dm/Mp/Bool.h"
18#include "Cpl/Dm/Mp/Double.h"
19#include "Cpl/Dm/Mp/Int32.h"
20
21///
22namespace Ajax {
23///
24namespace Heating {
25///
26namespace Simulated {
27
28
29/** This class implements a Shell command.
30 */
32{
33public:
34 /// The command verb/identifier
35 static constexpr const char* verb = "house";
36
37 /// The command usage string
38 static constexpr const char* usage = "house [<odt>]\n"
39 "house enable <odt>\n"
40 "house disable";
41
42 /** The command detailed help string (recommended that lines do not exceed 80 chars)
43 1 2 3 4 5 6 7 8
44 12345678901234567890123456789012345678901234567890123456789012345678901234567890
45 */
46 static constexpr const char* detailedHelp = " Enables/disables the House simulator. The house simulator uses the specified\n" \
47 " outdoor temperature <odt> and the PWM outputs signals to generate a indoor\n" \
48 " temperature.";
49
50
51public:
52 /// See Cpl::TShell::Command `
53 const char* getUsage() const noexcept { return usage; }
54
55 /// See Cpl::TShell::Command
56 const char* getHelp() const noexcept { return detailedHelp; }
57
58
59public:
60 /// Constructor
62 Cpl::Dm::Mp::Bool& mpSimEnabled,
63 Cpl::Dm::Mp::Int32& mpIndoorTemperature,
64 Cpl::Dm::Mp::Double& mpOutdoorTemperature ) noexcept;
65
66
67public:
68 /// See Cpl::TShell::Command
69 Cpl::TShell::Command::Result_T execute( Cpl::TShell::Context_& context, char* cmdString, Cpl::Io::Output& outfd ) noexcept;
70
71protected:
72 /// MP: Indoor/space temperature
74
75 /// MP: Enable switch
77
78 /// MP: Outdoor temperature
80
81};
82
83
84}; // end namespaces
85};
86};
87#endif // end header latch
This class implements a Shell command.
Definition Cmd.h:32
Cpl::Dm::Mp::Bool & m_mpSimEnabled
MP: Enable switch.
Definition Cmd.h:76
Cpl::Dm::Mp::Double & m_mpOutdoorTemperature
MP: Outdoor temperature.
Definition Cmd.h:79
const char * getUsage() const noexcept
See Cpl::TShell::Command `.
Definition Cmd.h:53
Cpl::TShell::Command::Result_T execute(Cpl::TShell::Context_ &context, char *cmdString, Cpl::Io::Output &outfd) noexcept
See Cpl::TShell::Command.
Cpl::Dm::Mp::Int32 & m_mpIdt
MP: Indoor/space temperature.
Definition Cmd.h:73
static constexpr const char * usage
The command usage string.
Definition Cmd.h:38
static constexpr const char * verb
The command verb/identifier.
Definition Cmd.h:35
Cmd(Cpl::Container::Map< Cpl::TShell::Command > &commandList, Cpl::Dm::Mp::Bool &mpSimEnabled, Cpl::Dm::Mp::Int32 &mpIndoorTemperature, Cpl::Dm::Mp::Double &mpOutdoorTemperature) noexcept
Constructor.
static constexpr const char * detailedHelp
The command detailed help string (recommended that lines do not exceed 80 chars) 1 2 3 4 5 6 7 8 1234...
Definition Cmd.h:46
const char * getHelp() const noexcept
See Cpl::TShell::Command.
Definition Cmd.h:56
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This class provides a concrete implementation for a Point who's data is a bool.
Definition Bool.h:40
This class provides a concrete implementation for a Point who's data is a double.
Definition Double.h:41
This class provides a concrete implementation for a Point who's data is a int32_t.
Definition Int32.h:42
This partially abstract class defines a interface for operating on an output stream (example of a str...
Definition Output.h:34
This partially concrete class implements infrastructure and/or common functionality for a Shell comma...
Definition Command.h:39
Result_T
Possible result codes when executing a command.
Definition Command.h:35
This Private Namespace class defines a "Context" for a TShell command.
Definition Context_.h:32
The 'Ajax' namespace is the root name space all GM6000 application specific source code.