GM6000 Digital Heater Controller Branch: main
SDX-1330
UserRecord.h
Go to the documentation of this file.
1#ifndef Ajax_Main_UserRecord_h_
2#define Ajax_Main_UserRecord_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 "mp/ModelPoints.h"
18
19
20/// Major Schema index for my record
21#ifndef OPTION_AJAX_MAIN_USER_RECORD_MAJOR
22#define OPTION_AJAX_MAIN_USER_RECORD_MAJOR 0
23#endif
24
25/// Minor Schema index for my record
26#ifndef OPTION_AJAX_MAIN_USER_RECORD_MINOR
27#define OPTION_AJAX_MAIN_USER_RECORD_MINOR 0
28#endif
29
30/// Default value for the Heating setpoint (in hundredths of degrees Fahrenheit)
31#ifndef OPTION_AJAX_DEFAULT_HEATING_SETPOINT_F
32#define OPTION_AJAX_DEFAULT_HEATING_SETPOINT_F (70*100)
33#endif
34
35/// Default heating mode
36#ifndef OPTION_AJAX_DEFAULT_HEATING_MODE
37#define OPTION_AJAX_DEFAULT_HEATING_MODE false
38#endif
39
40/// Default fan mode
41#ifndef OPTION_AJAX_DEFAULT_FAN_MODE
42#define OPTION_AJAX_DEFAULT_FAN_MODE Ajax::Type::FanMode::eMEDIUM
43#endif
44
45
46///
47namespace Ajax {
48///
49namespace Main {
50
51
52/** This concrete class implements the "Record" class for storing user settings.
53 */
55{
56public:
57 /// Constructor
60 {
64 m_modelPoints[3] ={ 0,0 };
65 }
66
67protected:
68 /// List of Model Points for the Record
70
71public:
72 /// See Cpl::Dm::Persistent::Record
73 bool resetData() noexcept
74 {
75 mp::heatSetpoint.write( OPTION_AJAX_DEFAULT_HEATING_SETPOINT_F );
76 mp::heatingMode.write( OPTION_AJAX_DEFAULT_HEATING_MODE );
77 mp::fanMode.write( OPTION_AJAX_DEFAULT_FAN_MODE );
78
79 return true;
80 }
81
82};
83
84} // end namespace(s)
85}
86
87#endif // end header latch
#define CPL_DM_PERISTENCE_RECORD_USE_SUBSCRIBER
Magic value to indicate that Subscriber instance should be allocated for Model Point item.
Definition Record.h:195
#define OPTION_AJAX_DEFAULT_HEATING_SETPOINT_F
Default value for the Heating setpoint (in hundredths of degrees Fahrenheit)
Definition UserRecord.h:32
#define OPTION_AJAX_MAIN_USER_RECORD_MINOR
Minor Schema index for my record.
Definition UserRecord.h:27
#define OPTION_AJAX_DEFAULT_FAN_MODE
Default fan mode.
Definition UserRecord.h:42
#define OPTION_AJAX_MAIN_USER_RECORD_MAJOR
Major Schema index for my record.
Definition UserRecord.h:22
#define OPTION_AJAX_DEFAULT_HEATING_MODE
Default heating mode.
Definition UserRecord.h:37
This concrete class implements the "Record" class for storing user settings.
Definition UserRecord.h:55
bool resetData() noexcept
See Cpl::Dm::Persistent::Record.
Definition UserRecord.h:73
UserRecord(Cpl::Persistent::Chunk &chunkHandler)
Constructor.
Definition UserRecord.h:58
Cpl::Dm::Persistent::Record::Item_T m_modelPoints[3+1]
List of Model Points for the Record.
Definition UserRecord.h:69
This mostly concrete class implements the Cpl::Persistent::Record interface where a Record instance c...
Definition Record.h:43
Record(Item_T itemList[], Cpl::Persistent::Chunk &chunkHandler, uint8_t schemaMajorIndex, uint8_t schemaMinorIndex, uint32_t writeDelayMs=0, uint32_t maxWriteDelayMs=0) noexcept
Constructor.
This data structure associates a Data Model subscriber instance with a Model Point instance.
Definition Record.h:49
This abstract class defines the interface for a Chunk.
Definition Chunk.h:30
The 'Ajax' namespace is the root name space all GM6000 application specific source code.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20